nixpkgs/pkgs/development/libraries/haskell/ghc-mtl/default.nix
2014-03-11 13:50:48 +01:00

16 lines
561 B
Nix

{ cabal, exceptions, extensibleExceptions, mtl }:
cabal.mkDerivation (self: {
pname = "ghc-mtl";
version = "1.1.0.0";
sha256 = "1vmiy00fsdp1jzmpjrz8wzxbv3185h27aspw412pmcr4v1n29kxc";
buildDepends = [ exceptions extensibleExceptions mtl ];
meta = {
homepage = "http://hub.darcs.net/jcpetruzza/ghc-mtl";
description = "An mtl compatible version of the Ghc-Api monads and monad-transformers";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})