* Updated exiv2, the old one doesn't compile on GCC 4.3.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14819
This commit is contained in:
parent
d27514cb28
commit
5a03361f2d
@ -1,11 +1,19 @@
|
|||||||
args: with args;
|
{stdenv, fetchurl, zlib}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "exiv2-0.15";
|
name = "exiv2-0.18";
|
||||||
src = fetchurl {
|
|
||||||
url = http://www.exiv2.org/exiv2-0.15.tar.gz;
|
src = fetchurl {
|
||||||
sha256 = "0gjak1849rbw5azz4ggckmcw0r40wlr3hgwrf4s0c23k27lq4bdp";
|
url = "http://www.exiv2.org/${name}.tar.gz";
|
||||||
};
|
sha256 = "1kg4bdlcqqhw9gcfs68i55sz4hvlf94xxxmqb255hhvhfj692rz5";
|
||||||
buildInputs = [zlib];
|
};
|
||||||
configureFlags = "--with-zlib=${zlib} --enable-shared --disable-static";
|
|
||||||
|
buildInputs = [zlib];
|
||||||
|
|
||||||
|
configureFlags = "--with-zlib=${zlib} --enable-shared --disable-static --disable-xmp";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://www.exiv2.org/;
|
||||||
|
description = "A library and command-line utility to manage image metadata";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user