kube-linter: 0.6.0 -> 0.6.1

This commit is contained in:
Antoine Labarussias 2023-04-01 18:05:37 +02:00
parent a676c07bb7
commit e36f29bbfa
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.0";
version = "0.6.1";
src = fetchFromGitHub {
owner = "stackrox";
repo = pname;
rev = version;
sha256 = "sha256-/iwNyThgdXAXu1ulf68+X7nA9wE9jEqN7F5wuT5GMwk=";
rev = "v${version}";
sha256 = "sha256-86qLCQH85GSP194nH6lUBvEfuCFs6671dne2zYDwoGc=";
};
vendorHash = "sha256-jWXR7tHYT15h7QSxinYyPaBs5utUmdeWWm+GPpfwiA4=";
vendorHash = "sha256-yPB2t5Sj14uA3QU6OulwQ03LLBZzCfsilBMk1EqAv08=";
ldflags = [
"-s" "-w" "-X golang.stackrox.io/kube-linter/internal/version.version=${version}"
@ -34,7 +34,7 @@ buildGoModule rec {
meta = with lib; {
description = "A static analysis tool that checks Kubernetes YAML files and Helm charts";
homepage = "https://kubelinter.io";
changelog = "https://github.com/stackrox/kube-linter/releases/tag/${version}";
changelog = "https://github.com/stackrox/kube-linter/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ mtesseract stehessel ];
platforms = platforms.all;