add pygobject

svn path=/nixpkgs/trunk/; revision=8665
This commit is contained in:
Armijn Hemel 2007-05-13 20:12:13 +00:00
parent 2930ebada7
commit 8a15f2a72a
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,11 @@
{stdenv, fetchurl, python, pkgconfig, glib}:
stdenv.mkDerivation {
name = "pygobject-2.12.3";
src = fetchurl {
url = http://ftp.gnome.org/pub/GNOME/sources/pygobject/2.12/pygobject-2.12.3.tar.bz2;
sha256 = "0hfsd7ln7j67w0vyrszic9b3d97gddad1y9arjw8i2b6h411xa7g";
};
buildInputs = [python pkgconfig glib];
}

View File

@ -2068,6 +2068,11 @@ rec {
inherit fetchurl stdenv python gmp;
};
pygobject = import ../development/python-modules/pygobject {
inherit fetchurl stdenv python pkgconfig;
inherit (gtkLibs) glib;
};
pygtk = import ../development/python-modules/pygtk {
inherit fetchurl stdenv python pkgconfig;
inherit (gtkLibs) glib gtk;