2010-10-18 15:55:20 -07:00
|
|
|
{ stdenv, fetchurl, python, pkgconfig, glib }:
|
2007-05-13 13:12:13 -07:00
|
|
|
|
2010-10-18 15:55:20 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2013-03-06 14:25:46 -08:00
|
|
|
name = "pygobject-2.28.6";
|
2010-10-18 15:55:20 -07:00
|
|
|
|
2007-05-13 13:12:13 -07:00
|
|
|
src = fetchurl {
|
2013-03-06 14:25:46 -08:00
|
|
|
url = "http://ftp.gnome.org/pub/GNOME/sources/pygobject/2.28/${name}.tar.xz";
|
|
|
|
sha256 = "1f5dfxjnil2glfwxnqr14d2cjfbkghsbsn8n04js2c2icr7iv2pv";
|
2007-05-13 13:12:13 -07:00
|
|
|
};
|
|
|
|
|
2010-10-18 15:55:20 -07:00
|
|
|
configureFlags = "--disable-introspection";
|
|
|
|
|
|
|
|
buildInputs = [ python pkgconfig glib ];
|
2010-09-03 06:18:38 -07:00
|
|
|
|
2010-10-18 15:55:20 -07:00
|
|
|
meta = {
|
|
|
|
homepage = http://live.gnome.org/PyGObject;
|
|
|
|
description = "Python bindings for Glib";
|
|
|
|
};
|
2007-05-13 13:12:13 -07:00
|
|
|
}
|