nixpkgs/pkgs/applications/networking/cluster/kubectl-doctor/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, fetchpatch }:
2021-03-16 09:56:12 +01:00
buildGoModule rec {
pname = "kubectl-doctor";
version = "0.3.1";
2021-03-16 09:56:12 +01:00
src = fetchFromGitHub {
owner = "emirozer";
repo = pname;
rev = version;
sha256 = "sha256-yp5OfSDxIASiCgISUVNxfe3dsLukgIoHARVPALIaQfY=";
2021-03-16 09:56:12 +01:00
};
patches = [
(fetchpatch {
# https://github.com/emirozer/kubectl-doctor/pull/21
name = "go-1.19-client-go-0.25.patch";
url = "https://github.com/emirozer/kubectl-doctor/commit/a987ef58063e305409034af280d688a11682dbb9.patch";
sha256 = "sha256-NQd/WxUfYwBDowhnoUWaOV8k7msiOhff3Bjux+a9R9E=";
})
];
vendorSha256 = "sha256-qhffg/s1RZFNW0nHLbJ89yqLzdC72ARXdbSfMLJK2pQ=";
2021-03-16 09:56:12 +01:00
postInstall = ''
mv $out/bin/{cmd,kubectl-doctor}
'';
meta = with lib; {
description = "kubectl cluster triage plugin for k8s";
homepage = "https://github.com/emirozer/kubectl-doctor";
changelog = "https://github.com/emirozer/kubectl-doctor/releases/tag/v${version}";
license = licenses.asl20;
maintainers = [ maintainers.zimbatm ];
};
}