2011-08-10 00:00:20 +01:00
|
|
|
{ cabal, extensibleExceptions, transformers }:
|
2010-07-21 10:41:12 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2010-07-21 10:41:12 +01:00
|
|
|
pname = "MonadCatchIO-transformers";
|
2011-10-29 11:47:58 +01:00
|
|
|
version = "0.2.2.3";
|
|
|
|
sha256 = "1qwy9rrmf3kl7rb7v46n81xmrwy4xl63lfnlsiz1qc0hybjkl7m6";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [ extensibleExceptions transformers ];
|
2010-07-21 10:41:12 +01:00
|
|
|
meta = {
|
|
|
|
description = "Monad-transformer compatible version of the Control.Exception module";
|
2011-10-29 11:47:58 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-10 00:00:20 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-07-21 10:41:12 +01:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|