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

cabal.mkDerivation (self: {
  pname = "MonadCatchIO-transformers";
  version = "0.3.0.0";
  sha256 = "0v7k6npfr1x9s4bk409y6sc1vhzs5pm4mwpky356z7kdvz2z274c";
  buildDepends = [ extensibleExceptions transformers ];
  meta = {
    description = "Monad-transformer compatible version of the Control.Exception module";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})