anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / networking / cluster / kubectl-evict-pod / default.nix
blobac1f1cbf0b68178f676b22b7d3ce9e1957f09b49
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "kubectl-evict-pod";
5   version = "0.0.14";
7   src = fetchFromGitHub {
8     owner = "rajatjindal";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-Z1NIueonjyO2GHulBbXbsQtX7V/Z95GUoZv9AqjLIR0=";
12   };
14   vendorHash = null;
16   meta = with lib; {
17     description = "This plugin evicts the given pod and is useful for testing pod disruption budget rules";
18     mainProgram = "kubectl-evict-pod";
19     homepage    = "https://github.com/rajatjindal/kubectl-evict-pod";
20     license     = licenses.asl20;
21     maintainers = [ maintainers.j4m3s ];
22   };