From 99ca18373e120d19db1a47834cb2a9d4ba707bb8 Mon Sep 17 00:00:00 2001 From: Jack Rosenberg Date: Fri, 24 Apr 2026 14:43:25 +0200 Subject: [PATCH] fosrl-newt: mark broken for darwin Co-authored-by: Michael Daniels --- pkgs/by-name/fo/fosrl-newt/package.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/by-name/fo/fosrl-newt/package.nix b/pkgs/by-name/fo/fosrl-newt/package.nix index 61c667b1a7f2..4e7099f57b9f 100644 --- a/pkgs/by-name/fo/fosrl-newt/package.nix +++ b/pkgs/by-name/fo/fosrl-newt/package.nix @@ -4,6 +4,7 @@ fetchFromGitHub, versionCheckHook, nix-update-script, + stdenv, }: buildGoModule (finalAttrs: { @@ -34,6 +35,10 @@ buildGoModule (finalAttrs: { passthru.updateScript = nix-update-script { }; meta = { + # Networking failures in tests, even with __darwinAllowLocalNetworking on + # and sandbox disabled. + # Unclear as of 2026-04-24 whether the program works if tests are disabled. + broken = stdenv.hostPlatform.isDarwin; description = "Tunneling client for Pangolin"; homepage = "https://github.com/fosrl/newt"; changelog = "https://github.com/fosrl/newt/releases/tag/${finalAttrs.src.tag}";