tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
at-spi2-core: fix systemdLibs dependency
Volker Diels-Grabsch
6 months ago
b17f8f14
fc627b6a
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
at
at-spi2-core
package.nix
+3
-3
pkgs/by-name/at/at-spi2-core/package.nix
···
21
libXi,
22
libXext,
23
gnome,
24
-
systemd,
25
-
systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd,
26
}:
27
28
stdenv.mkDerivation rec {
···
62
]
63
++ lib.optionals systemdSupport [
64
# libsystemd is a needed for dbus-broker support
65
-
systemd
66
];
67
68
# In atspi-2.pc dbus-1 glib-2.0
···
21
libXi,
22
libXext,
23
gnome,
24
+
systemdLibs,
25
+
systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemdLibs,
26
}:
27
28
stdenv.mkDerivation rec {
···
62
]
63
++ lib.optionals systemdSupport [
64
# libsystemd is a needed for dbus-broker support
65
+
systemdLibs
66
];
67
68
# In atspi-2.pc dbus-1 glib-2.0