mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
a683a04ebe
Update pkgs/applications/networking/cluster/kubexit/default.nix Co-authored-by: Weijia Wang <9713184+wegank@users.noreply.github.com> Good description (previous one was wrong) Update pkgs/applications/networking/cluster/kubexit/default.nix Co-authored-by: Weijia Wang <9713184+wegank@users.noreply.github.com>
23 lines
619 B
Nix
23 lines
619 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kubexit";
|
|
version = "0.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "karlkfi";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-Kzom+/Xad6SI9czw4xvmTbJ+bNB9mF2oSq37IFn384U=";
|
|
};
|
|
|
|
vendorHash = "sha256-RA3+S5Pad+4mNUgcZ2Z0K0FKA3Za5o1ko049GM4yQQ8=";
|
|
ldflags = [ "-s" "-w" ];
|
|
meta = with lib; {
|
|
description = "Command supervisor for coordinated Kubernetes pod container termination.";
|
|
homepage = "https://github.com/karlkfi/kubexit/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ qjoly ];
|
|
};
|
|
}
|