mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-11 06:34:13 +00:00
![stuebinm](/assets/img/avatar_default.png)
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, fetchpatch }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kubectl-doctor";
|
|
version = "0.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "emirozer";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-yp5OfSDxIASiCgISUVNxfe3dsLukgIoHARVPALIaQfY=";
|
|
};
|
|
|
|
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=";
|
|
})
|
|
];
|
|
|
|
vendorHash = "sha256-qhffg/s1RZFNW0nHLbJ89yqLzdC72ARXdbSfMLJK2pQ=";
|
|
|
|
postInstall = ''
|
|
mv $out/bin/{cmd,kubectl-doctor}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "kubectl cluster triage plugin for k8s";
|
|
mainProgram = "kubectl-doctor";
|
|
homepage = "https://github.com/emirozer/kubectl-doctor";
|
|
changelog = "https://github.com/emirozer/kubectl-doctor/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.zimbatm ];
|
|
};
|
|
}
|