about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <vbgl@users.noreply.github.com>2018-05-19 23:01:40 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-05-19 23:01:40 +0200
commit0d319657efdbefa967df77a10057bbd346ea0bdd (patch)
tree6b12e6b1511715a8ae04e78ffd383f9ccd2e8331 /pkgs/development/ocaml-modules
parent2fe842a20001aa2b02325b0f78a2be5f6bd88d90 (diff)
downloadnixlib-0d319657efdbefa967df77a10057bbd346ea0bdd.tar
nixlib-0d319657efdbefa967df77a10057bbd346ea0bdd.tar.gz
nixlib-0d319657efdbefa967df77a10057bbd346ea0bdd.tar.bz2
nixlib-0d319657efdbefa967df77a10057bbd346ea0bdd.tar.lz
nixlib-0d319657efdbefa967df77a10057bbd346ea0bdd.tar.xz
nixlib-0d319657efdbefa967df77a10057bbd346ea0bdd.tar.zst
nixlib-0d319657efdbefa967df77a10057bbd346ea0bdd.zip
ocamlPackages.earley: init at 1.0.2 (#40755)
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/earley/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/earley/default.nix b/pkgs/development/ocaml-modules/earley/default.nix
new file mode 100644
index 000000000000..576d9b2528f5
--- /dev/null
+++ b/pkgs/development/ocaml-modules/earley/default.nix
@@ -0,0 +1,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;
+  };
+}