2014-03-11 11:49:17 +01:00
|
|
|
{ cabal, exceptions, 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 = "ghc-mtl";
|
2014-05-15 16:08:43 +02:00
|
|
|
version = "1.2.1.0";
|
|
|
|
sha256 = "0h6r6gip9nsjlsq88wj105hhqliy7ac2dmmndsfzbjz07b03cklk";
|
2014-03-11 11:49:17 +01:00
|
|
|
buildDepends = [ exceptions extensibleExceptions mtl ];
|
2010-07-16 12:39:02 +02:00
|
|
|
meta = {
|
2014-03-11 11:49:17 +01:00
|
|
|
homepage = "http://hub.darcs.net/jcpetruzza/ghc-mtl";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "An mtl compatible version of the Ghc-Api monads and monad-transformers";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-07-16 12:39:02 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|