tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
at-spi2-core: fix darwin dylib install_name
Daiderd Jordan
7 years ago
abe2ab15
a71a9eab
+4
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
at-spi2-core
default.nix
+4
-1
pkgs/development/libraries/at-spi2-core/default.nix
reviewed
···
11
11
, libX11
12
12
, 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
13
13
, libXi
14
14
+
, fixDarwinDylibNames
14
15
15
16
, gnome3 # To pass updateScript
16
17
}:
···
27
28
28
29
outputs = [ "out" "dev" ];
29
30
30
30
-
nativeBuildInputs = [ meson ninja pkgconfig gobjectIntrospection ];
31
31
+
nativeBuildInputs = [ meson ninja pkgconfig gobjectIntrospection ]
32
32
+
# Fixup rpaths because of meson, remove with meson-0.47
33
33
+
++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
31
34
buildInputs = [ dbus glib libX11 libXtst libXi ];
32
35
33
36
doCheck = false; # fails with "AT-SPI: Couldn't connect to accessibility bus. Is at-spi-bus-launcher running?"