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