about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorTheodore Ni <3806110+tjni@users.noreply.github.com>2022-10-05 00:29:01 -0700
committerTheodore Ni <3806110+tjni@users.noreply.github.com>2022-10-05 00:29:01 -0700
commit32e91ab1de0fa2b6cf5229d94939dda5beec3899 (patch)
tree449ffadc716e3c9a0d1d3f8c299c97190a7a557a /pkgs/shells
parentbcf1085724f62e860f2cddd2c6eaee7dceb22888 (diff)
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;
   };
 }