biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / shells / zsh / antibody / default.nix
blob7c1f0eb56cbd323256c6bed053bc58c1c48c0560
1 { lib, stdenv, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "antibody";
5   version = "6.1.1";
7   src = fetchFromGitHub {
8     owner = "getantibody";
9     repo = "antibody";
10     rev = "v${version}";
11     hash = "sha256-If7XAwtg1WqkDkrJ6qYED+DjwHWloPu3P7X9rUd5ikU=";
12   };
14   vendorHash = "sha256-0m+yDo+AMX5tZfOsjsZgulyjB9mVEjy2RfA2sYeqDn0=";
16   doCheck = false;
18   ldflags = [ "-s" "-w" "-X main.version=${version}" ];
20   meta = with lib; {
21     description = "Fastest shell plugin manager";
22     mainProgram = "antibody";
23     homepage = "https://github.com/getantibody/antibody";
24     license = licenses.mit;
25     maintainers = with maintainers; [ Br1ght0ne ];
27     # golang.org/x/sys needs to be updated due to:
28     #
29     #   https://github.com/golang/go/issues/49219
30     #
31     # but this package is no longer maintained.
32     #
33     broken = stdenv.hostPlatform.isDarwin;
34   };