forked from mirrors/nixpkgs
Merge pull request #99412 from 06kellyjac/init_starboard
starboard: init at 0.4.0
This commit is contained in:
commit
1e70a76996
40
pkgs/applications/networking/cluster/starboard/default.nix
Normal file
40
pkgs/applications/networking/cluster/starboard/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "starboard";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "aquasecurity";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0jvr8lf3wdg6svsfi3fdknqw543495gysznbqhl42w7d3r5krcyw";
|
||||
};
|
||||
|
||||
vendorSha256 = "0p5svprhbnb7mfln1mhaq55w8xnj8v3sinwkysxjzh1g8p36mglp";
|
||||
|
||||
doCheck = false;
|
||||
|
||||
buildFlagsArray = [
|
||||
"-ldflags="
|
||||
"-s"
|
||||
"-w"
|
||||
"-X main.version=v${version}"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Kubernetes-native security tool kit";
|
||||
longDescription = ''
|
||||
Starboard integrates security tools into the Kubernetes environment, so
|
||||
that users can find and view the risks that relate to different resources
|
||||
in a Kubernetes-native way. Starboard provides custom security resources
|
||||
definitions and a Go module to work with a range of existing security
|
||||
tools, as well as a kubectl-compatible command-line tool and an Octant
|
||||
plug-in that make security reports available through familiar Kubernetes
|
||||
tools.
|
||||
'';
|
||||
homepage = src.meta.homepage;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ jk ];
|
||||
};
|
||||
}
|
|
@ -2402,6 +2402,8 @@ in
|
|||
|
||||
stagit = callPackage ../development/tools/stagit { };
|
||||
|
||||
starboard = callPackage ../applications/networking/cluster/starboard { };
|
||||
|
||||
statserial = callPackage ../tools/misc/statserial { };
|
||||
|
||||
step-ca = callPackage ../tools/security/step-ca { };
|
||||
|
|
Loading…
Reference in a new issue