about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/conduit
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/conduit
parentbf55fb9192b300186b3544b66cd7edf14032aafb (diff)
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/conduit')
-rw-r--r--pkgs/development/libraries/haskell/conduit/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/conduit/default.nix b/pkgs/development/libraries/haskell/conduit/default.nix
new file mode 100644
index 0000000000000..76a7130ecb179
--- /dev/null
+++ b/pkgs/development/libraries/haskell/conduit/default.nix
@@ -0,0 +1,22 @@
+{ cabal, liftedBase, monadControl, text, transformers
+, transformersBase
+}:
+
+cabal.mkDerivation (self: {
+  pname = "conduit";
+  version = "0.0.0.1";
+  sha256 = "0l3q9jj0dpbn2ixjx6d9m6ss92dmfgd5xc7wgfpb9d0kfk2li0sv";
+  buildDepends = [
+    liftedBase monadControl text transformers transformersBase
+  ];
+  meta = {
+    homepage = "http://github.com/snoyberg/conduit";
+    description = "A pull-based approach to streaming data";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+    maintainers = [
+      self.stdenv.lib.maintainers.andres
+      self.stdenv.lib.maintainers.simons
+    ];
+  };
+})