2023-04-19 08:20:11 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "nova";
|
2023-05-16 08:43:49 +00:00
|
|
|
version = "3.6.4";
|
2023-04-19 08:20:11 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "FairwindsOps";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2023-05-16 08:43:49 +00:00
|
|
|
hash = "sha256-6gTrBogMvM7X6PFthG+c8N9wXoNHwp0wHjGVKjiHJJY=";
|
2023-04-19 08:20:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
vendorHash = "sha256-YvYfSb2ZC86S2osFRG7Ep9nrgYJV0tB8fBgZQZ07t2U=";
|
|
|
|
|
|
|
|
ldflags = [ "-X main.version=${version}" "-s" "-w" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Find outdated or deprecated Helm charts running in your cluster";
|
|
|
|
longDescription = ''
|
|
|
|
Nova scans your cluster for installed Helm charts, then
|
|
|
|
cross-checks them against all known Helm repositories. If it
|
|
|
|
finds an updated version of the chart you're using, or notices
|
|
|
|
your current version is deprecated, it will let you know.
|
|
|
|
'';
|
|
|
|
homepage = "https://nova.docs.fairwinds.com/";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ qjoly ];
|
|
|
|
};
|
|
|
|
}
|