mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
* zlib updated to 1.2.5.
svn path=/nixpkgs/branches/x-updates/; revision=22637
This commit is contained in:
parent
32a8fbde4f
commit
b7324318cf
@ -1,11 +1,13 @@
|
||||
{stdenv, fetchurl, static ? false}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "zlib-1.2.3";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "zlib-1.2.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://www.zlib.net/zlib-1.2.3.tar.gz;
|
||||
md5 = "debc62758716a169df9f62e6ab2bc634";
|
||||
url = "http://www.zlib.net/${name}.tar.gz";
|
||||
sha256 = "0n7rlgvjn73pyil3s1l6p77m7wkc809n934rnzxv1b1za4pfar30";
|
||||
};
|
||||
|
||||
configureFlags = if static then "" else "--shared";
|
||||
|
||||
preConfigure = ''
|
||||
|
Loading…
Reference in New Issue
Block a user