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
parent
d1d70d25c8
commit
1fa4d658d8
|
@ -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
|
||||
|
|
Reference in New Issue