summary refs log tree commit diff
diff options
context:
space:
mode:
author06kellyjac <dev@j-k.io>2021-05-18 17:19:47 +0100
committer06kellyjac <dev@j-k.io>2021-05-18 17:19:47 +0100
commit2c6cb5334e30993667491a7beaebf41d7445a553 (patch)
tree5dd197e2fc828315ae480b008c3b911a31098c14
parentc6812829db72c1f09f71f9a4b91291d1ddbe5065 (diff)
downloadnixpkgs-2c6cb5334e30993667491a7beaebf41d7445a553.tar
nixpkgs-2c6cb5334e30993667491a7beaebf41d7445a553.tar.gz
nixpkgs-2c6cb5334e30993667491a7beaebf41d7445a553.tar.bz2
nixpkgs-2c6cb5334e30993667491a7beaebf41d7445a553.tar.lz
nixpkgs-2c6cb5334e30993667491a7beaebf41d7445a553.tar.xz
nixpkgs-2c6cb5334e30993667491a7beaebf41d7445a553.tar.zst
nixpkgs-2c6cb5334e30993667491a7beaebf41d7445a553.zip
starboard-octant-plugin: 0.10.0 -> 0.10.3
-rw-r--r--pkgs/applications/networking/cluster/octant/plugins/starboard-octant-plugin.nix13
1 files changed, 8 insertions, 5 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
index ff9ce970227..5a4546b8cd8 100644
--- a/pkgs/applications/networking/cluster/octant/plugins/starboard-octant-plugin.nix
+++ b/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 ];
   };