add pygobject
svn path=/nixpkgs/trunk/; revision=8665
This commit is contained in:
parent
2930ebada7
commit
8a15f2a72a
11
pkgs/development/python-modules/pygobject/default.nix
Normal file
11
pkgs/development/python-modules/pygobject/default.nix
Normal 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];
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user