From 52f30bac311a0ce5b782578c540f09073383a7d2 Mon Sep 17 00:00:00 2001 From: David McFarland Date: Thu, 11 Jul 2024 23:17:11 -0300 Subject: [PATCH] marksman: allow local networking in darwin sandbox This is required for the tests to pass. --- pkgs/development/tools/marksman/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/tools/marksman/default.nix b/pkgs/development/tools/marksman/default.nix index 0cc85cf91bc7..4a0f4ca10a7a 100644 --- a/pkgs/development/tools/marksman/default.nix +++ b/pkgs/development/tools/marksman/default.nix @@ -20,6 +20,8 @@ buildDotnetModule rec { projectFile = "Marksman/Marksman.fsproj"; dotnetBuildFlags = [ "-p:VersionString=${version}" ]; + __darwinAllowLocalNetworking = true; + doCheck = true; testProjectFile = "Tests/Tests.fsproj";