libpng: major update to 1.6, enable the check phase

It builds on my machine, we'll see what other packages say on it.
This commit is contained in:
Vladimír Čunát 2013-02-14 20:53:46 +01:00
parent 4c4e3f0ada
commit 364a853c99

View File

@ -3,15 +3,17 @@
assert zlib != null;
stdenv.mkDerivation rec {
name = "libpng-1.5.14";
name = "libpng-1.6.0";
src = fetchurl {
url = "mirror://sourceforge/libpng/${name}.tar.xz";
sha256 = "0m3vz3gig7s63zanq5b1dgb5ph12qm0cylw4g4fbxlsq3f74hn8l";
sha256 = "0yxr8hwmj57krqm14k636nnsgdzsryx9iwjzdfah6fq8449w64sy";
};
propagatedBuildInputs = [ zlib ];
doCheck = true;
passthru = { inherit zlib; };
meta = {