2013-12-01 23:29:10 +01:00
|
|
|
{ cabal, async, conduit, HUnit, liftedAsync, liftedBase
|
|
|
|
, monadControl, monadLoops, QuickCheck, resourcet, stm, stmChans
|
|
|
|
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
|
|
|
|
, transformers
|
2013-03-20 10:44:55 +01:00
|
|
|
}:
|
2013-03-16 15:33:16 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "stm-conduit";
|
2013-12-01 23:29:10 +01:00
|
|
|
version = "2.1.4";
|
|
|
|
sha256 = "0xl3g96blawy5bkvialq6jxnf4wajxb5fg1sh7p9kvw1gvacqwqk";
|
2013-08-02 16:19:50 +02:00
|
|
|
buildDepends = [
|
2013-12-01 23:29:10 +01:00
|
|
|
async conduit liftedAsync liftedBase monadControl monadLoops
|
|
|
|
resourcet stm stmChans transformers
|
2013-08-02 16:19:50 +02:00
|
|
|
];
|
2013-03-20 10:44:55 +01:00
|
|
|
testDepends = [
|
|
|
|
conduit HUnit QuickCheck stm stmChans testFramework
|
|
|
|
testFrameworkHunit testFrameworkQuickcheck2 transformers
|
2013-03-16 15:33:16 +01:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/wowus/stm-conduit";
|
|
|
|
description = "Introduces conduits to channels, and promotes using conduits concurrently";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|