scons: 3.0.1 -> 3.0.2

A few packages broke due to the SCons upgrade (they depended on
deprecated options that got removed), I've kept them on version 3.0.1
for now. The rest of the rebuilds seems fine (the failing ones where
already in a broken state before this change).
This commit is contained in:
Michael Weiss
2019-01-06 20:29:52 +01:00
parent bd7eec5d9c
commit e1d9854816
7 changed files with 15 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, scons, lua }:
{ stdenv, fetchFromGitHub, sconsPackages, lua }:
stdenv.mkDerivation rec {
version = "1.0.93";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "0zd55bc8smmgk9j4cf0jpibb03lgsvl0knpwhplxbv93mcdnw7s0";
};
nativeBuildInputs = [ scons ];
nativeBuildInputs = [ sconsPackages.scons_3_0_1 ];
buildInputs = [ lua ];
patches = [ ./environ-and-linux-is-kinda-posix.patch ];