2013-11-21 15:28:11 +00:00
|
|
|
{ cabal, mmorph, mtl, QuickCheck, testFramework
|
|
|
|
, testFrameworkQuickcheck2, transformers, void
|
|
|
|
}:
|
2013-06-04 10:52:25 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "pipes";
|
2014-01-06 11:21:12 +00:00
|
|
|
version = "4.0.2";
|
|
|
|
sha256 = "18hcpklryyq9f6iwycxzi3sd6gyd9h0gy0ckg4rl7rhgy73hzgcz";
|
2013-09-08 12:40:37 +01:00
|
|
|
buildDepends = [ mmorph mtl transformers void ];
|
2013-11-21 15:28:11 +00:00
|
|
|
testDepends = [
|
|
|
|
mtl QuickCheck testFramework testFrameworkQuickcheck2 transformers
|
|
|
|
];
|
2013-06-04 10:52:25 +01:00
|
|
|
meta = {
|
|
|
|
description = "Compositional pipelines";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-09-08 12:40:37 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
2013-06-04 10:52:25 +01:00
|
|
|
};
|
|
|
|
})
|