Merge pull request #194553 from tjni/antibody-darwin-broken

antibody: mark broken on darwin
This commit is contained in:
Bobby Rong 2022-10-10 22:46:18 +08:00 committed by GitHub
commit 68812fec55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
};
}