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