summaryrefslogtreecommitdiffstats
path: root/pkgs/applications
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2020-11-23 16:30:02 +0100
committerGitHub <noreply@github.com>2020-11-23 16:30:02 +0100
commit0c56403facc42ca2f3f219942b9cac84a0780f68 (patch)
tree36652385d605d35aab25d7fe06d64812c0f9eaab /pkgs/applications
parent0c07eab0e3e2ba54347449038877b28e8b8b7c01 (diff)
parentfb3f81ba12ac1b5db9b2a30b873d3663dfeb8574 (diff)
Merge pull request #103745 from 06kellyjac/starboard_octant_plugin
starboard-octant-plugin: init at 0.4.0
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/cluster/octant/plugins/starboard-octant-plugin.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/octant/plugins/starboard-octant-plugin.nix b/pkgs/applications/networking/cluster/octant/plugins/starboard-octant-plugin.nix
new file mode 100644
index 000000000000..df3821744a4b
--- /dev/null
+++ b/pkgs/applications/networking/cluster/octant/plugins/starboard-octant-plugin.nix
@@ -0,0 +1,26 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+ pname = "starboard-octant-plugin";
+ version = "0.4.0";
+
+ src = fetchFromGitHub {
+ owner = "aquasecurity";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0rqlks2f7cwx14xynaq95dxlzh18rsdz1w8a2ia24lvfwf8b95rf";
+ };
+
+ vendorSha256 = "1fxb97wf69phhqwqg86wcx4dkzh67snzl1xfmj4wvfq16b9xj11j";
+
+ meta = with lib; {
+ description = "Octant plugin for viewing Starboard security information";
+ longDescription = ''
+ This is an Octant plugin for Starboard which provides visibility into vulnerability assessment reports for
+ Kubernetes workloads stored as custom security resources.
+ '';
+ homepage = src.meta.homepage;
+ license = licenses.asl20;
+ maintainers = with maintainers; [ jk ];
+ };
+}