summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-07-25 18:46:31 -0600
committerGitHub <noreply@github.com>2023-07-25 18:46:31 -0600
commit6a971b684969fcebf5b406f4a79cad61c0d73411 (patch)
treec3a98d046ac5ffded3f23591221aa56e8cdd99f4 /pkgs/development/ocaml-modules
parent636729cfbd9557642d808b4bea7ab3fcd707404f (diff)
parent4d5e3e4a5bc4470366c4f5a22f79d1388c6bcf19 (diff)
downloadnixpkgs-6a971b684969fcebf5b406f4a79cad61c0d73411.tar
nixpkgs-6a971b684969fcebf5b406f4a79cad61c0d73411.tar.gz
nixpkgs-6a971b684969fcebf5b406f4a79cad61c0d73411.tar.bz2
nixpkgs-6a971b684969fcebf5b406f4a79cad61c0d73411.tar.lz
nixpkgs-6a971b684969fcebf5b406f4a79cad61c0d73411.tar.xz
nixpkgs-6a971b684969fcebf5b406f4a79cad61c0d73411.tar.zst
nixpkgs-6a971b684969fcebf5b406f4a79cad61c0d73411.zip
Merge pull request #245307 from vbgl/ocaml-wasm-2.0.1
ocamlPackages.wasm: 2.0.0 → 2.0.1
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/wasm/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/wasm/default.nix b/pkgs/development/ocaml-modules/wasm/default.nix
index 18d3d7795ac..6731eb5f1ea 100644
--- a/pkgs/development/ocaml-modules/wasm/default.nix
+++ b/pkgs/development/ocaml-modules/wasm/default.nix
@@ -1,19 +1,18 @@
 { stdenv, lib, fetchFromGitHub, ocaml, findlib, ocamlbuild }:
 
 if lib.versionOlder ocaml.version "4.08"
-|| lib.versionAtLeast ocaml.version "5.0"
 then throw "wasm is not available for OCaml ${ocaml.version}"
 else
 
 stdenv.mkDerivation rec {
   pname = "ocaml${ocaml.version}-wasm";
-  version = "2.0.0";
+  version = "2.0.1";
 
   src = fetchFromGitHub {
     owner = "WebAssembly";
     repo = "spec";
     rev = "opam-${version}";
-    sha256 = "sha256:09s0v79x0ymzcp2114zkm3phxavdfnkkq67qz1ndnknbkziwqf3v";
+    hash = "sha256-5eo8MIui2GxRS5X9az0NlLGZfxi5KGsTI/EaP6m/zts=";
   };
 
   nativeBuildInputs = [ ocaml findlib ocamlbuild ];