summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-03-26 12:06:44 +0000
committerGitHub <noreply@github.com>2021-03-26 12:06:44 +0000
commit219312a10b5ae0e384fcd6b34f64899775236f5b (patch)
tree2d716e87a3de4d31cc61cc33d0adb6183ccb0897 /pkgs/development/tools/ocaml
parent83f3d96db8c0740e0621200307493db438a3b85a (diff)
parenteddd1a74ecc621a6abccb01713e6cddf99e463b0 (diff)
downloadnixpkgs-219312a10b5ae0e384fcd6b34f64899775236f5b.tar
nixpkgs-219312a10b5ae0e384fcd6b34f64899775236f5b.tar.gz
nixpkgs-219312a10b5ae0e384fcd6b34f64899775236f5b.tar.bz2
nixpkgs-219312a10b5ae0e384fcd6b34f64899775236f5b.tar.lz
nixpkgs-219312a10b5ae0e384fcd6b34f64899775236f5b.tar.xz
nixpkgs-219312a10b5ae0e384fcd6b34f64899775236f5b.tar.zst
nixpkgs-219312a10b5ae0e384fcd6b34f64899775236f5b.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/development/tools/ocaml')
-rw-r--r--pkgs/development/tools/ocaml/js_of_ocaml/compiler.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/ocaml/js_of_ocaml/compiler.nix b/pkgs/development/tools/ocaml/js_of_ocaml/compiler.nix
index f1398c2f7c7..12306d2a305 100644
--- a/pkgs/development/tools/ocaml/js_of_ocaml/compiler.nix
+++ b/pkgs/development/tools/ocaml/js_of_ocaml/compiler.nix
@@ -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 ];