forked from mirrors/nixpkgs
Merge pull request #40884 from vbgl/ocaml-earley-ocaml
ocamlPackages.earley_ocaml: init at 1.0.2
This commit is contained in:
commit
8d1eddea16
30
pkgs/development/ocaml-modules/earley_ocaml/default.nix
Normal file
30
pkgs/development/ocaml-modules/earley_ocaml/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv, fetchFromGitHub, which, ocaml, findlib, ocamlbuild, earley }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.0.2";
|
||||
name = "ocaml${ocaml.version}-earley_ocaml-${version}";
|
||||
src = fetchFromGitHub {
|
||||
owner = "rlepigre";
|
||||
repo = "ocaml-earley-ocaml";
|
||||
rev = "ocaml-earley-ocaml_${version}";
|
||||
sha256 = "0f8kr49r2xfs7cbzps4r9i92ckhwssaiydam846jrky3z5djn2jc";
|
||||
};
|
||||
|
||||
buildInputs = [ which ocaml findlib ocamlbuild ];
|
||||
|
||||
propagatedBuildInputs = [ earley ];
|
||||
|
||||
preBuild = "make";
|
||||
|
||||
createFindlibDestdir = true;
|
||||
|
||||
installFlags = [ "BINDIR=$(out)/bin" ];
|
||||
|
||||
meta = {
|
||||
description = "Extensible OCaml parser to be used with Earley";
|
||||
license = stdenv.lib.licenses.cecill-b;
|
||||
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
||||
inherit (ocaml.meta) platforms;
|
||||
inherit (src.meta) homepage;
|
||||
};
|
||||
}
|
|
@ -217,6 +217,8 @@ let
|
|||
|
||||
earley = callPackage ../development/ocaml-modules/earley { };
|
||||
|
||||
earley_ocaml = callPackage ../development/ocaml-modules/earley_ocaml { };
|
||||
|
||||
easy-format = callPackage ../development/ocaml-modules/easy-format { };
|
||||
|
||||
eliom = callPackage ../development/ocaml-modules/eliom { };
|
||||
|
|
Loading…
Reference in a new issue