nixpkgs/pkgs/development/libraries/haskell/conduit/default.nix
Peter Simons 5930e47068 Updated Haskell packages.
- attoparsec-conduit: updated to version 0.4.0.1
 - conduit: updated to version 0.4.2
 - network-conduit: updated to version 0.4.0.1
 - persistent-sqlite: updated to version 0.9.0.2
 - persistent: updated to version 0.9.0.4
 - semigroups: updated to version 0.8.3.1
 - wai-app-static: updated to version 1.2.0.3
 - wai-extra: updated to version 1.2.0.4
 - wai: updated to version 1.2.0.2
 - warp: updated to version 1.2.0.2
 - xml-conduit: updated to version 0.7.0.2

svn path=/nixpkgs/trunk/; revision=34027
2012-05-09 11:25:59 +00:00

21 lines
608 B
Nix

{ cabal, liftedBase, monadControl, resourcet, text, transformers
, transformersBase, void
}:
cabal.mkDerivation (self: {
pname = "conduit";
version = "0.4.2";
sha256 = "1v8s80g8gyxb139dzqbbh4qv6ax08g5smrvx2zc5sd2773wwqwz0";
buildDepends = [
liftedBase monadControl resourcet text transformers
transformersBase void
];
meta = {
homepage = "http://github.com/snoyberg/conduit";
description = "Streaming data processing library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})