distcc: use python3
This commit is contained in:
parent
bccaae647c
commit
11aa8b3b89
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, popt, avahi, pkg-config, python, gtk2, runCommand
|
{ lib, stdenv, fetchFromGitHub, popt, avahi, pkg-config, python3, gtk2, runCommand
|
||||||
, gcc, autoconf, automake, which, procps, libiberty_static
|
, gcc, autoconf, automake, which, procps, libiberty_static
|
||||||
, runtimeShell
|
, runtimeShell
|
||||||
, sysconfDir ? "" # set this parameter to override the default value $out/etc
|
, sysconfDir ? "" # set this parameter to override the default value $out/etc
|
||||||
|
@ -18,7 +18,7 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = [popt avahi pkg-config python gtk2 autoconf automake which procps libiberty_static];
|
buildInputs = [popt avahi pkg-config python3 gtk2 autoconf automake which procps libiberty_static];
|
||||||
preConfigure =
|
preConfigure =
|
||||||
''
|
''
|
||||||
export CPATH=$(ls -d ${gcc.cc}/lib/gcc/*/${gcc.cc.version}/plugin/include)
|
export CPATH=$(ls -d ${gcc.cc}/lib/gcc/*/${gcc.cc.version}/plugin/include)
|
||||||
|
|
Loading…
Reference in New Issue