summary refs log tree commit diff
path: root/pkgs/development/tools/kubepug/default.nix
blob: fc6f9c30daa093688af979d85098774e8258a567 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "kubepug";
  version = "1.7.1";

  src = fetchFromGitHub {
    owner = "kubepug";
    repo = "kubepug";
    rev = "v${version}";
    hash = "sha256-VNxaYQy81U0JWd6KS0jCvMexpyWL4v1cKpjxLRkxBLE=";
  };

  vendorHash = "sha256-HVsaQBd7fSZp2fOpOOmlDhYrHcHqWKiYWPFLQX0azEw=";

  ldflags = [
    "-s"
    "-w"
    "-X sigs.k8s.io/release-utils/version.gitVersion=${version}"
  ];

  meta = with lib; {
    description = "Checks a Kubernetes cluster for objects using deprecated API versions";
    homepage = "https://github.com/kubepug/kubepug";
    license = licenses.asl20;
    maintainers = with maintainers; [ mausch ];
  };
}