summary refs log tree commit diff
diff options
context:
space:
mode:
authorRandy Eckenrode <randy@largeandhighquality.com>2023-05-20 12:07:36 -0400
committerRandy Eckenrode <randy@largeandhighquality.com>2023-05-25 21:11:41 -0400
commita98aaa50313a80115157aeb3ee986366c473adaf (patch)
treeffa45ce4216b97845a6fe0f1d624789cc3793f78
parent255911fcb9a8709d5e36ea583b460435cd35279c (diff)
downloadnixpkgs-a98aaa50313a80115157aeb3ee986366c473adaf.tar
nixpkgs-a98aaa50313a80115157aeb3ee986366c473adaf.tar.gz
nixpkgs-a98aaa50313a80115157aeb3ee986366c473adaf.tar.bz2
nixpkgs-a98aaa50313a80115157aeb3ee986366c473adaf.tar.lz
nixpkgs-a98aaa50313a80115157aeb3ee986366c473adaf.tar.xz
nixpkgs-a98aaa50313a80115157aeb3ee986366c473adaf.tar.zst
nixpkgs-a98aaa50313a80115157aeb3ee986366c473adaf.zip
dbus: fix build with Darwin sandbox enabled
-rw-r--r--pkgs/development/libraries/dbus/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/dbus/default.nix b/pkgs/development/libraries/dbus/default.nix
index f984f331030..52928e1005f 100644
--- a/pkgs/development/libraries/dbus/default.nix
+++ b/pkgs/development/libraries/dbus/default.nix
@@ -67,6 +67,8 @@ stdenv.mkDerivation rec {
     ++ lib.optionals stdenv.isLinux [ audit libapparmor ];
   # ToDo: optional selinux?
 
+  __darwinAllowLocalNetworking = true;
+
   configureFlags = [
     "--enable-user-session"
     "--enable-xml-docs"