nixpkgs/pkgs/development/libraries/haskell/pipes/default.nix

20 lines
578 B
Nix
Raw Normal View History

2013-11-21 16:28:11 +01:00
{ cabal, mmorph, mtl, QuickCheck, testFramework
2014-02-02 20:16:11 +01:00
, testFrameworkQuickcheck2, transformers
2013-11-21 16:28:11 +01:00
}:
2013-06-04 11:52:25 +02:00
cabal.mkDerivation (self: {
pname = "pipes";
2014-02-02 20:16:11 +01:00
version = "4.1.0";
sha256 = "1n10plmrjvmkyv502195mkms48y3lfp5gy08lhyhqqr7kn1gzkf0";
buildDepends = [ mmorph mtl transformers ];
2013-11-21 16:28:11 +01:00
testDepends = [
mtl QuickCheck testFramework testFrameworkQuickcheck2 transformers
];
2013-06-04 11:52:25 +02:00
meta = {
description = "Compositional pipelines";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
2013-06-04 11:52:25 +02:00
};
})