883ae24a70
svn path=/nixpkgs/trunk/; revision=31286
23 lines
631 B
Nix
23 lines
631 B
Nix
{ cabal, liftedBase, monadControl, text, transformers
|
|
, transformersBase
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "conduit";
|
|
version = "0.0.0.2";
|
|
sha256 = "1fngrlly5q2l0j3fil4cx3zj2h4sxnh20i0r84l4qhl8s0x5ba5z";
|
|
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
|
|
];
|
|
};
|
|
})
|