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 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-05-15 16:09:19 +02:00
version = "4.1.2";
sha256 = "0prxk4qjdcmxjdvpi1bwql0s3l1kwlaz9sydr9swa8bc8ams3a11";
2014-02-02 20:16:11 +01:00
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
};
})