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 , pkgconfig, gtk3, glib, gobjectIntrospection
, wrapGAppsHook, itstool, libxml2, docbook_xsl , wrapGAppsHook, itstool, libxml2, docbook_xsl
, gnome3, gdk_pixbuf, libxslt }: , gnome3, gdk_pixbuf, libxslt }:
@ -9,9 +9,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ nativeBuildInputs = [
pkgconfig intltool itstool wrapGAppsHook docbook_xsl libxslt gobjectIntrospection pkgconfig intltool itstool wrapGAppsHook docbook_xsl libxslt gobjectIntrospection
]; ];
buildInputs = [ gtk3 glib libxml2 python buildInputs = [
gnome3.gsettings_desktop_schemas gtk3 glib libxml2 python3 python3.pkgs.pygobject3
gdk_pixbuf gnome3.defaultIconTheme ]; gnome3.gsettings_desktop_schemas
gdk_pixbuf gnome3.defaultIconTheme
];
enableParallelBuilding = true; enableParallelBuilding = true;