python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / menhir / default.nix
blobe4eba6e4f5c5399d7c9a0ea7696d51d13a41a8a0
1 { lib, fetchFromGitLab, buildDunePackage
2 , menhirLib, menhirSdk
3 }:
5 buildDunePackage rec {
6   pname = "menhir";
8   minimalOCamlVersion = "4.03";
10   inherit (menhirLib) version src;
12   buildInputs = [ menhirLib menhirSdk ];
14   meta = menhirSdk.meta // {
15     description = "A LR(1) parser generator for OCaml";
16   };