From ab59037ef4470934205ab968847de2f91a8dc22b Mon Sep 17 00:00:00 2001 From: Charlie Kenney Date: Tue, 2 Apr 2024 15:06:57 -0700 Subject: [PATCH] kns: allow building on any unix platform This package is fine to build on both Linux and macOS at the least. --- pkgs/applications/networking/cluster/kns/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/cluster/kns/default.nix b/pkgs/applications/networking/cluster/kns/default.nix index 522209d59183..d79eeef26692 100644 --- a/pkgs/applications/networking/cluster/kns/default.nix +++ b/pkgs/applications/networking/cluster/kns/default.nix @@ -33,6 +33,6 @@ stdenvNoCC.mkDerivation { homepage = "https://github.com/blendle/kns"; license = licenses.isc; maintainers = with maintainers; [ mmlb ]; - platforms = platforms.linux; + platforms = platforms.unix; }; }