2007-05-13 22:12:13 +02:00
|
|
|
{stdenv, fetchurl, python, pkgconfig, glib}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-04-06 21:39:25 +02:00
|
|
|
name = "pygobject-2.20.0";
|
2007-05-13 22:12:13 +02:00
|
|
|
src = fetchurl {
|
2010-04-06 21:39:25 +02:00
|
|
|
url = http://ftp.gnome.org/pub/GNOME/sources/pygobject/2.20/pygobject-2.20.0.tar.bz2;
|
|
|
|
sha256 = "10gsf3i2q9y659hayxyaxyfz7inswcjc8m6iyqckwsj2yjij7sa1";
|
2007-05-13 22:12:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [python pkgconfig glib];
|
2010-09-03 15:18:38 +02:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# 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
|
|
|
|
'';
|
2007-05-13 22:12:13 +02:00
|
|
|
}
|