mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
29 lines
791 B
Nix
29 lines
791 B
Nix
{ lib, fetchurl, buildDunePackage
|
|
, cmdliner, yojson, ppxlib, findlib
|
|
, menhir, menhirLib, sedlex
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "js_of_ocaml-compiler";
|
|
version = "5.6.0";
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ocsigen/js_of_ocaml/releases/download/${version}/js_of_ocaml-${version}.tbz";
|
|
hash = "sha256-hDXwJjOhfvbIoaMXGmU3/bIGwAxPt9TKVCUN9tr2wj8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ menhir ];
|
|
buildInputs = [ cmdliner ppxlib ];
|
|
|
|
propagatedBuildInputs = [ menhirLib yojson findlib sedlex ];
|
|
|
|
meta = {
|
|
description = "Compiler from OCaml bytecode to Javascript";
|
|
homepage = "https://ocsigen.org/js_of_ocaml/";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
mainProgram = "js_of_ocaml";
|
|
};
|
|
}
|