nixpkgs/pkgs/development/libraries/exiv2/default.nix
Eelco Dolstra 94d7d1fdbb * Got rid of all --disable-static flags; they're redundant now.
* Also a bunch of style cleanups (tabs, with args, ...).

svn path=/nixpkgs/branches/stdenv-updates/; revision=15235
2009-04-21 23:18:09 +00:00

20 lines
445 B
Nix

{stdenv, fetchurl, zlib}:
stdenv.mkDerivation rec {
name = "exiv2-0.18";
src = fetchurl {
url = "http://www.exiv2.org/${name}.tar.gz";
sha256 = "1kg4bdlcqqhw9gcfs68i55sz4hvlf94xxxmqb255hhvhfj692rz5";
};
buildInputs = [zlib];
configureFlags = "--with-zlib=${zlib} --disable-xmp";
meta = {
homepage = http://www.exiv2.org/;
description = "A library and command-line utility to manage image metadata";
};
}