nixpkgs/pkgs/development/ocaml-modules/menhir/sdk.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
287 B
Nix
Raw Normal View History

{ 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 ];
};
}