2014-03-11 03:49:17 -07:00
|
|
|
{ cabal, exceptions, extensibleExceptions, mtl }:
|
2010-07-16 03:39:02 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2010-07-16 03:39:02 -07:00
|
|
|
pname = "ghc-mtl";
|
2014-04-04 14:29:45 -07:00
|
|
|
version = "1.2.0.0";
|
|
|
|
sha256 = "0fk3adc56nhi46nf2w5ybp3cd9l13qqbpd5nbhfhbqj3g73j8p5a";
|
2014-03-11 03:49:17 -07:00
|
|
|
buildDepends = [ exceptions extensibleExceptions mtl ];
|
2010-07-16 03:39:02 -07:00
|
|
|
meta = {
|
2014-03-11 03:49:17 -07:00
|
|
|
homepage = "http://hub.darcs.net/jcpetruzza/ghc-mtl";
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "An mtl compatible version of the Ghc-Api monads and monad-transformers";
|
2011-08-09 16:00:20 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-07-16 03:39:02 -07:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|