summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/menhir/default.nix
blob: 686cf98205801cbbe2f163c24c0b77b3bc50458a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, fetchFromGitLab, buildDunePackage
, menhirLib, menhirSdk
}:

buildDunePackage rec {
  pname = "menhir";

  inherit (menhirLib) version src useDune2;

  buildInputs = [ menhirLib menhirSdk ];

  meta = menhirSdk.meta // {
    description = "A LR(1) parser generator for OCaml";
  };
}