2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, extensibleExceptions, mtl }:
|
2010-07-16 12:39:02 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2010-07-16 12:39:02 +02:00
|
|
|
pname = "MonadCatchIO-mtl";
|
2012-08-20 10:25:17 +02:00
|
|
|
version = "0.3.0.5";
|
|
|
|
sha256 = "01c2xif4aly2lmg2qkri791ignq3r2qg4xbc8m06cdm6gh5a2dqp";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ extensibleExceptions mtl ];
|
2010-07-16 12:39:02 +02:00
|
|
|
meta = {
|
2011-08-12 11:19:48 +02:00
|
|
|
homepage = "http://darcsden.com/jcpetruzza/MonadCatchIO-mtl";
|
2010-07-16 12:39:02 +02:00
|
|
|
description = "Monad-transformer version of the Control.Exception module";
|
2011-08-08 00:01:08 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-07-16 12:39:02 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|