diff options
author | Vivien Kraus <vivien@planete-kraus.eu> | 2023-11-26 18:54:17 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-12-02 17:08:56 +0100 |
commit | e9b85cb0d40842f41a79eddb5464b9365f024a1c (patch) | |
tree | 0bf083c60cacd5dd29ea22bd2a5250a9bf719754 /gnu | |
parent | 7d0f2433e1b9ae9d75b0e9c9a3c78e9752a24683 (diff) | |
download | guix-e9b85cb0d40842f41a79eddb5464b9365f024a1c.tar.gz guix-e9b85cb0d40842f41a79eddb5464b9365f024a1c.zip |
gnu: sushi: Update to 44.2.
* gnu/packages/gnome.scm (sushi): Update to 44.2.
[arguments]: Convert to list of G-Expressions.
Change-Id: Ifd87eb3eed82b3fb2921d23fa27e161fe8361069
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index dc3c70ab98..e48ea98827 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -1628,7 +1628,7 @@ sharing to the masses.") (define-public sushi (package (name "sushi") - (version "42.0") + (version "44.2") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/" name "/" @@ -1636,21 +1636,22 @@ sharing to the masses.") name "-" version ".tar.xz")) (sha256 (base32 - "0848gidl0ab8i5pa70mv8jzchmd9kqa8sn1lg977hyasyixdpn25")))) + "1sa3x8w8fhjj641yx5praabkqxfdsnafqnlb8jx2g451mvh2y03c")))) (build-system meson-build-system) (arguments - `(#:glib-or-gtk? #t - #:phases - (modify-phases %standard-phases - (add-after 'glib-or-gtk-wrap 'wrap-typelib - (lambda* (#:key outputs #:allow-other-keys) - (let ((prog (string-append (assoc-ref outputs "out") - "/bin/sushi"))) - ;; Put existing typelibs before sushi's deps, so as to - ;; correctly infer gdk-pixbuf. - (wrap-program prog - `("GI_TYPELIB_PATH" suffix - (,(getenv "GI_TYPELIB_PATH")))))))))) + (list + #:glib-or-gtk? #t + #:phases + #~(modify-phases %standard-phases + (add-after 'glib-or-gtk-wrap 'wrap-typelib + (lambda* (#:key outputs #:allow-other-keys) + (let ((prog (string-append (assoc-ref outputs "out") + "/bin/sushi"))) + ;; Put existing typelibs before sushi's deps, so as to + ;; correctly infer gdk-pixbuf. + (wrap-program prog + `("GI_TYPELIB_PATH" suffix + (,(getenv "GI_TYPELIB_PATH")))))))))) (native-inputs (list `(,glib "bin") gettext-minimal |