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

22 lines
653 B
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
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-05-15 15:09:19 +01:00
version = "4.1.2";
sha256 = "0prxk4qjdcmxjdvpi1bwql0s3l1kwlaz9sydr9swa8bc8ams3a11";
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
};
})