summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/earley/default.nix
blob: 576d9b2528f5b4235dcc3b2ad54b2499215f6a7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchFromGitHub, which, ocaml, findlib, ocamlbuild }:

if !stdenv.lib.versionAtLeast ocaml.version "4.03"
then throw "earley is not available for OCaml ${ocaml.version}"
else

stdenv.mkDerivation rec {
  version = "1.0.2";
  name = "ocaml${ocaml.version}-earley-${version}";
  src = fetchFromGitHub {
    owner = "rlepigre";
    repo = "ocaml-earley";
    rev = "ocaml-earley_${version}";
    sha256 = "110njakmx1hyq42hyr6gx6qhaxly860whfhd6r0vks4yfp68qvcx";
  };

  buildInputs = [ which ocaml findlib ocamlbuild ];

  createFindlibDestdir = true;

  meta = {
    description = "Parser combinators based on Earley Algorithm";
    license = stdenv.lib.licenses.cecill-b;
    maintainers = [ stdenv.lib.maintainers.vbgl ];
    inherit (ocaml.meta) platforms;
    inherit (src.meta) homepage;
  };
}