about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/zlib
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2010-04-01 10:56:48 +0000
committerAndres Löh <mail@andres-loeh.de>2010-04-01 10:56:48 +0000
commit93702256634630207cf3e0f92178412017002d56 (patch)
treee90a09aa1205f326431718d1986487b12275a2ac /pkgs/development/libraries/haskell/zlib
parent50b5ca25d3e611b7259654cf25c09bcbc5a281e1 (diff)
Haskell Platform 2010.1.0.0
svn path=/nixpkgs/trunk/; revision=20904
Diffstat (limited to 'pkgs/development/libraries/haskell/zlib')
-rw-r--r--pkgs/development/libraries/haskell/zlib/0.5.2.0.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/zlib/0.5.2.0.nix b/pkgs/development/libraries/haskell/zlib/0.5.2.0.nix
new file mode 100644
index 0000000000000..d97e18ccf2300
--- /dev/null
+++ b/pkgs/development/libraries/haskell/zlib/0.5.2.0.nix
@@ -0,0 +1,13 @@
+{cabal, zlib}:
+
+cabal.mkDerivation (self : {
+  pname = "zlib";
+  version = "0.5.2.0"; # Haskell Platform 2010.1.0.0
+  sha256 = "4119fb627e0adc2b129acd86fe5724cf05a49d8de5b64eb7a6e519d3befd3b8f";
+  # TODO: find out exactly why propagated is needed here (to build other
+  # packages depending on zlib):
+  propagatedBuildInputs = [zlib];
+  meta = {
+    description = "Compression and decompression in the gzip and zlib formats";
+  };
+})