27 lines
875 B
Nix
27 lines
875 B
Nix
{ cabal, attoparsec, blazeBuilder, conduit, exceptions, filepath
|
|
, hspec, monadControl, network, primitive, resourcet
|
|
, streamingCommons, text, transformers, transformersBase
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "conduit-extra";
|
|
version = "1.1.0.4";
|
|
sha256 = "0l1cv65p8nvvb9qgcj87a682wh9xim0rbk2xzhdkd0r123csb118";
|
|
buildDepends = [
|
|
attoparsec blazeBuilder conduit filepath monadControl network
|
|
primitive resourcet streamingCommons text transformers
|
|
transformersBase
|
|
];
|
|
testDepends = [
|
|
attoparsec blazeBuilder conduit exceptions hspec resourcet text
|
|
transformers transformersBase
|
|
];
|
|
noHaddock = true;
|
|
meta = {
|
|
homepage = "http://github.com/snoyberg/conduit";
|
|
description = "Batteries included conduit: adapters for common libraries";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|