about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorWilson E. Husin <wilsonehusin@users.noreply.github.com>2021-01-09 15:18:50 -0800
committerGitHub <noreply@github.com>2021-01-10 00:18:50 +0100
commit9ecd8455de97b646bdbbd47b269c3660e7022a47 (patch)
tree8c5a9621587af22bf5e7e9c95e166c7557247dcb /pkgs/applications
parent965d351a542990e78aed3c0172da247111c4615a (diff)
sonobuoy: 0.19.0 -> 0.20.0 (#106928)
* Sonobuoy 0.19.0 -> 0.20.0

* Add comments to explain why we need both version and rev

Co-authored-by: Léo Gaspard <github@leo.gaspard.ninja>
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/cluster/sonobuoy/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/cluster/sonobuoy/default.nix b/pkgs/applications/networking/cluster/sonobuoy/default.nix
index 668a229a62e5b..f344b8c3eb971 100644
--- a/pkgs/applications/networking/cluster/sonobuoy/default.nix
+++ b/pkgs/applications/networking/cluster/sonobuoy/default.nix
@@ -1,11 +1,11 @@
 { lib, buildGoModule, fetchFromGitHub }:
 
-# SHA of ${version} for the tool's help output
-let rev = "e03f9ee353717ccc5f58c902633553e34b2fe46a";
+# SHA of ${version} for the tool's help output. Unfortunately this is needed in build flags.
+let rev = "f6e19140201d6bf2f1274bf6567087bc25154210";
 in
 buildGoModule rec {
   pname = "sonobuoy";
-  version = "0.19.0";
+  version = "0.20.0"; # Do not forget to update `rev` above
 
   buildFlagsArray =
     let t = "github.com/vmware-tanzu/sonobuoy";
@@ -17,7 +17,7 @@ buildGoModule rec {
     '';
 
   src = fetchFromGitHub {
-    sha256 = "1gw58a30akidk15wk8kk7f8lsyqr1q180j6fzr4462ahwxdbjgkr";
+    sha256 = "11qawsv82i1pl4mwfc85wb4fbq961bplvmygnjfm79m8z87863ri";
     rev = "v${version}";
     repo = "sonobuoy";
     owner = "vmware-tanzu";