about summary refs log tree commit diff
path: root/pkgs/development/libraries/libpng/default.nix
blob: 38eb344621e81f1b3dd6a0c51d03800bae89159b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, zlib }:

assert zlib != null;

# If you want to upgrade libpng, look at libpng15 branch
stdenv.mkDerivation rec {
  name = "libpng-1.2.47";
  
  src = fetchurl {
    url = "mirror://sourceforge/libpng/${name}.tar.xz";
    sha256 = "1lai3dnzw81y40jr17bdj1qh08hwv9mc1v74yybl7jdx2hiilsvx";
  };
  
  propagatedBuildInputs = [ zlib ];

  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
  };
}