mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: gexiv2: Update to 0.14.0.
* gnu/packages/gnome.scm (gexiv2): Update to 0.14.0. [arguments]: New field. [native-inputs]: Add python and python-pygobject.
This commit is contained in:
parent
dfed788230
commit
bdb1569123
1 changed files with 20 additions and 4 deletions
|
@ -7309,7 +7309,7 @@ (define-public libgee
|
||||||
(define-public gexiv2
|
(define-public gexiv2
|
||||||
(package
|
(package
|
||||||
(name "gexiv2")
|
(name "gexiv2")
|
||||||
(version "0.12.2")
|
(version "0.14.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||||
|
@ -7317,16 +7317,32 @@ (define-public gexiv2
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0k4ljzzz5dwqndw8awvlw3ala8rh3b2rk9i4jzvywc53mi9ba8i3"))))
|
"17nnsslj2wpizpx742w5lxdzcz5mx6jmsqcrli7zddi0zyk7k0p5"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:imported-modules `(,@%meson-build-system-modules
|
||||||
|
(guix build python-build-system))
|
||||||
|
#:modules '((guix build meson-build-system)
|
||||||
|
((guix build python-build-system) #:prefix python:)
|
||||||
|
(guix build utils))
|
||||||
|
#:configure-flags
|
||||||
|
#~(list (string-append "-Dpython3_girdir="
|
||||||
|
(python:site-packages %build-inputs %outputs)
|
||||||
|
"/gi/overrides"))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list gcr
|
(list gcr
|
||||||
`(,glib "bin") pkg-config vala))
|
`(,glib "bin")
|
||||||
|
pkg-config
|
||||||
|
python
|
||||||
|
python-pygobject
|
||||||
|
vala))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
;; Listed in "Requires" section of gexiv2.pc
|
;; Listed in "Requires" section of gexiv2.pc
|
||||||
(list exiv2))
|
(list exiv2))
|
||||||
(inputs
|
(inputs
|
||||||
(list glib gobject-introspection))
|
(list glib
|
||||||
|
gobject-introspection))
|
||||||
(home-page "https://wiki.gnome.org/Projects/gexiv2")
|
(home-page "https://wiki.gnome.org/Projects/gexiv2")
|
||||||
(synopsis "GObject wrapper around the Exiv2 photo metadata library")
|
(synopsis "GObject wrapper around the Exiv2 photo metadata library")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue