nixpkgs/pkgs/development/libraries/haskell/stm-conduit/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

21 lines
745 B
Nix

{ cabal, conduit, HUnit, QuickCheck, resourcet, stm, stmChans
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
, transformers
}:
cabal.mkDerivation (self: {
pname = "stm-conduit";
version = "1.1.0";
sha256 = "1b5v3vf9izzpw3vaslskhdxqnc1zmag1f3x50dh8r1nl318ndkf7";
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;
};
})