repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
menhir
/
default.nix
blob
e4eba6e4f5c5399d7c9a0ea7696d51d13a41a8a0
1
{ lib, fetchFromGitLab, buildDunePackage
2
, menhirLib, menhirSdk
3
}:
4
5
buildDunePackage rec {
6
pname = "menhir";
7
8
minimalOCamlVersion = "4.03";
9
10
inherit (menhirLib) version src;
11
12
buildInputs = [ menhirLib menhirSdk ];
13
14
meta = menhirSdk.meta // {
15
description = "A LR(1) parser generator for OCaml";
16
};
17
}