mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
scons: install library files in python's site-package directory
svn path=/nixpkgs/trunk/; revision=12179
This commit is contained in:
parent
9d48cb846b
commit
4842708ca1
|
@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
|||
url = "mirror://sourceforge/scons/scons-${version}.tar.gz";
|
||||
sha256 = "${versionHash}";
|
||||
};
|
||||
buildPhase = "true";
|
||||
installPhase = "python setup.py install --prefix=$out";
|
||||
propagatedBuildInputs = [python];
|
||||
buildPhase = "true";
|
||||
installPhase = "python setup.py install --prefix=$out --install-lib=$(toPythonPath $out) --hardlink-scons -O1";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue