aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/wasm
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2020-05-10 09:53:27 +0200
committerGitHub <noreply@github.com>2020-05-10 09:53:27 +0200
commit29d0e684afcc1a3f4d5a5c60a483ba4c719c73f6 (patch)
tree804c4d9154746f6bd8b11da4774056a71ad13233 /pkgs/development/ocaml-modules/wasm
parent2e192dc5dbfb144d5ca38e42cc4b5dac668140b3 (diff)
ocamlPackages.wasm: 1.0 -> 1.1 (#86803)
Diffstat (limited to 'pkgs/development/ocaml-modules/wasm')
-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 99f2cf582cb9..a76fa5eeebe0 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 ];