summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hint/default.nix
blob: b37d7739148e0d8526b17cfda1cd28b106d925a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{cabal, extensibleExceptions, filepath, ghcMtl,
 ghcPaths, haskellSrc, MonadCatchIOMtl, mtl, utf8String} :

cabal.mkDerivation (self : {
  pname = "hint";
  version = "0.3.2.3";
  sha256 = "1cc01037cfd32eb1a299ce625487411a97ce70178778d7bbd1d5fcef7d3d40c4";
  propagatedBuildInputs = [
    extensibleExceptions filepath ghcMtl ghcPaths haskellSrc
    MonadCatchIOMtl mtl utf8String
  ];
  meta = {
    description = "An mtl compatible version of the Ghc-Api monads and monad-transformers";
  };
})