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

assert zlib != null;

stdenv.mkDerivation {
  name = "libpng-1.2.29";
  src = fetchurl {
    url = mirror://sourceforge/libpng/libpng-1.2.29.tar.bz2;
    md5 = "f588cb4ee39e3a333604096f937ea157";
  };
  propagatedBuildInputs = [zlib];
  inherit zlib;

  meta = {
    description = "The official reference implementation for the PNG file format";
    homepage = http://www.libpng.org/pub/png/libpng.html;
  };
}