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:
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, scons, pkgconfig
|
||||
{ stdenv, fetchurl, sconsPackages, pkgconfig
|
||||
, libsamplerate, libsndfile, liblo, libjack2, boost }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -10,8 +10,8 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1289533c0849b1b66463bf27f7ce5f71736b655cfb7672ef884c7e6eb957ac42";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ scons libsamplerate libsndfile liblo libjack2 boost ];
|
||||
nativeBuildInputs = [ sconsPackages.scons_3_0_1 pkgconfig ];
|
||||
buildInputs = [ libsamplerate libsndfile liblo libjack2 boost ];
|
||||
prefixKey = "PREFIX=";
|
||||
NIX_CFLAGS_COMPILE = "-fpermissive";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, scons, boost, ladspaH, pkgconfig }:
|
||||
{stdenv, fetchurl, sconsPackages, boost, ladspaH, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.2-2";
|
||||
@@ -9,8 +9,8 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "16064vvl2w5lz4xi3lyjk4xx7fphwsxc14ajykvndiz170q32s6i";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ scons boost ladspaH ];
|
||||
nativeBuildInputs = [ pkgconfig sconsPackages.scons_3_0_1 ];
|
||||
buildInputs = [ boost ladspaH ];
|
||||
|
||||
patchPhase = ''
|
||||
# remove TERM:
|
||||
|
||||
Reference in New Issue
Block a user