pkgs/development/python-modules/pygtk: move installed python code down one directory hierarchy so that $PYTHONPATH can be guessed
svn path=/nixpkgs/trunk/; revision=23201
This commit is contained in:
parent
f01ceffb9e
commit
7b00a8c39f
@ -18,5 +18,15 @@ stdenv.mkDerivation {
|
|||||||
postInstall = ''
|
postInstall = ''
|
||||||
rm $out/bin/pygtk-codegen-2.0
|
rm $out/bin/pygtk-codegen-2.0
|
||||||
ln -s ${pygobject}/bin/pygobject-codegen-2.0 $out/bin/pygtk-codegen-2.0
|
ln -s ${pygobject}/bin/pygobject-codegen-2.0 $out/bin/pygtk-codegen-2.0
|
||||||
|
|
||||||
|
# All python code is installed into a "gtk-2.0" sub-directory. That
|
||||||
|
# sub-directory may be useful on systems which share several library
|
||||||
|
# versions in the same prefix, i.e. /usr/local, but on Nix that directory
|
||||||
|
# is useless. Furthermore, its existence makes it very hard to guess a
|
||||||
|
# proper $PYTHONPATH that allows "import gtk" to succeed.
|
||||||
|
cd $(toPythonPath $out)/gtk-2.0
|
||||||
|
for n in *; do
|
||||||
|
ln -s "gtk-2.0/$n" "../$n"
|
||||||
|
done
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user