elinks: use recent spidermonkey version

This commit is contained in:
Justin Humm 2019-08-01 23:18:26 +02:00 committed by Frederik Rietdijk
parent c3cc950001
commit 7ee6674ec3
1 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
enableGuile ? false, guile ? null enableGuile ? false, guile ? null
, enablePython ? false, python ? null , enablePython ? false, python ? null
, enablePerl ? (stdenv.hostPlatform == stdenv.buildPlatform), perl ? null , enablePerl ? (stdenv.hostPlatform == stdenv.buildPlatform), perl ? null
, enableSpidermonkey ? (stdenv.hostPlatform == stdenv.buildPlatform), spidermonkey_1_8_5 ? null , enableSpidermonkey ? (stdenv.hostPlatform == stdenv.buildPlatform), spidermonkey ? null
}: }:
assert enableGuile -> guile != null; assert enableGuile -> guile != null;
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
patches = [ ./gc-init.patch ]; patches = [ ./gc-init.patch ];
buildInputs = [ ncurses xlibsWrapper bzip2 zlib openssl spidermonkey_1_8_5 gpm ] buildInputs = [ ncurses xlibsWrapper bzip2 zlib openssl spidermonkey gpm ]
++ stdenv.lib.optional enableGuile guile ++ stdenv.lib.optional enableGuile guile
++ stdenv.lib.optional enablePython python ++ stdenv.lib.optional enablePython python
++ stdenv.lib.optional enablePerl perl ++ stdenv.lib.optional enablePerl perl
@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
] ++ stdenv.lib.optional enableGuile "--with-guile" ] ++ stdenv.lib.optional enableGuile "--with-guile"
++ stdenv.lib.optional enablePython "--with-python" ++ stdenv.lib.optional enablePython "--with-python"
++ stdenv.lib.optional enablePerl "--with-perl" ++ stdenv.lib.optional enablePerl "--with-perl"
++ stdenv.lib.optional enableSpidermonkey "--with-spidermonkey=${spidermonkey_1_8_5}" ++ stdenv.lib.optional enableSpidermonkey "--with-spidermonkey=${spidermonkey}"
; ;
meta = { meta = {