kube-linter: 0.6.1 -> 0.6.3

This commit is contained in:
Antoine Labarussias 2023-05-12 14:25:39 +02:00
parent 0a737c52e6
commit 25b0b03f98
No known key found for this signature in database
GPG Key ID: 149D68C2439559EF

View File

@ -2,16 +2,16 @@
buildGoModule rec {
pname = "kube-linter";
version = "0.6.1";
version = "0.6.3";
src = fetchFromGitHub {
owner = "stackrox";
repo = pname;
rev = "v${version}";
sha256 = "sha256-86qLCQH85GSP194nH6lUBvEfuCFs6671dne2zYDwoGc=";
sha256 = "sha256-REUjvIiHASiFQyzU/4n9wPkvaVGmaU/2MBqIBjtWhdY=";
};
vendorHash = "sha256-yPB2t5Sj14uA3QU6OulwQ03LLBZzCfsilBMk1EqAv08=";
vendorHash = "sha256-ATGSIwjmqRuqn+6VTBvjdfXbcABEdaf5HEsaS2o2V3o=";
ldflags = [
"-s" "-w" "-X golang.stackrox.io/kube-linter/internal/version.version=${version}"
@ -19,6 +19,8 @@ buildGoModule rec {
nativeBuildInputs = [ installShellFiles ];
checkFlags = [ "-skip=TestCreateContextsWithIgnorePaths" ];
postInstall = ''
installShellCompletion --cmd kube-linter \
--bash <($out/bin/kube-linter completion bash) \
@ -36,7 +38,7 @@ buildGoModule rec {
homepage = "https://kubelinter.io";
changelog = "https://github.com/stackrox/kube-linter/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ mtesseract stehessel ];
maintainers = with maintainers; [ mtesseract stehessel Intuinewin ];
platforms = platforms.all;
};
}