about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/sonobuoy
diff options
context:
space:
mode:
authorPaul Meyer <49727155+katexochen@users.noreply.github.com>2023-12-09 10:31:55 +0100
committerPaul Meyer <49727155+katexochen@users.noreply.github.com>2023-12-29 20:01:18 +0100
commitb96fc12835d7dbf9c1bd9275eca036e80cff6b00 (patch)
treea727a06d1b59469035be86f67abf228c94991c22 /pkgs/applications/networking/cluster/sonobuoy
parent31473f86d5e6adc3a8af52cfea1e849fe2409208 (diff)
sonobuoy: add mainProgram, add changelog, fix description
Diffstat (limited to 'pkgs/applications/networking/cluster/sonobuoy')
-rw-r--r--pkgs/applications/networking/cluster/sonobuoy/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/applications/networking/cluster/sonobuoy/default.nix b/pkgs/applications/networking/cluster/sonobuoy/default.nix
index 6900dc5607ec7..a398eb5f6b135 100644
--- a/pkgs/applications/networking/cluster/sonobuoy/default.nix
+++ b/pkgs/applications/networking/cluster/sonobuoy/default.nix
@@ -28,10 +28,7 @@ buildGoModule rec {
   subPackages = [ "." ];
 
   meta = with lib; {
-    description = ''
-      Diagnostic tool that makes it easier to understand the
-      state of a Kubernetes cluster.
-    '';
+    description = "Diagnostic tool that makes it easier to understand the state of a Kubernetes cluster";
     longDescription = ''
       Sonobuoy is a diagnostic tool that makes it easier to understand the state of
       a Kubernetes cluster by running a set of Kubernetes conformance tests in an
@@ -39,7 +36,9 @@ buildGoModule rec {
     '';
 
     homepage = "https://sonobuoy.io";
+    changelog = "https://github.com/vmware-tanzu/sonobuoy/releases/tag/v${version}";
     license = licenses.asl20;
+    mainProgram = "sonobuoy";
     maintainers = with maintainers; [ carlosdagos saschagrunert wilsonehusin ];
   };
 }