emscripten: 1.37.36 -> 1.38.28

This commit is contained in:
Tom Smeets
2019-02-25 13:13:55 +01:00
parent 63b7732ed6
commit 5ef3645a69
4 changed files with 12 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, cmake, fetchFromGitHub, emscriptenRev ? null }:
{ stdenv, cmake, python, fetchFromGitHub, emscriptenRev ? null }:
let
defaultVersion = "45";
@@ -6,7 +6,7 @@ let
# Map from git revs to SHA256 hashes
sha256s = {
"version_45" = "1wgzfzjjzkiaz0rf2lnwrcvlcsjvjhyvbyh58jxhqq43vi34zyjc";
"1.37.36" = "1wgzfzjjzkiaz0rf2lnwrcvlcsjvjhyvbyh58jxhqq43vi34zyjc";
"1.38.28" = "172s7y5f38736ic8ri3mnbdqcrkadd40a26cxcfwbscc53phl11v";
};
in
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
inherit rev;
};
nativeBuildInputs = [ cmake ];
nativeBuildInputs = [ cmake python ];
meta = with stdenv.lib; {
homepage = https://github.com/WebAssembly/binaryen;