Skip to content

Commit

Permalink
Merge pull request #194553 from tjni/antibody-darwin-broken
Browse files Browse the repository at this point in the history
antibody: mark broken on darwin
  • Loading branch information
bobby285271 committed Oct 10, 2022
2 parents ed22079 + 32e91ab commit 68812fe
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pkgs/shells/zsh/antibody/default.nix
@@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib, stdenv, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
pname = "antibody";
Expand All @@ -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;
};
}

0 comments on commit 68812fe

Please sign in to comment.