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-03-11 11:49:17 +01:00
|
|
|
version = "1.1.0.0";
|
|
|
|
sha256 = "1vmiy00fsdp1jzmpjrz8wzxbv3185h27aspw412pmcr4v1n29kxc";
|
|
|
|
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
|
|
|
})
|