diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-09-09 15:02:54 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-09-13 02:04:48 -0400 |
commit | bdb1569123230d80fe9a289dfa854b33e3b058f5 (patch) | |
tree | 0bf23f242734b2f280bcca346a9a285a5ffe0698 /gnu/packages | |
parent | dfed78823064e7fa627a69a200e2303d516ce5f8 (diff) | |
download | guix-bdb1569123230d80fe9a289dfa854b33e3b058f5.tar.gz |
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.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnome.scm | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 7539e469fb..8ce572ccca 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -7309,7 +7309,7 @@ classes for commonly used data structures.") (define-public gexiv2 (package (name "gexiv2") - (version "0.12.2") + (version "0.14.0") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/" name "/" @@ -7317,16 +7317,32 @@ classes for commonly used data structures.") name "-" version ".tar.xz")) (sha256 (base32 - "0k4ljzzz5dwqndw8awvlw3ala8rh3b2rk9i4jzvywc53mi9ba8i3")))) + "17nnsslj2wpizpx742w5lxdzcz5mx6jmsqcrli7zddi0zyk7k0p5")))) (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 (list gcr - `(,glib "bin") pkg-config vala)) + `(,glib "bin") + pkg-config + python + python-pygobject + vala)) (propagated-inputs ;; Listed in "Requires" section of gexiv2.pc (list exiv2)) (inputs - (list glib gobject-introspection)) + (list glib + gobject-introspection)) (home-page "https://wiki.gnome.org/Projects/gexiv2") (synopsis "GObject wrapper around the Exiv2 photo metadata library") (description |