summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/haskell-src-exts/default.nix
blob: 6b4d48c67154fffa4108f21d6335934f22d20729 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{cabal, cpphs, happy}:

cabal.mkDerivation (self : {
  pname = "haskell-src-exts";
  version = "1.9.0";
  sha256 = "dedb529217dfe393f75f26b735f7dd09eea50006481f60d06e169de6f328d1da";
  extraBuildInputs = [happy];
  propagatedBuildInputs = [cpphs];
  meta = {
    description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer";
  };
})