summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/zlib-conduit/default.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-12-29 16:42:08 +0000
committerPeter Simons <simons@cryp.to>2011-12-29 16:42:08 +0000
commitde1a6e09d7bbf1cf4adbabbae00de56d943dae12 (patch)
tree880c68344bd928b5ebde0877cedc42e601eeea05 /pkgs/development/libraries/haskell/zlib-conduit/default.nix
parentbf55fb9192b300186b3544b66cd7edf14032aafb (diff)
downloadnixpkgs-de1a6e09d7bbf1cf4adbabbae00de56d943dae12.tar
nixpkgs-de1a6e09d7bbf1cf4adbabbae00de56d943dae12.tar.gz
nixpkgs-de1a6e09d7bbf1cf4adbabbae00de56d943dae12.tar.bz2
nixpkgs-de1a6e09d7bbf1cf4adbabbae00de56d943dae12.tar.lz
nixpkgs-de1a6e09d7bbf1cf4adbabbae00de56d943dae12.tar.xz
nixpkgs-de1a6e09d7bbf1cf4adbabbae00de56d943dae12.tar.zst
nixpkgs-de1a6e09d7bbf1cf4adbabbae00de56d943dae12.zip
haskell-path-pieces: added version 0.1.0
haskell-attoparsec-conduit: added version 0.0.0
haskell-blaze-builder-conduit: added version 0.0.0
haskell-conduit: added version 0.0.0.1
haskell-http-conduit: added version 1.0.0
haskell-lifted-base: added version 0.1.0.2
haskell-xml-conduit: added version 0.5.0
haskell-zlib-conduit: added version 0.0.0

svn path=/nixpkgs/trunk/; revision=31141
Diffstat (limited to 'pkgs/development/libraries/haskell/zlib-conduit/default.nix')
-rw-r--r--pkgs/development/libraries/haskell/zlib-conduit/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/zlib-conduit/default.nix b/pkgs/development/libraries/haskell/zlib-conduit/default.nix
new file mode 100644
index 00000000000..306475a81b4
--- /dev/null
+++ b/pkgs/development/libraries/haskell/zlib-conduit/default.nix
@@ -0,0 +1,18 @@
+{ cabal, conduit, transformers, zlibBindings }:
+
+cabal.mkDerivation (self: {
+  pname = "zlib-conduit";
+  version = "0.0.0";
+  sha256 = "1nqcw809xqlycggn4nqys205gv3kjwws16910xlx2b8b9f8ayxjg";
+  buildDepends = [ conduit transformers zlibBindings ];
+  meta = {
+    homepage = "http://github.com/snoyberg/conduit";
+    description = "Streaming compression/decompression via conduits";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+    maintainers = [
+      self.stdenv.lib.maintainers.andres
+      self.stdenv.lib.maintainers.simons
+    ];
+  };
+})