mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
ba54ba9316
where none of the executables match the package's `name` or `pname`, and one of the executables is the obvious `mainProgram`.
30 lines
662 B
Nix
30 lines
662 B
Nix
{ lib, fetchFromGitHub, ocaml, buildDunePackage
|
|
, stdlib-shims
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
version = "3.0.0";
|
|
pname = "earley";
|
|
src = fetchFromGitHub {
|
|
owner = "rlepigre";
|
|
repo = "ocaml-earley";
|
|
rev = version;
|
|
sha256 = "1vi58zdxchpw6ai0bz9h2ggcmg8kv57yk6qbx82lh47s5wb3mz5y";
|
|
};
|
|
|
|
minimumOCamlVersion = "4.07";
|
|
useDune2 = true;
|
|
|
|
buildInputs = [ stdlib-shims ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "Parser combinators based on Earley Algorithm";
|
|
homepage = "https://github.com/rlepigre/ocaml-earley";
|
|
license = lib.licenses.cecill-b;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
mainProgram = "pa_ocaml";
|
|
};
|
|
}
|