0297229504
See CVE-2011-269{0,1,2} svn path=/nixpkgs/trunk/; revision=29363
23 lines
591 B
Nix
23 lines
591 B
Nix
{ stdenv, fetchurl, zlib, xz }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libpng-1.5.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libpng/${name}.tar.xz";
|
|
sha256 = "1rw58zi3hxyinah2dz0jzq81c7ninbmfjf10xax2a8cpd5h45agz";
|
|
};
|
|
|
|
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
|
|
};
|
|
}
|