mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
exiv2-0.21
svn path=/nixpkgs/trunk/; revision=25102
This commit is contained in:
parent
14bf6f5ea5
commit
9302989be1
1 changed files with 8 additions and 5 deletions
|
@ -1,19 +1,22 @@
|
|||
{stdenv, fetchurl, zlib}:
|
||||
{stdenv, fetchurl, zlib, expat}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "exiv2-0.18";
|
||||
name = "exiv2-0.21";
|
||||
|
||||
src = fetchurl {
|
||||
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 = {
|
||||
homepage = http://www.exiv2.org/;
|
||||
description = "A library and command-line utility to manage image metadata";
|
||||
maintainers = [stdenv.lib.maintainers.urkud];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue