dbus: Do not propagate expat
The propagation was introduced in 7d9607f151 without any context.
But the library is only used by dbus-daemon so it does not make sense to propagate it.
This commit is contained in:
@@ -64,24 +64,22 @@ stdenv.mkDerivation rec {
|
||||
xmlto
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
buildInputs = [
|
||||
expat
|
||||
]
|
||||
++ lib.optionals x11Support (
|
||||
with xorg;
|
||||
[
|
||||
libX11
|
||||
libICE
|
||||
libSM
|
||||
]
|
||||
)
|
||||
++ lib.optional enableSystemd systemdMinimal
|
||||
++ lib.optionals stdenv.hostPlatform.isLinux [
|
||||
audit
|
||||
libapparmor
|
||||
];
|
||||
|
||||
buildInputs =
|
||||
lib.optionals x11Support (
|
||||
with xorg;
|
||||
[
|
||||
libX11
|
||||
libICE
|
||||
libSM
|
||||
]
|
||||
)
|
||||
++ lib.optional enableSystemd systemdMinimal
|
||||
++ lib.optionals stdenv.hostPlatform.isLinux [
|
||||
audit
|
||||
libapparmor
|
||||
];
|
||||
# ToDo: optional selinux?
|
||||
|
||||
__darwinAllowLocalNetworking = true;
|
||||
|
||||
Reference in New Issue
Block a user