From 29d0e684afcc1a3f4d5a5c60a483ba4c719c73f6 Mon Sep 17 00:00:00 2001 From: Gabor Greif Date: Sun, 10 May 2020 09:53:27 +0200 Subject: [PATCH] ocamlPackages.wasm: 1.0 -> 1.1 (#86803) --- pkgs/development/ocaml-modules/wasm/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/ocaml-modules/wasm/default.nix b/pkgs/development/ocaml-modules/wasm/default.nix index 99f2cf582cb..a76fa5eeebe 100644 --- a/pkgs/development/ocaml-modules/wasm/default.nix +++ b/pkgs/development/ocaml-modules/wasm/default.nix @@ -1,19 +1,18 @@ { stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild }: if !stdenv.lib.versionAtLeast ocaml.version "4.02" - || stdenv.lib.versionAtLeast ocaml.version "4.08" then throw "wasm is not available for OCaml ${ocaml.version}" else stdenv.mkDerivation rec { name = "ocaml${ocaml.version}-wasm-${version}"; - version = "1.0"; + version = "1.1"; src = fetchFromGitHub { owner = "WebAssembly"; repo = "spec"; rev = "v${version}"; - sha256 = "0r0wj31s2yg4vn4hyw2afc8wp8b0k3q130yiypwq3dlvfxrr70m6"; + sha256 = "1jsgrjqzsdmm6f5pgd947nikj7pnxx1mqdnz16j7s62rg8x06h7d"; }; buildInputs = [ ocaml findlib ocamlbuild ];