diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-22 01:25:34 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-22 01:25:34 -0500 |
commit | 9d4b5877c42bc4c1bcdc4d65ba31723a3b3ae28c (patch) | |
tree | 5d2ecd374eff9b7960a5685ceac155b3528a88e6 /gnu/packages/gnome.scm | |
parent | ef451d916460e84a02bbc6eace488a67f02ec85b (diff) | |
download | guix-9d4b5877c42bc4c1bcdc4d65ba31723a3b3ae28c.tar.gz |
gnu: polari: Update to 41.0.
* gnu/packages/gnome.scm (polari): Update to 41.0. [phases]: Delete trailing #t.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 9b4ad2a532..d48e9d5801 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -11601,7 +11601,7 @@ environment.") (define-public polari (package (name "polari") - (version "40.1") + (version "41.0") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/polari/" @@ -11609,7 +11609,7 @@ environment.") "/polari-" version ".tar.xz")) (sha256 (base32 - "001h9gppn79gnj7dl61jl9gas5wmbjdx0v8xwsx7v4xsv2hwz91g")))) + "1ss0x8idwar1q9p9535kzqb8idy7k2r48vrbjiyccw03cs0mzc53")))) (build-system meson-build-system) (arguments `(#:glib-or-gtk? #t @@ -11618,8 +11618,7 @@ environment.") (add-after 'unpack 'skip-gtk-update-icon-cache (lambda _ (substitute* "meson/meson-postinstall.sh" - (("gtk-update-icon-cache") (which "true"))) - #t)) + (("gtk-update-icon-cache") (which "true"))))) (add-after 'install 'fix-desktop-file ;; Hardcode launcher to be on the safe side (lambda* (#:key outputs #:allow-other-keys) @@ -11632,8 +11631,7 @@ environment.") (let ((prog (string-append (assoc-ref outputs "out") "/bin/polari"))) (wrap-program prog - `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH")))) - #t)))))) + `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH")))))))))) (inputs (list glib gsettings-desktop-schemas |