3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

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:
Ricardo Wurmus 2018-08-06 11:38:57 +02:00
parent 1e9b19dd1f
commit 61fb581fbb
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -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)))