mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
37 lines
1.0 KiB
Nix
37 lines
1.0 KiB
Nix
{ buildGoModule, fetchFromGitHub, installShellFiles, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "karmor";
|
|
version = "0.11.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kubearmor";
|
|
repo = "kubearmor-client";
|
|
rev = "v${version}";
|
|
hash = "sha256-sXiv+aCYuN6GJB+6/G4Z1Oe/fB3OO+jhSvCAFUaiD3g=";
|
|
};
|
|
|
|
vendorHash = "sha256-9yCT9GspX2Tl6dISF8qvDF/Tm2mfwuDH+DrouFmxpj8=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
# integration tests require network access
|
|
doCheck = false;
|
|
|
|
postInstall = ''
|
|
mv $out/bin/{kubearmor-client,karmor}
|
|
installShellCompletion --cmd karmor \
|
|
--bash <($out/bin/karmor completion bash) \
|
|
--fish <($out/bin/karmor completion fish) \
|
|
--zsh <($out/bin/karmor completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A client tool to help manage KubeArmor";
|
|
homepage = "https://kubearmor.io";
|
|
changelog = "https://github.com/kubearmor/kubearmor-client/releases/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ urandom ];
|
|
};
|
|
}
|