gnu: eog: Update to 3.28.2.
* gnu/packages/gnome.scm (eog): Update to 3.28.2. [build-system]: Use meson-build-system. [native-inptus]: Add gtk+:bin.
This commit is contained in:
parent
1e9b19dd1f
commit
61fb581fbb
|
@ -3961,7 +3961,7 @@ supports playlists, song ratings, and any codecs installed through gstreamer.")
|
||||||
(define-public eog
|
(define-public eog
|
||||||
(package
|
(package
|
||||||
(name "eog")
|
(name "eog")
|
||||||
(version "3.26.2")
|
(version "3.28.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 "/"
|
||||||
|
@ -3969,25 +3969,25 @@ supports playlists, song ratings, and any codecs installed through gstreamer.")
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1b87i31mxzayd3knn9zg00y816d093qrbyx556w8a03xz96ksgmm"))))
|
"1gasrfqi7qrzdq1idh29r0n6ikkqjb6pbp7a8k5krfz5hkhyfin0"))))
|
||||||
(build-system glib-or-gtk-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after
|
(add-after 'install 'wrap-eog
|
||||||
'install 'wrap-eog
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(let ((out (assoc-ref outputs "out"))
|
||||||
(let ((out (assoc-ref outputs "out"))
|
(gi-typelib-path (getenv "GI_TYPELIB_PATH")))
|
||||||
(gi-typelib-path (getenv "GI_TYPELIB_PATH")))
|
(wrap-program (string-append out "/bin/eog")
|
||||||
(wrap-program (string-append out "/bin/eog")
|
`("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))))
|
||||||
`("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))))
|
#t)))))
|
||||||
#t)))))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("dconf" ,dconf)))
|
`(("dconf" ,dconf)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("intltool" ,intltool)
|
`(("intltool" ,intltool)
|
||||||
("itstool" ,itstool)
|
("itstool" ,itstool)
|
||||||
("glib" ,glib "bin")
|
("glib" ,glib "bin")
|
||||||
|
("gtk+:bin" ,gtk+ "bin") ; for gtk-update-icon-cache
|
||||||
("gobject-introspection" ,gobject-introspection)
|
("gobject-introspection" ,gobject-introspection)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
("xmllint" ,libxml2)))
|
("xmllint" ,libxml2)))
|
||||||
|
|
Loading…
Reference in New Issue