parent
14bf6f5ea5
commit
9302989be1
|
@ -1,19 +1,22 @@
|
||||||
{stdenv, fetchurl, zlib}:
|
{stdenv, fetchurl, zlib, expat}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "exiv2-0.18";
|
name = "exiv2-0.21";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.exiv2.org/${name}.tar.gz";
|
url = "http://www.exiv2.org/${name}.tar.gz";
|
||||||
sha256 = "1kg4bdlcqqhw9gcfs68i55sz4hvlf94xxxmqb255hhvhfj692rz5";
|
sha256 = "1r9phzb1h9v8smw1pix2k9lyr44n4nyba15x7qh45c0pwsjdf9yq";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [zlib];
|
propagatedBuildInputs = [zlib expat];
|
||||||
|
|
||||||
configureFlags = "--with-zlib=${zlib} --disable-xmp";
|
# configure script finds zlib&expat but it thinks that they're in /usr
|
||||||
|
configureFlags = "--with-zlib=${zlib} --with-expat=${expat}";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.exiv2.org/;
|
homepage = http://www.exiv2.org/;
|
||||||
description = "A library and command-line utility to manage image metadata";
|
description = "A library and command-line utility to manage image metadata";
|
||||||
|
maintainers = [stdenv.lib.maintainers.urkud];
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue