gnome-shell: add missing python3 deps for gnome-shell-extension-tool
Fix #14651
This commit is contained in:
parent
7f41dca05a
commit
7549261797
@ -1,5 +1,5 @@
|
|||||||
{ fetchurl, stdenv, pkgconfig, gnome3, json_glib, libcroco, intltool, libsecret
|
{ fetchurl, stdenv, pkgconfig, gnome3, json_glib, libcroco, intltool, libsecret
|
||||||
, python3, libsoup, polkit, clutter, networkmanager, docbook_xsl, docbook_xsl_ns, at_spi2_core
|
, python3Packages, libsoup, polkit, clutter, networkmanager, docbook_xsl , docbook_xsl_ns, at_spi2_core
|
||||||
, libstartup_notification, telepathy_glib, telepathy_logger, libXtst, p11_kit, unzip
|
, libstartup_notification, telepathy_glib, telepathy_logger, libXtst, p11_kit, unzip
|
||||||
, sqlite, libgweather, libcanberra_gtk3
|
, sqlite, libgweather, libcanberra_gtk3
|
||||||
, libpulseaudio, libical, libtool, nss, gobjectIntrospection, gstreamer, makeWrapper
|
, libpulseaudio, libical, libtool, nss, gobjectIntrospection, gstreamer, makeWrapper
|
||||||
@ -15,16 +15,18 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = with gnome3;
|
buildInputs = with gnome3;
|
||||||
[ gsettings_desktop_schemas gnome_keyring gnome-menus glib gcr json_glib accountsservice
|
[ gsettings_desktop_schemas gnome_keyring gnome-menus glib gcr json_glib accountsservice
|
||||||
libcroco intltool libsecret pkgconfig python3 libsoup polkit libcanberra gdk_pixbuf librsvg
|
libcroco intltool libsecret pkgconfig libsoup polkit libcanberra gdk_pixbuf librsvg
|
||||||
clutter networkmanager libstartup_notification telepathy_glib docbook_xsl docbook_xsl_ns
|
clutter networkmanager libstartup_notification telepathy_glib docbook_xsl docbook_xsl_ns
|
||||||
libXtst p11_kit networkmanagerapplet gjs mutter libpulseaudio caribou evolution_data_server
|
libXtst p11_kit networkmanagerapplet gjs mutter libpulseaudio caribou evolution_data_server
|
||||||
libical libtool nss gobjectIntrospection gtk gstreamer makeWrapper gdm
|
libical libtool nss gtk gstreamer makeWrapper gdm
|
||||||
libcanberra_gtk3 gnome_control_center
|
libcanberra_gtk3 gnome_control_center
|
||||||
defaultIconTheme sqlite gnome3.gnome-bluetooth
|
defaultIconTheme sqlite gnome3.gnome-bluetooth
|
||||||
libgweather # not declared at build time, but typelib is needed at runtime
|
libgweather # not declared at build time, but typelib is needed at runtime
|
||||||
gnome3.gnome-clocks # schemas needed
|
gnome3.gnome-clocks # schemas needed
|
||||||
at_spi2_core upower ibus gnome_session gnome_desktop telepathy_logger gnome3.gnome_settings_daemon ];
|
at_spi2_core upower ibus gnome_session gnome_desktop telepathy_logger gnome3.gnome_settings_daemon ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ python3Packages.pygobject3 python3Packages.python gobjectIntrospection ];
|
||||||
|
|
||||||
installFlags = [ "keysdir=$(out)/share/gnome-control-center/keybindings" ];
|
installFlags = [ "keysdir=$(out)/share/gnome-control-center/keybindings" ];
|
||||||
|
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
@ -40,6 +42,9 @@ stdenv.mkDerivation rec {
|
|||||||
--prefix XDG_DATA_DIRS : "${gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS" \
|
--prefix XDG_DATA_DIRS : "${gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS" \
|
||||||
--suffix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
--suffix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
||||||
|
|
||||||
|
wrapProgram "$out/bin/gnome-shell-extension-tool" \
|
||||||
|
--prefix PYTHONPATH : "${python3Packages.pygobject3}/${python3Packages.python.sitePackages}:$PYTHONPATH"
|
||||||
|
|
||||||
wrapProgram "$out/libexec/gnome-shell-calendar-server" \
|
wrapProgram "$out/libexec/gnome-shell-calendar-server" \
|
||||||
--prefix XDG_DATA_DIRS : "${evolution_data_server}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"
|
--prefix XDG_DATA_DIRS : "${evolution_data_server}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user