update pygtk
svn path=/nixpkgs/trunk/; revision=8667
This commit is contained in:
parent
4d0fe8a249
commit
e6e620279e
@ -1,11 +1,11 @@
|
||||
{stdenv, fetchurl, python, pkgconfig, glib, gtk}:
|
||||
{stdenv, fetchurl, python, pkgconfig, glib, gtk, pygobject, pycairo}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "pygtk-2.6.1";
|
||||
name = "pygtk-2.10.4";
|
||||
# builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = http://nix.cs.uu.nl/dist/tarballs/pygtk-2.6.1.tar.bz2;
|
||||
md5 = "b4610829e4f57b5538dfa3b8f1fbe026";
|
||||
url = http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.10/pygtk-2.10.4.tar.bz2;
|
||||
sha256 = "1xg8vng42lql29aa5ryva8icc8dwdc7h2y3yn96qjdgl394d96mb";
|
||||
};
|
||||
buildInputs = [python pkgconfig glib gtk];
|
||||
buildInputs = [python pkgconfig glib gtk pygobject pycairo];
|
||||
}
|
||||
|
@ -2064,6 +2064,10 @@ rec {
|
||||
inherit fetchurl stdenv python;
|
||||
};
|
||||
|
||||
pycairo = import ../development/python-modules/pycairo {
|
||||
inherit fetchurl stdenv python pkgconfig cairo x11;
|
||||
};
|
||||
|
||||
pycrypto = import ../development/python-modules/pycrypto {
|
||||
inherit fetchurl stdenv python gmp;
|
||||
};
|
||||
@ -2074,7 +2078,7 @@ rec {
|
||||
};
|
||||
|
||||
pygtk = import ../development/python-modules/pygtk {
|
||||
inherit fetchurl stdenv python pkgconfig;
|
||||
inherit fetchurl stdenv python pkgconfig pygobject pycairo;
|
||||
inherit (gtkLibs) glib gtk;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user