2014-04-04 21:29:41 +00:00
|
|
|
{ cabal, exceptions, hspec, liftedBase, mmorph, monadControl, mtl
|
|
|
|
, QuickCheck, resourcet, text, textStreamDecode, transformers
|
|
|
|
, transformersBase, void
|
2011-12-29 16:42:08 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "conduit";
|
2014-04-04 21:29:41 +00:00
|
|
|
version = "1.1.0";
|
|
|
|
sha256 = "17y8fnvl9s3676sslhc04abs4zqh90l2rdcazxglv0sfrfsdgwnq";
|
2011-12-29 16:42:08 +00:00
|
|
|
buildDepends = [
|
2014-04-04 21:29:41 +00:00
|
|
|
exceptions liftedBase mmorph monadControl mtl resourcet text
|
|
|
|
textStreamDecode transformers transformersBase void
|
2011-12-29 16:42:08 +00:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
2013-11-25 11:46:53 +00:00
|
|
|
hspec mtl QuickCheck resourcet text transformers void
|
2013-02-24 21:09:07 +00:00
|
|
|
];
|
2014-03-21 21:59:31 +00:00
|
|
|
doCheck = false;
|
2011-12-29 16:42:08 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/snoyberg/conduit";
|
2012-01-16 11:33:42 +00:00
|
|
|
description = "Streaming data processing library";
|
2013-07-08 09:53:10 +00:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-12-29 16:42:08 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-29 16:42:08 +00:00
|
|
|
};
|
|
|
|
})
|