mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
53 lines
1.3 KiB
Nix
53 lines
1.3 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, packr, ... }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kubernetes-polaris";
|
|
version = "7.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FairwindsOps";
|
|
repo = "polaris";
|
|
rev = version;
|
|
sha256 = "sha256-PXyJpzmGTwSthaN0nVex8B7WpCxX7QxqRDoIJERSK6o=";
|
|
};
|
|
|
|
vendorHash = "sha256-SwHJRw75pP1zwi9ZMfUfcXt788pURM1KSbTNQF6XVqk=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.Version=${version}"
|
|
"-X main.Commit=${version}"
|
|
];
|
|
|
|
preBuild = ''
|
|
${packr}/bin/packr2 -v --ignore-imports
|
|
'';
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd polaris \
|
|
--bash <($out/bin/polaris completion bash) \
|
|
--fish <($out/bin/polaris completion fish) \
|
|
--zsh <($out/bin/polaris completion zsh)
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
|
|
$out/bin/polaris help
|
|
$out/bin/polaris version | grep 'Polaris version:${version}'
|
|
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Validate and remediate Kubernetes resources to ensure configuration best practices are followed";
|
|
homepage = "https://www.fairwinds.com/polaris";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ longer ];
|
|
};
|
|
}
|