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 16:48:21 +0200
committerGitHub <noreply@github.com>2023-09-12 16:48:21 +0200
commite657d378d936fe1a42ad762a017be7e40819d9b2 (patch)
tree1ef4b90fc9a716152f6f1d8ad0de4951ac8773f8 /pkgs/applications/networking/cluster/rke2/default.nix
parent02f844470b7e2acd6604e8fd42c2d4e1df62aeb5 (diff)
parentaa23d4255d5f3a6c4b901afb1448da2221ac96f3 (diff)
Merge pull request #254722 from wegank/rke2-linux
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 8c5aad1fd485a..04271e7798e9d 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;
   };
 }