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>
This commit is contained in:
Wilson E. Husin 2021-01-09 15:18:50 -08:00 committed by GitHub
parent 965d351a54
commit 9ecd8455de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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";