scons.py2: Replace with sconsPackages.scons_3_1_2

Required since SCons 4.0.0 doesn't support Python 2.7 anymore.
This commit is contained in:
Michael Weiss
2020-07-18 10:48:20 +02:00
parent d41cd156d0
commit 595a36d846
15 changed files with 30 additions and 30 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, scons, libX11, pkgconfig
{ stdenv, fetchurl, sconsPackages, libX11, pkgconfig
, libusb1, boost, glib, dbus-glib }:
let
@@ -13,7 +13,7 @@ in stdenv.mkDerivation {
};
makeFlags = [ "PREFIX=$(out)" ];
nativeBuildInputs = [ pkgconfig scons.py2 ];
nativeBuildInputs = [ pkgconfig sconsPackages.scons_3_1_2 ];
buildInputs = [ libX11 libusb1 boost glib dbus-glib ];
dontUseSconsInstall = true;