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