From bc2715162f6f0dddebf05cff24b8260aab5b71c4 Mon Sep 17 00:00:00 2001 From: Quentin JOLY <82603435+QJoly@users.noreply.github.com> Date: Wed, 19 Apr 2023 11:19:17 +0300 Subject: [PATCH 1/2] maintainers: add qjoly --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index de3166443c3..7305520eff3 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -12632,6 +12632,12 @@ fingerprint = "3586 3350 BFEA C101 DB1A 4AF0 1F81 112D 62A9 ADCE"; }]; }; + qjoly = { + email = "github@thoughtless.eu"; + github = "qjoly"; + githubId = 82603435; + name = "Quentin JOLY"; + }; qknight = { email = "js@lastlog.de"; github = "qknight"; From d61e778a8bf7702071cc211e30e3391b2fa821cc Mon Sep 17 00:00:00 2001 From: Quentin JOLY <82603435+QJoly@users.noreply.github.com> Date: Wed, 19 Apr 2023 11:20:11 +0300 Subject: [PATCH 2/2] nova: init at 3.6.2 --- .../networking/cluster/nova/default.nix | 30 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/applications/networking/cluster/nova/default.nix diff --git a/pkgs/applications/networking/cluster/nova/default.nix b/pkgs/applications/networking/cluster/nova/default.nix new file mode 100644 index 00000000000..feabe332a15 --- /dev/null +++ b/pkgs/applications/networking/cluster/nova/default.nix @@ -0,0 +1,30 @@ +{ lib, buildGoModule, fetchFromGitHub }: + +buildGoModule rec { + pname = "nova"; + version = "3.6.2"; + + src = fetchFromGitHub { + owner = "FairwindsOps"; + repo = pname; + rev = version; + hash = "sha256-l2HBjM5DyeWkdAwQGzPp+A3UuXXc0OTizInsVL0k/0I="; + }; + + 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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cba86cf44d7..daa6be3af96 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10297,6 +10297,8 @@ with pkgs; nomad-pack = callPackage ../applications/networking/cluster/nomad-pack { }; + nova = callPackage ../applications/networking/cluster/nova { }; + nomino = callPackage ../tools/misc/nomino { }; nb = callPackage ../tools/misc/nb { };