nixpkgs/pkgs/development/ocaml-modules/earley/default.nix

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

30 lines
662 B
Nix
Raw Normal View History

2020-09-30 09:37:13 +03:00
{ lib, fetchFromGitHub, ocaml, buildDunePackage
, stdlib-shims
}:
2019-05-21 23:17:57 +03:00
buildDunePackage rec {
2020-09-30 09:37:13 +03:00
version = "3.0.0";
2019-05-21 23:17:57 +03:00
pname = "earley";
2020-09-30 09:37:13 +03:00
src = fetchFromGitHub {
owner = "rlepigre";
repo = "ocaml-earley";
rev = version;
sha256 = "1vi58zdxchpw6ai0bz9h2ggcmg8kv57yk6qbx82lh47s5wb3mz5y";
};
2020-09-30 09:37:13 +03:00
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";
2019-05-21 23:17:57 +03:00
license = lib.licenses.cecill-b;
maintainers = [ lib.maintainers.vbgl ];
mainProgram = "pa_ocaml";
};
}