gnu: polari: Fix Exec line.
This is a follow-up to commit b574ccc453
.
* gnu/packages/gnome.scm (polari)[fix-desktop-file]: Use string-append as
was the intention behind the original patch.
master
parent
c9be5f1060
commit
572cf0818c
|
@ -11570,7 +11570,7 @@ environment.")
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(substitute* (string-append out "/share/applications/"
|
(substitute* (string-append out "/share/applications/"
|
||||||
"org.gnome.Polari.desktop")
|
"org.gnome.Polari.desktop")
|
||||||
(("Exec=.*") "Exec=" out "/bin/polari")))))
|
(("Exec=.*") (string-append "Exec=" out "/bin/polari"))))))
|
||||||
(add-after 'glib-or-gtk-wrap 'wrap-typelib
|
(add-after 'glib-or-gtk-wrap 'wrap-typelib
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((prog (string-append (assoc-ref outputs "out")
|
(let ((prog (string-append (assoc-ref outputs "out")
|
||||||
|
|
Reference in New Issue