2020-11-13 21:46:24 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "starboard-octant-plugin";
|
2020-12-14 09:50:33 +00:00
|
|
|
version = "0.7.1";
|
2020-11-13 21:46:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "aquasecurity";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-12-14 09:50:33 +00:00
|
|
|
sha256 = "11c8znbijhvxl2mas205mb18sqw868l6c86ah5hlkqh3niq2gmv3";
|
2020-11-13 21:46:24 +00:00
|
|
|
};
|
|
|
|
|
2020-12-14 09:50:33 +00:00
|
|
|
vendorSha256 = "0rmynfm5afjxc2lxy2rh9y6zhdd2q95wji2q8hcz78zank43rkcq";
|
2020-11-13 21:46:24 +00:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|