nixpkgs/pkgs/development/ocaml-modules/menhir/sdk.nix
2024-05-30 13:36:48 +02:00

16 lines
287 B
Nix

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