v8: 5.4.232 -> 7.4.255

This commit is contained in:
Matthew Bauer
2019-04-11 00:25:12 -04:00
parent 475cfffe1c
commit e7f57503e0
10 changed files with 323 additions and 363 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake, clang, python, v8_static, coreutils }:
{ stdenv, fetchFromGitHub, cmake, clang, python, v8, coreutils }:
let
sexpr_wasm_prototype = stdenv.mkDerivation {
@@ -45,7 +45,7 @@ stdenv.mkDerivation {
installPhase = ''
export DESTDIR=$out
export MKTEMPDIR=${coreutils}/bin
export D8DIR=${v8_static}/bin
export D8DIR=${v8}/bin
export SWDIR=${sexpr_wasm_prototype}/bin
make install
'';