From c4260c76cf8ffa2dcef8d6d8c97343652c21c59e Mon Sep 17 00:00:00 2001 From: Bailey Hayes Date: Mon, 10 Jan 2022 13:45:08 -0500 Subject: [PATCH] kube3d: add darwin platforms --- pkgs/applications/networking/cluster/kube3d/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/cluster/kube3d/default.nix b/pkgs/applications/networking/cluster/kube3d/default.nix index 861fa2eb97ef..a63a10abdb54 100644 --- a/pkgs/applications/networking/cluster/kube3d/default.nix +++ b/pkgs/applications/networking/cluster/kube3d/default.nix @@ -50,6 +50,6 @@ buildGoModule rec { ''; license = licenses.mit; maintainers = with maintainers; [ kuznero jlesquembre ngerstle jk ]; - platforms = platforms.linux; + platforms = platforms.linux ++ platforms.darwin; }; }