diff options
author | Lluís Batlle i Rossell <viric@vicerveza.homeunix.net> | 2012-02-26 20:06:01 +0000 |
---|---|---|
committer | Lluís Batlle i Rossell <viric@vicerveza.homeunix.net> | 2012-02-26 20:06:01 +0000 |
commit | cb5bbe00fe265cd74ddb45bd1b3fbe7cb052d2a6 (patch) | |
tree | caf461dbd8d11c7bdd4a7852ba73dbf434d3fc52 /pkgs/development/libraries/zlib | |
parent | c79294e4952c4b3d3b0316ddbf0133137eae6284 (diff) |
Adding the latest zlib, otherwise vlc does not build.
This also could be used for a newer cmake, or some trouble there was with libxml2. svn path=/nixpkgs/trunk/; revision=32598
Diffstat (limited to 'pkgs/development/libraries/zlib')
-rw-r--r-- | pkgs/development/libraries/zlib/latest.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/development/libraries/zlib/latest.nix b/pkgs/development/libraries/zlib/latest.nix new file mode 100644 index 0000000000000..1333c9fdfdf31 --- /dev/null +++ b/pkgs/development/libraries/zlib/latest.nix @@ -0,0 +1,11 @@ +{stdenv, fetchurl}: + +# To be removed in stdenv-updates, as default.nix is already right there. +stdenv.mkDerivation rec { + name = "zlib-1.2.6"; + + src = fetchurl { + url = "http://www.zlib.net/${name}.tar.gz"; + sha256 = "06x6m33ls1606ni7275q5z392csvh18dgs55kshfnvrfal45w8r1"; + }; +} |