mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-19 22:30:23 +00:00
nova: init at 3.6.2
This commit is contained in:
30
pkgs/applications/networking/cluster/nova/default.nix
Normal file
30
pkgs/applications/networking/cluster/nova/default.nix
Normal file
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user