22 lines
803 B
Nix
22 lines
803 B
Nix
{ cabal, conduit, HUnit, QuickCheck, resourcet, stm, stmChans
|
|
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
|
|
, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "stm-conduit";
|
|
version = "1.0.0";
|
|
sha256 = "1kkx3x3qdqw5jp9vn9kxbxmmb8x0wdbp8jch08azw45pwjh3ga7v";
|
|
buildDepends = [ conduit resourcet stm stmChans transformers ];
|
|
testDepends = [
|
|
conduit HUnit QuickCheck stm stmChans testFramework
|
|
testFrameworkHunit testFrameworkQuickcheck2 transformers
|
|
];
|
|
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;
|
|
maintainers = [ self.stdenv.lib.maintainers.simons ];
|
|
};
|
|
})
|