1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

libpng: minor update 1.6.3 -> .4

Also make myself maintainer.
This commit is contained in:
Vladimír Čunát 2013-09-12 17:17:32 +02:00
parent 2dc0f91806
commit 117f2e6683

View file

@ -3,9 +3,9 @@
assert zlib != null;
let
version = "1.6.3";
sha256 = "0i8gz8mbkygc0ny7aa2i2wiavysxy6fdaphl52l49fb3hv9w1v65";
patch_src = fetchurl {
version = "1.6.4";
sha256 = "15pqany43q2hzaxqn84p9dba071xmvqi8h1bhnjxnxdf3g64zayg";
patch_src = throw "apng patch not yet released" fetchurl {
url = "mirror://sourceforge/libpng-apng/libpng-${version}-apng.patch.gz";
sha256 = "0fjnb6cgbj2c7ggl0qzcnliml2ylrjxzigp89vw0hxq221k5mlsx";
};
@ -27,10 +27,11 @@ in stdenv.mkDerivation rec {
passthru = { inherit zlib; };
meta = {
meta = with stdenv.lib; {
description = "The official reference implementation for the PNG file format" + whenPatched " 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
platforms = stdenv.lib.platforms.all;
platforms = platforms.all;
maintainers = [ maintainers.vcunat ];
};
}