3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
24 lines
736 B
Nix
24 lines
736 B
Nix
{ cabal, doctest, hspec, liftedBase, mmorph, monadControl
|
|
, QuickCheck, resourcet, text, transformers, transformersBase, void
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "conduit";
|
|
version = "1.0.5";
|
|
sha256 = "0w8japlx0darpf67ki753l0kw64lgisr1dww3alfwjlya0k84z65";
|
|
buildDepends = [
|
|
liftedBase mmorph monadControl resourcet text transformers
|
|
transformersBase void
|
|
];
|
|
testDepends = [
|
|
doctest hspec QuickCheck resourcet text transformers 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 ];
|
|
};
|
|
})
|