mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
16 lines
287 B
Nix
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 ];
|
|
};
|
|
}
|
|
|