17 lines
288 B
Nix
17 lines
288 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
menhirLib,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "menhirSdk";
|
|
|
|
inherit (menhirLib) version src;
|
|
|
|
meta = menhirLib.meta // {
|
|
description = "Compile-time library for auxiliary tools related to Menhir";
|
|
license = with lib.licenses; [ gpl2Only ];
|
|
};
|
|
}
|