about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/rke2/default.nix
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-09-12 15:17:15 +0200
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-09-12 15:17:15 +0200
commitaa23d4255d5f3a6c4b901afb1448da2221ac96f3 (patch)
treeec7ae6375936f2a4833fcf22ad1dbfd271264ca3 /pkgs/applications/networking/cluster/rke2/default.nix
parentc49f338aeb7dee8ac3c7d1be3dbf0a6be996fd31 (diff)
rke2: mark as broken on darwin
Diffstat (limited to 'pkgs/applications/networking/cluster/rke2/default.nix')
-rw-r--r--pkgs/applications/networking/cluster/rke2/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/networking/cluster/rke2/default.nix b/pkgs/applications/networking/cluster/rke2/default.nix
index 7aa0efe45f8fa..af4feee0307f1 100644
--- a/pkgs/applications/networking/cluster/rke2/default.nix
+++ b/pkgs/applications/networking/cluster/rke2/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildGoModule, fetchFromGitHub }:
+{ lib, stdenv, buildGoModule, fetchFromGitHub }:
 
 buildGoModule rec {
   pname = "rke2";
@@ -36,5 +36,6 @@ buildGoModule rec {
     license = licenses.asl20;
     maintainers = with maintainers; [ zimbatm zygot ];
     mainProgram = "rke2";
+    broken = stdenv.isDarwin;
   };
 }