mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
haskell-enclosed-exceptions: add version 1.0.0.1
This commit is contained in:
parent
ba53ddcbb5
commit
aaa4d951dd
@ -0,0 +1,21 @@
|
||||
{ cabal, async, deepseq, hspec, liftedBase, monadControl
|
||||
, QuickCheck, transformers
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "enclosed-exceptions";
|
||||
version = "1.0.0.1";
|
||||
sha256 = "0imq5kp45yfkhkz51ld869pf9hnlkbh92nk0aig1z8cc6akjnjw0";
|
||||
buildDepends = [
|
||||
async deepseq liftedBase monadControl transformers
|
||||
];
|
||||
testDepends = [
|
||||
async deepseq hspec liftedBase monadControl QuickCheck transformers
|
||||
];
|
||||
meta = {
|
||||
homepage = "https://github.com/jcristovao/enclosed-exceptions";
|
||||
description = "Catching all exceptions from within an enclosed computation";
|
||||
license = self.stdenv.lib.licenses.mit;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -1019,6 +1019,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||
|
||||
emailValidate = callPackage ../development/libraries/haskell/email-validate {};
|
||||
|
||||
enclosedExceptions = callPackage ../development/libraries/haskell/enclosed-exceptions {};
|
||||
|
||||
encoding = callPackage ../development/libraries/haskell/encoding {};
|
||||
|
||||
enumerator = callPackage ../development/libraries/haskell/enumerator {};
|
||||
|
Loading…
Reference in New Issue
Block a user