summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/enclosed-exceptions/default.nix
blob: 113c454d6db1b54ae53d36a0ddf9616558234639 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
  };
})