scons: use python2 and refactor expression
This commit is contained in:
parent
936bfd23e1
commit
f42a7068da
@ -1,29 +1,17 @@
|
||||
{stdenv, fetchurl, python, makeWrapper}:
|
||||
{stdenv, fetchurl, python2Packages}:
|
||||
|
||||
let
|
||||
name = "scons";
|
||||
version = "2.5.0";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
in python2Packages.buildPythonApplication {
|
||||
name = "${name}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/scons/${name}-${version}.tar.gz";
|
||||
sha256 = "1sdcj8iapfzmlq7098yas40qwl6khsiwydbxv33sw81wy93nnagb";
|
||||
};
|
||||
|
||||
buildInputs = [python makeWrapper];
|
||||
|
||||
preConfigure = ''
|
||||
for i in "script/"*; do
|
||||
substituteInPlace $i --replace "/usr/bin/env python" "${python}/bin/python"
|
||||
done
|
||||
'';
|
||||
buildPhase = "python setup.py install --prefix=$out --install-data=$out/share --install-lib=$(toPythonPath $out) --symlink-scons -O1";
|
||||
installPhase = "for n in $out/bin/*-${version}; do wrapProgram $n --suffix PYTHONPATH ':' \"$(toPythonPath $out)\"; done";
|
||||
|
||||
pythonPath = [];
|
||||
# No tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = "http://scons.org/";
|
||||
|
Loading…
Reference in New Issue
Block a user