summary refs log tree commit diff
path: root/pkgs/development/libraries/libpng/libpng-apng.nix
blob: 534b0ae5a45fe5278bff470a4a482582ab111376 (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
24
25
26
27
28
29
30
31
32
{ stdenv, fetchurl, zlib }:

assert zlib != null;

stdenv.mkDerivation rec {
  version = "1.4.4";
  name = "libpng-apng-${version}";
  
  patch_src = fetchurl {
    url = "mirror://sourceforge/project/libpng-apng/libpng-master/${version}/libpng-${version}-apng.patch.gz";
    sha256 = "d729a2feacfd80547e06c30343d598302f4417cf2e6f649e4ee617690987bd24";
  };

  src = fetchurl {
    url = "mirror://sourceforge/libpng/libpng-${version}.tar.gz";
    sha256 = "d07616ba1e9c161017384feb3b576d70c160b970abfd9549ad39a622284b574a";
  };

  preConfigure = ''
    gunzip < ${patch_src} | patch -Np1
  '';
  
  propagatedBuildInputs = [ zlib ];

  passthru = { inherit zlib; };
  
  meta = {
    description = "The official reference implementation for the PNG file format with animation patch";
    homepage = http://www.libpng.org/pub/png/libpng.html;
    license = "free-non-copyleft"; # http://www.libpng.org/pub/png/src/libpng-LICENSE.txt
  };
}