summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/monad-peel/default.nix
blob: 39f911dae938597c95c8de3fb31746554a0b6317 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, extensibleExceptions, transformers }:

cabal.mkDerivation (self: {
  pname = "monad-peel";
  version = "0.1.1";
  sha256 = "0n3cxa94wd3hjvy9jgf3d8p7qfb9jaaf29simjya7rlcb673pg3l";
  buildDepends = [ extensibleExceptions transformers ];
  meta = {
    homepage = "http://andersk.mit.edu/haskell/monad-peel/";
    description = "Lift control operations like exception catching through monad transformers";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})