diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-07-03 12:55:02 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-07-03 12:55:02 +0300 |
commit | 4dc9dcc272eb43dce57b3b153641c7bdc58010a1 (patch) | |
tree | f0d7d59935d02a3f7d19607d7885165a82afa4f2 | |
parent | da6383b3eaa1d6ed6b1ab05a4f34886b88f44546 (diff) | |
download | patches-4dc9dcc272eb43dce57b3b153641c7bdc58010a1.tar patches-4dc9dcc272eb43dce57b3b153641c7bdc58010a1.tar.gz |
gnu: exiv2: Update to 0.25.
* gnu/packages/geeqie.scm (exiv2): Update to 0.25.
[native-inputs]: Add intltool.
-rw-r--r-- | gnu/packages/geeqie.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/geeqie.scm b/gnu/packages/geeqie.scm index 4d9d491ee8..110fb68ea0 100644 --- a/gnu/packages/geeqie.scm +++ b/gnu/packages/geeqie.scm @@ -34,18 +34,21 @@ (define-public exiv2 ; XXX: move elsewhere? (package (name "exiv2") - (version "0.23") + (version "0.25") (source (origin (method url-fetch) (uri (string-append "http://www.exiv2.org/exiv2-" version ".tar.gz")) (sha256 (base32 - "04bbg2cg6mgcyz435zamx37sp5zw44n2alb59ki1daz71f851yl1")))) + "197g6vgcpyf9p2cwn5p5hb1r714xsk1v4p96f5pv1z8mi9vzq2y8")))) (build-system gnu-build-system) (arguments '(#:tests? #f)) ; no `check' target (propagated-inputs - `(("expat" ,expat) ("zlib" ,zlib))) + `(("expat" ,expat) + ("zlib" ,zlib))) + (native-inputs + `(("intltool" ,intltool))) (home-page "http://www.exiv2.org/") (synopsis "Library and command-line utility to manage image metadata") (description |