Merge pull request #123539 from 06kellyjac/starboard-octant-plugin

starboard-octant-plugin: 0.10.0 -> 0.10.3
wip/little-gl
Sandro 3 years ago committed by GitHub
commit a60df8832d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      pkgs/applications/networking/cluster/octant/plugins/starboard-octant-plugin.nix

@ -2,26 +2,29 @@
buildGoModule rec {
pname = "starboard-octant-plugin";
version = "0.10.0";
version = "0.10.3";
src = fetchFromGitHub {
owner = "aquasecurity";
repo = pname;
rev = "v${version}";
sha256 = "sha256-3BifigdAFuOCrhJRv/w4k7pT4BTHfINuEkeG6zaI0v8=";
sha256 = "sha256-9vl068ZTw6Czf+cWQ0k1lU0pqh7P0YZgLguHkk3M918=";
};
vendorSha256 = "sha256-1NTneOGU4R1xzR9hAI9MJWYuYTPgYtLa5vH1H5wyHcM=";
vendorSha256 = "sha256-HOvZPDVKZEoL91yyaJRuKThHirY77xlKOtLKARthxn8=";
buildFlagsArray = [ "-ldflags=" "-s" "-w" ];
preBuild = ''
buildFlagsArray+=("-ldflags" "-s -w")
'';
meta = with lib; {
homepage = "https://github.com/aquasecurity/starboard-octant-plugin";
changelog = "https://github.com/aquasecurity/starboard-octant-plugin/releases/tag/v${version}";
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 ];
};

Loading…
Cancel
Save