pipes: Add Haskell 'pipes' family of libraries
This commit is contained in:
21
pkgs/development/libraries/haskell/exceptions/default.nix
Normal file
21
pkgs/development/libraries/haskell/exceptions/default.nix
Normal 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
|
||||
})
|
||||
Reference in New Issue
Block a user