From fe5e3b0304d1b363d13b7bfba2e8ec7a6036af27 Mon Sep 17 00:00:00 2001 From: Janez Podhostnik Date: Sat, 21 Feb 2026 12:20:30 +0100 Subject: [PATCH 1/2] whosthere: un-skip tests --- pkgs/by-name/wh/whosthere/package.nix | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pkgs/by-name/wh/whosthere/package.nix b/pkgs/by-name/wh/whosthere/package.nix index 1555abe0b225..e47c50f7af48 100644 --- a/pkgs/by-name/wh/whosthere/package.nix +++ b/pkgs/by-name/wh/whosthere/package.nix @@ -31,16 +31,6 @@ buildGoModule (finalAttrs: { "main.versionStr=${finalAttrs.version}" ]; - checkFlags = - let - # Skip tests that require filesystem access - skippedTests = [ - "TestResolveLogPath" - "TestStateDir" - ]; - in - [ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ]; - postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' installShellCompletion --cmd whosthere \ --bash <("$out/bin/whosthere" completion bash) \ From 85abe706671cdfbd9af4954633e8555f8b7b9467 Mon Sep 17 00:00:00 2001 From: Janez Podhostnik Date: Sat, 21 Feb 2026 12:21:10 +0100 Subject: [PATCH 2/2] whosthere: switch supported platforms from linux -> unix --- pkgs/by-name/wh/whosthere/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/wh/whosthere/package.nix b/pkgs/by-name/wh/whosthere/package.nix index e47c50f7af48..fac4be2372cc 100644 --- a/pkgs/by-name/wh/whosthere/package.nix +++ b/pkgs/by-name/wh/whosthere/package.nix @@ -55,7 +55,7 @@ buildGoModule (finalAttrs: { homepage = "https://github.com/ramonvermeulen/whosthere"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ matthiasbeyer ]; - platforms = lib.platforms.linux; + platforms = lib.platforms.unix; mainProgram = "whosthere"; }; })