nixpkgs/pkgs/development/libraries/haskell/ghc-mtl/default.nix
Peter Simons dbce2ffd0f Generated neater meta.description strings.
svn path=/nixpkgs/trunk/; revision=28492
2011-08-11 13:03:51 +00:00

19 lines
595 B
Nix

{ cabal, MonadCatchIOMtl, mtl }:
cabal.mkDerivation (self: {
pname = "ghc-mtl";
version = "1.0.1.0";
sha256 = "5284e0ecf99511e6263503412faf6fa809dc577c009fde63203d46405eb1b191";
buildDepends = [ MonadCatchIOMtl mtl ];
meta = {
homepage = "http://code.haskell.org/~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
self.stdenv.lib.maintainers.simons
];
};
})