diff --git a/pkgs/applications/networking/cluster/sonobuoy/default.nix b/pkgs/applications/networking/cluster/sonobuoy/default.nix index 32dbced0a46..c111f7eccfe 100644 --- a/pkgs/applications/networking/cluster/sonobuoy/default.nix +++ b/pkgs/applications/networking/cluster/sonobuoy/default.nix @@ -1,13 +1,13 @@ -{ lib, buildGoPackage, fetchFromGitHub }: +{ lib, buildGoModule, fetchFromGitHub }: # SHA of ${version} for the tool's help output -let rev = "c9c2a461cd3397909fe6e45ff71836347ef89fd8"; +let rev = "e03f9ee353717ccc5f58c902633553e34b2fe46a"; in -buildGoPackage rec { +buildGoModule rec { pname = "sonobuoy"; - version = "0.16.1"; + version = "0.19.0"; - goPackagePath = "github.com/heptio/sonobuoy"; + goPackagePath = "github.com/vmware-tanzu/sonobuoy"; buildFlagsArray = let t = goPackagePath; @@ -19,12 +19,16 @@ buildGoPackage rec { ''; src = fetchFromGitHub { - sha256 = "14qc5a7jbr403wjpk6pgpb94i72yx647sg9srz07q6drq650kyfv"; + sha256 = "1gw58a30akidk15wk8kk7f8lsyqr1q180j6fzr4462ahwxdbjgkr"; rev = "v${version}"; repo = "sonobuoy"; owner = "vmware-tanzu"; }; + vendorSha256 = "1kxzd4czv8992y7y47la5jjrbhk76sxcj3v5sx0k4xplgki7np6i"; + + subPackages = [ "." ]; + meta = with lib; { description = '' Diagnostic tool that makes it easier to understand the @@ -38,6 +42,6 @@ buildGoPackage rec { homepage = "https://sonobuoy.io"; license = licenses.asl20; - maintainers = with maintainers; [ carlosdagos saschagrunert ]; + maintainers = with maintainers; [ carlosdagos saschagrunert wilsonehusin ]; }; }