pipes: Add Haskell 'pipes' family of libraries

This commit is contained in:
Oliver Charles
2013-09-08 12:40:37 +01:00
parent fa41e13ccf
commit a0ab379c00
12 changed files with 165 additions and 15 deletions

View File

@@ -0,0 +1,21 @@
{ cabal, mtl, QuickCheck, testFramework, testFrameworkQuickcheck2
, transformers
}:
cabal.mkDerivation (self: {
pname = "exceptions";
version = "0.3.2";
sha256 = "0c1d78wm8is9kyv26drbx3f1sq2bfcq5m6wfw2qzwgalb3z2kxlw";
buildDepends = [ mtl transformers ];
testDepends = [
mtl QuickCheck testFramework testFrameworkQuickcheck2 transformers
];
meta = {
homepage = "http://github.com/ekmett/exceptions/";
description = "Extensible optionally-pure exceptions";
license = "unknown";
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
doCheck = false; # https://github.com/ekmett/exceptions/issues/18
})