2014-04-04 23:29:39 +02:00
|
|
|
{ cabal, attoparsec, blazeBuilder, conduit, exceptions, filepath
|
|
|
|
, hspec, monadControl, network, primitive, resourcet
|
|
|
|
, streamingCommons, text, transformers, transformersBase
|
|
|
|
}:
|
2014-03-30 22:03:13 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "conduit-extra";
|
2014-07-03 16:59:55 +02:00
|
|
|
version = "1.1.1";
|
|
|
|
sha256 = "1876kg7zb0gasl7ijmx48r5r2jv3c5xxa1xb6g6iqfysx0qsv6z2";
|
2014-04-04 23:29:39 +02:00
|
|
|
buildDepends = [
|
|
|
|
attoparsec blazeBuilder conduit filepath monadControl network
|
|
|
|
primitive resourcet streamingCommons text transformers
|
|
|
|
transformersBase
|
|
|
|
];
|
|
|
|
testDepends = [
|
|
|
|
attoparsec blazeBuilder conduit exceptions hspec resourcet text
|
|
|
|
transformers transformersBase
|
|
|
|
];
|
2014-03-30 22:51:46 +02:00
|
|
|
noHaddock = true;
|
2014-03-30 22:03:13 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/snoyberg/conduit";
|
2014-04-04 23:29:39 +02:00
|
|
|
description = "Batteries included conduit: adapters for common libraries";
|
2014-03-30 22:03:13 +02:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|