mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
add new libpng
svn path=/nixpkgs/trunk/; revision=5570
This commit is contained in:
parent
23fdfca4ab
commit
3427d88e96
13
pkgs/development/libraries/libpng/libpng-1.2.12.nix
Normal file
13
pkgs/development/libraries/libpng/libpng-1.2.12.nix
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{stdenv, fetchurl, zlib}:
|
||||||
|
|
||||||
|
assert zlib != null;
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "libpng-1.2.12";
|
||||||
|
src = fetchurl {
|
||||||
|
url = ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng-1.2.12.tar.bz2;
|
||||||
|
md5 = "2287cfaad53a714acdf6eb75a7c1d15f";
|
||||||
|
};
|
||||||
|
propagatedBuildInputs = [zlib];
|
||||||
|
inherit zlib;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user