1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/libraries/haskell/pipes/default.nix

20 lines
578 B
Nix
Raw Normal View History

2013-11-21 15:28:11 +00:00
{ cabal, mmorph, mtl, QuickCheck, testFramework
2014-02-02 19:16:11 +00:00
, testFrameworkQuickcheck2, transformers
2013-11-21 15:28:11 +00:00
}:
2013-06-04 10:52:25 +01:00
cabal.mkDerivation (self: {
pname = "pipes";
2014-04-17 20:13:19 +01:00
version = "4.1.1";
sha256 = "1ib7vs4x8ckajlg3nz9lx2snnwj75by90fbv4znwhwgrhj4h13dn";
2014-02-02 19:16:11 +00:00
buildDepends = [ mmorph mtl transformers ];
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;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
2013-06-04 10:52:25 +01:00
};
})