diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2021-12-18 10:58:56 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2021-12-18 10:58:56 +0100 |
commit | 6061540e30269934dae3395ab9fc1b905a414247 (patch) | |
tree | 46dd53149cdb96da9fa55f6c524da7192afd07e2 | |
parent | 5f547a5c425cc99553ea713703e09a8db9f3c38b (diff) | |
download | guix-6061540e30269934dae3395ab9fc1b905a414247.tar.gz guix-6061540e30269934dae3395ab9fc1b905a414247.zip |
gnu: polari: Add missing newline to Exec line.
This is a follow-up to 572cf0818cb60466bd4250c56e3896405995f5ff.
* gnu/packages/polari.scm (fix-desktop-file): Add missing newline.
-rw-r--r-- | gnu/packages/gnome.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index a8d48ae632..0759348762 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -11570,7 +11570,7 @@ environment.") (let ((out (assoc-ref outputs "out"))) (substitute* (string-append out "/share/applications/" "org.gnome.Polari.desktop") - (("Exec=.*") (string-append "Exec=" out "/bin/polari")))))) + (("Exec=.*") (string-append "Exec=" out "/bin/polari\n")))))) (add-after 'glib-or-gtk-wrap 'wrap-typelib (lambda* (#:key outputs #:allow-other-keys) (let ((prog (string-append (assoc-ref outputs "out") |