about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-10-10 22:46:18 +0800
committerGitHub <noreply@github.com>2022-10-10 22:46:18 +0800
commit68812fec554ce695096e2b52940aeb1b4a2891a4 (patch)
tree16ea37e3665e8fcdcddbad1062ce7bf517ac6276 /pkgs/shells
parented22079db4e8ebfcabfa63d1e2c32a8dd96db857 (diff)
parent32e91ab1de0fa2b6cf5229d94939dda5beec3899 (diff)
Merge pull request #194553 from tjni/antibody-darwin-broken
antibody: mark broken on darwin
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/zsh/antibody/default.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/pkgs/shells/zsh/antibody/default.nix b/pkgs/shells/zsh/antibody/default.nix
index 1db4321259df2..0ecbb9bfdb6f4 100644
--- a/pkgs/shells/zsh/antibody/default.nix
+++ b/pkgs/shells/zsh/antibody/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildGoModule, fetchFromGitHub }:
+{ lib, stdenv, buildGoModule, fetchFromGitHub }:
 
 buildGoModule rec {
   pname = "antibody";
@@ -22,5 +22,13 @@ buildGoModule rec {
     homepage = "https://github.com/getantibody/antibody";
     license = licenses.mit;
     maintainers = with maintainers; [ Br1ght0ne ];
+
+    # golang.org/x/sys needs to be updated due to:
+    #
+    #   https://github.com/golang/go/issues/49219
+    #
+    # but this package is no longer maintained.
+    #
+    broken = stdenv.isDarwin;
   };
 }