spidermonkey_185: use python2

This commit is contained in:
Frederik Rietdijk 2016-10-18 16:41:47 +02:00
parent caac67aabe
commit 7c8b3550b6

View File

@ -1,4 +1,4 @@
{ stdenv, autoconf213, fetchurl, pkgconfig, nspr, perl, python, zip }:
{ stdenv, autoconf213, fetchurl, pkgconfig, nspr, perl, python2, zip }:
stdenv.mkDerivation rec {
version = "185-1.0.0";
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ nspr ];
buildInputs = [ pkgconfig perl python zip ];
buildInputs = [ pkgconfig perl python2 zip ];
nativeBuildInputs = if stdenv.isArm then [ autoconf213 ] else [];
postUnpack = "sourceRoot=\${sourceRoot}/js/src";