about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/mtl/2.0.1.0.nix
blob: dc55078d0fc2a6b9290d34f6cc519c625febf21f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{cabal, transformers}:

cabal.mkDerivation (self : {
  pname = "mtl";
  version = "2.0.1.0"; # Haskell Platform 2011.2.0.0
  sha256 = "1w6jpzyl08mringnd6gxwcl3y9q506r240vm1sv0aacml1hy8szk";
  propagatedBuildInputs = [transformers];
  meta = {
    description = "Monad transformer library";
  };
})