Skip to content

Commit

Permalink
at-spi2-core: fix darwin dylib install_name
Browse files Browse the repository at this point in the history
  • Loading branch information
LnL7 committed Aug 18, 2018
1 parent a71a9ea commit abe2ab1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/development/libraries/at-spi2-core/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
, libX11
, libXtst # at-spi2-core can be build without X support, but due it is a client-side library, GUI-less usage is a very rare case
, libXi
, fixDarwinDylibNames

, gnome3 # To pass updateScript
}:
Expand All @@ -27,7 +28,9 @@ stdenv.mkDerivation rec {

outputs = [ "out" "dev" ];

nativeBuildInputs = [ meson ninja pkgconfig gobjectIntrospection ];
nativeBuildInputs = [ meson ninja pkgconfig gobjectIntrospection ]
# Fixup rpaths because of meson, remove with meson-0.47
++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
buildInputs = [ dbus glib libX11 libXtst libXi ];

doCheck = false; # fails with "AT-SPI: Couldn't connect to accessibility bus. Is at-spi-bus-launcher running?"
Expand Down

0 comments on commit abe2ab1

Please sign in to comment.