about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/menhir/sdk.nix
blob: cc699175af399e86efd1c8aad2140f1a4749be68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, fetchFromGitLab, 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 ];
  };
}