3
0
Fork 0
forked from mirrors/nixpkgs

gnome3.glade: enable libgladepython

This commit is contained in:
Jan Tojnar 2017-12-18 23:43:00 +01:00
parent c6e9acc3eb
commit f5d7b05f1e
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -1,4 +1,4 @@
{ stdenv, intltool, fetchurl, python
{ stdenv, intltool, fetchurl, python3
, pkgconfig, gtk3, glib, gobjectIntrospection
, wrapGAppsHook, itstool, libxml2, docbook_xsl
, gnome3, gdk_pixbuf, libxslt }:
@ -9,9 +9,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
pkgconfig intltool itstool wrapGAppsHook docbook_xsl libxslt gobjectIntrospection
];
buildInputs = [ gtk3 glib libxml2 python
gnome3.gsettings_desktop_schemas
gdk_pixbuf gnome3.defaultIconTheme ];
buildInputs = [
gtk3 glib libxml2 python3 python3.pkgs.pygobject3
gnome3.gsettings_desktop_schemas
gdk_pixbuf gnome3.defaultIconTheme
];
enableParallelBuilding = true;