update pygtk

svn path=/nixpkgs/trunk/; revision=8667
This commit is contained in:
Armijn Hemel 2007-05-13 20:54:38 +00:00
parent 4d0fe8a249
commit e6e620279e
2 changed files with 10 additions and 6 deletions

View File

@ -1,11 +1,11 @@
{stdenv, fetchurl, python, pkgconfig, glib, gtk}: {stdenv, fetchurl, python, pkgconfig, glib, gtk, pygobject, pycairo}:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "pygtk-2.6.1"; name = "pygtk-2.10.4";
# builder = ./builder.sh; # builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/pygtk-2.6.1.tar.bz2; url = http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.10/pygtk-2.10.4.tar.bz2;
md5 = "b4610829e4f57b5538dfa3b8f1fbe026"; sha256 = "1xg8vng42lql29aa5ryva8icc8dwdc7h2y3yn96qjdgl394d96mb";
}; };
buildInputs = [python pkgconfig glib gtk]; buildInputs = [python pkgconfig glib gtk pygobject pycairo];
} }

View File

@ -2064,6 +2064,10 @@ rec {
inherit fetchurl stdenv python; inherit fetchurl stdenv python;
}; };
pycairo = import ../development/python-modules/pycairo {
inherit fetchurl stdenv python pkgconfig cairo x11;
};
pycrypto = import ../development/python-modules/pycrypto { pycrypto = import ../development/python-modules/pycrypto {
inherit fetchurl stdenv python gmp; inherit fetchurl stdenv python gmp;
}; };
@ -2074,7 +2078,7 @@ rec {
}; };
pygtk = import ../development/python-modules/pygtk { pygtk = import ../development/python-modules/pygtk {
inherit fetchurl stdenv python pkgconfig; inherit fetchurl stdenv python pkgconfig pygobject pycairo;
inherit (gtkLibs) glib gtk; inherit (gtkLibs) glib gtk;
}; };