mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 05:08:49 +00:00
at-spi2-core: use availableOn
Commit 221f2fe693
used `isLinux` to
control systemd inclusion; let's use `availableOn` for more accurate
results.
This commit is contained in:
parent
83a39a0abe
commit
e0caa91427
@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
|
||||
libXi
|
||||
# libXext is a transitive dependency of libXi
|
||||
libXext
|
||||
] ++ lib.optionals stdenv.hostPlatform.isLinux [
|
||||
] ++ lib.optionals (lib.meta.availableOn stdenv.hostPlatform systemd) [
|
||||
# libsystemd is a needed for dbus-broker support
|
||||
systemd
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user