From 32e91ab1de0fa2b6cf5229d94939dda5beec3899 Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Wed, 5 Oct 2022 00:29:01 -0700 Subject: [PATCH] antibody: mark broken on darwin --- pkgs/shells/zsh/antibody/default.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/shells/zsh/antibody/default.nix b/pkgs/shells/zsh/antibody/default.nix index 1db4321259d..0ecbb9bfdb6 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; }; }