me
/
guix
Archived
1
0
Fork 0

gnu: distrobox: Patch distrobox-generate-entry.

Avoids keeping store references in generated desktop files.

* gnu/packages/containers.scm (distrobox)<arguments>: add
'patch-distrobox-generate-entry phase.

Change-Id: Ib1bffaefa1805accb5227c289c9fc985853bc675
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Jean-Pierre De Jesus DIAZ 2024-07-04 12:11:58 +02:00 committed by Ludovic Courtès
parent d1d70d25c8
commit 1fa4d658d8
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 8 additions and 0 deletions

View File

@ -174,6 +174,14 @@ runtime (like runc or crun) for a single container.")
(arguments
(list #:phases
#~(modify-phases %standard-phases
;; This script creates desktop files but when the store path for
;; distrobox changes it leaves the stale path on the desktop
;; file, so remove the path to use the profile's current
;; distrobox.
(add-after 'unpack 'patch-distrobox-generate-entry
(lambda _
(substitute* "distrobox-generate-entry"
(("\\$\\{distrobox_path\\}/distrobox") "distrobox"))))
;; Use WRAP-SCRIPT to wrap all of the scripts of distrobox,
;; excluding the host side ones.
(add-after 'install 'wrap-scripts