1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-17 00:10:30 +00:00

gtk3: make GTK depend on gsettings_desktop_schemas

So dconf settings will be applied to GTK3 programs even if running outside of Gnome. See #31293
This commit is contained in:
Jan Tojnar 2017-11-24 09:49:18 +03:00 committed by gnidorah
parent 1af0254fc7
commit 8e03cda691

View file

@ -4,7 +4,7 @@
, waylandSupport ? stdenv.isLinux, wayland, wayland-protocols
, xineramaSupport ? stdenv.isLinux
, cupsSupport ? stdenv.isLinux, cups ? null
, darwin
, darwin, gnome3
}:
assert cupsSupport -> cups != null;
@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
buildInputs = [ libxkbcommon epoxy json_glib ];
propagatedBuildInputs = with xorg; with stdenv.lib;
[ expat glib cairo pango gdk_pixbuf atk at_spi2_atk
[ expat glib cairo pango gdk_pixbuf atk at_spi2_atk gnome3.gsettings_desktop_schemas
libXrandr libXrender libXcomposite libXi libXcursor libSM libICE ]
++ optionals waylandSupport [ wayland wayland-protocols ]
++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ AppKit Cocoa ])