ocamlPackages.js_of_ocaml: 3.8.0 -> 3.9.1

Apply patch from eliom's master to fix build with the new js_of_ocaml
version.
This commit is contained in:
sternenseemann
2021-03-24 16:09:42 +01:00
committed by Vincent Laporte
parent 6d7fcb093b
commit cf83099225
2 changed files with 12 additions and 4 deletions

View File

@@ -1,16 +1,16 @@
{ lib, fetchurl, buildDunePackage
, cmdliner, cppo, yojson, ppxlib
, ocaml, cmdliner, cppo, yojson, ppxlib
, menhir
}:
buildDunePackage rec {
pname = "js_of_ocaml-compiler";
version = "3.8.0";
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 = "069jyiayxcgwnips3adxb3d53mzd4rrq2783b9fgmsiyzm545lcy";
sha256 = "0ib551kfsjlp9vr3fk36hrbq7xxyl8bj6vcn3ccr0s370bsmgpm6";
};
nativeBuildInputs = [ cppo menhir ];