5c6a3faf4e
svn tried to change libpng/default.nix version, I've changed libpng/12.nix version manually. svn path=/nixpkgs/branches/libpng15/; revision=32395
25 lines
608 B
Nix
25 lines
608 B
Nix
{ stdenv, fetchurl, zlib, xz }:
|
|
|
|
assert zlib != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libpng-1.2.47";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libpng/${name}.tar.xz";
|
|
sha256 = "1lai3dnzw81y40jr17bdj1qh08hwv9mc1v74yybl7jdx2hiilsvx";
|
|
};
|
|
|
|
propagatedBuildInputs = [ zlib ];
|
|
|
|
buildNativeInputs = [ xz ];
|
|
|
|
passthru = { inherit zlib; };
|
|
|
|
meta = {
|
|
description = "The official reference implementation for the PNG file format";
|
|
homepage = http://www.libpng.org/pub/png/libpng.html;
|
|
license = "free-non-copyleft"; # http://www.libpng.org/pub/png/src/libpng-LICENSE.txt
|
|
};
|
|
}
|