From acdb256910f6b48f7d40465bf3f18ccc4e8bd81e Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Mon, 20 Jan 2020 19:16:21 +0100 Subject: [PATCH] at-spi2-core: propagate glib and dbus Both libraries are in the pkgconfig `Requires` field and are needed by all downstream dependencies of this library. --- pkgs/development/libraries/at-spi2-core/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/at-spi2-core/default.nix b/pkgs/development/libraries/at-spi2-core/default.nix index 84a8a6b9026..cdb172d0d21 100644 --- a/pkgs/development/libraries/at-spi2-core/default.nix +++ b/pkgs/development/libraries/at-spi2-core/default.nix @@ -30,7 +30,9 @@ stdenv.mkDerivation rec { outputs = [ "out" "dev" ]; nativeBuildInputs = [ meson ninja pkgconfig gobject-introspection makeWrapper ]; - buildInputs = [ dbus glib libX11 libXtst libXi ]; + buildInputs = [ libX11 libXtst libXi ]; + # In atspi-2.pc dbus-1 glib-2.0 + propagatedBuildInputs = [ dbus glib ]; doCheck = false; # fails with "AT-SPI: Couldn't connect to accessibility bus. Is at-spi-bus-launcher running?"