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

20 lines
558 B
Nix
Raw Normal View History

2019-05-21 20:17:57 +00:00
{ lib, fetchurl, buildDunePackage }:
2019-05-21 20:17:57 +00:00
buildDunePackage rec {
version = "2.0.0";
pname = "earley";
src = fetchurl {
url = "https://github.com/rlepigre/ocaml-earley/releases/download/${version}/earley-${version}.tbz";
sha256 = "1kjr0wh3lji7f493kf48rphxnlv3sygj5a8rmx9z3xkpbd7aqyyw";
};
2019-05-21 20:17:57 +00:00
minimumOCamlVersion = "4.03";
meta = {
description = "Parser combinators based on Earley Algorithm";
2019-05-21 20:17:57 +00:00
license = lib.licenses.cecill-b;
maintainers = [ lib.maintainers.vbgl ];
homepage = "https://github.com/rlepigre/ocaml-earley";
};
}