mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-13 02:39:58 +00:00
14 lines
234 B
Nix
14 lines
234 B
Nix
{
|
|
buildDunePackage,
|
|
menhirLib,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "menhirGLR";
|
|
inherit (menhirLib) version src;
|
|
|
|
meta = menhirLib.meta // {
|
|
description = "Runtime support library for GLR parsers generated by Menhir";
|
|
};
|
|
}
|