5ca9831cb1
ocamlPackages.menhirLib: init at 20210419 ocamlPackages.menhirSdk: init at 20210419
29 lines
761 B
Nix
29 lines
761 B
Nix
{ lib, fetchurl, buildDunePackage
|
|
, ocaml, cmdliner, cppo, yojson, ppxlib
|
|
, menhir, menhirLib
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "js_of_ocaml-compiler";
|
|
version = "3.9.1";
|
|
useDune2 = true;
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ocsigen/js_of_ocaml/releases/download/${version}/js_of_ocaml-${version}.tbz";
|
|
sha256 = "0ib551kfsjlp9vr3fk36hrbq7xxyl8bj6vcn3ccr0s370bsmgpm6";
|
|
};
|
|
|
|
nativeBuildInputs = [ cppo menhir ];
|
|
buildInputs = [ cmdliner menhirLib ];
|
|
|
|
configurePlatforms = [];
|
|
propagatedBuildInputs = [ yojson ppxlib ];
|
|
|
|
meta = {
|
|
description = "Compiler from OCaml bytecode to Javascript";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
homepage = "https://ocsigen.org/js_of_ocaml/";
|
|
};
|
|
}
|