antibody: mark broken on darwin

+9 -1
+9 -1
pkgs/shells/zsh/antibody/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub }: 2 3 buildGoModule rec { 4 pname = "antibody"; ··· 22 homepage = "https://github.com/getantibody/antibody"; 23 license = licenses.mit; 24 maintainers = with maintainers; [ Br1ght0ne ]; 25 }; 26 }
··· 1 + { lib, stdenv, buildGoModule, fetchFromGitHub }: 2 3 buildGoModule rec { 4 pname = "antibody"; ··· 22 homepage = "https://github.com/getantibody/antibody"; 23 license = licenses.mit; 24 maintainers = with maintainers; [ Br1ght0ne ]; 25 + 26 + # golang.org/x/sys needs to be updated due to: 27 + # 28 + # https://github.com/golang/go/issues/49219 29 + # 30 + # but this package is no longer maintained. 31 + # 32 + broken = stdenv.isDarwin; 33 }; 34 }