From 972da7836895be2218b8f5d235c22a7dfbacdbf4 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sat, 3 May 2025 18:51:36 +0200 Subject: [PATCH] spacecookie: enable networking on darwin --- pkgs/development/haskell-modules/configuration-darwin.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-darwin.nix b/pkgs/development/haskell-modules/configuration-darwin.nix index ad2083f2e7bb..95acd06fd899 100644 --- a/pkgs/development/haskell-modules/configuration-darwin.nix +++ b/pkgs/development/haskell-modules/configuration-darwin.nix @@ -20,6 +20,10 @@ self: super: __darwinAllowLocalNetworking = true; }); + spacecookie = super.spacecookie.overrideAttrs (_: { + __darwinAllowLocalNetworking = true; + }); + streaming-commons = super.streaming-commons.overrideAttrs (_: { __darwinAllowLocalNetworking = true; });