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>
This commit is contained in:
parent
7d0f2433e1
commit
e9b85cb0d4
1 changed files with 15 additions and 14 deletions
|
@ -1628,7 +1628,7 @@ sharing to the masses.")
|
||||||
(define-public sushi
|
(define-public sushi
|
||||||
(package
|
(package
|
||||||
(name "sushi")
|
(name "sushi")
|
||||||
(version "42.0")
|
(version "44.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||||
|
@ -1636,21 +1636,22 @@ sharing to the masses.")
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0848gidl0ab8i5pa70mv8jzchmd9kqa8sn1lg977hyasyixdpn25"))))
|
"1sa3x8w8fhjj641yx5praabkqxfdsnafqnlb8jx2g451mvh2y03c"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:glib-or-gtk? #t
|
(list
|
||||||
#:phases
|
#:glib-or-gtk? #t
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
(add-after 'glib-or-gtk-wrap 'wrap-typelib
|
#~(modify-phases %standard-phases
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(add-after 'glib-or-gtk-wrap 'wrap-typelib
|
||||||
(let ((prog (string-append (assoc-ref outputs "out")
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
"/bin/sushi")))
|
(let ((prog (string-append (assoc-ref outputs "out")
|
||||||
;; Put existing typelibs before sushi's deps, so as to
|
"/bin/sushi")))
|
||||||
;; correctly infer gdk-pixbuf.
|
;; Put existing typelibs before sushi's deps, so as to
|
||||||
(wrap-program prog
|
;; correctly infer gdk-pixbuf.
|
||||||
`("GI_TYPELIB_PATH" suffix
|
(wrap-program prog
|
||||||
(,(getenv "GI_TYPELIB_PATH"))))))))))
|
`("GI_TYPELIB_PATH" suffix
|
||||||
|
(,(getenv "GI_TYPELIB_PATH"))))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list `(,glib "bin")
|
(list `(,glib "bin")
|
||||||
gettext-minimal
|
gettext-minimal
|
||||||
|
|
Reference in a new issue