Sonobuoy 0.16.1 -> 0.19.0
This commit is contained in:
parent
2cdd6d1455
commit
ae34d2e1fd
@ -1,13 +1,13 @@
|
|||||||
{ lib, buildGoPackage, fetchFromGitHub }:
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
# SHA of ${version} for the tool's help output
|
# SHA of ${version} for the tool's help output
|
||||||
let rev = "c9c2a461cd3397909fe6e45ff71836347ef89fd8";
|
let rev = "e03f9ee353717ccc5f58c902633553e34b2fe46a";
|
||||||
in
|
in
|
||||||
buildGoPackage rec {
|
buildGoModule rec {
|
||||||
pname = "sonobuoy";
|
pname = "sonobuoy";
|
||||||
version = "0.16.1";
|
version = "0.19.0";
|
||||||
|
|
||||||
goPackagePath = "github.com/heptio/sonobuoy";
|
goPackagePath = "github.com/vmware-tanzu/sonobuoy";
|
||||||
|
|
||||||
buildFlagsArray =
|
buildFlagsArray =
|
||||||
let t = goPackagePath;
|
let t = goPackagePath;
|
||||||
@ -19,12 +19,16 @@ buildGoPackage rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
sha256 = "14qc5a7jbr403wjpk6pgpb94i72yx647sg9srz07q6drq650kyfv";
|
sha256 = "1gw58a30akidk15wk8kk7f8lsyqr1q180j6fzr4462ahwxdbjgkr";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
repo = "sonobuoy";
|
repo = "sonobuoy";
|
||||||
owner = "vmware-tanzu";
|
owner = "vmware-tanzu";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "1kxzd4czv8992y7y47la5jjrbhk76sxcj3v5sx0k4xplgki7np6i";
|
||||||
|
|
||||||
|
subPackages = [ "." ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = ''
|
description = ''
|
||||||
Diagnostic tool that makes it easier to understand the
|
Diagnostic tool that makes it easier to understand the
|
||||||
@ -38,6 +42,6 @@ buildGoPackage rec {
|
|||||||
|
|
||||||
homepage = "https://sonobuoy.io";
|
homepage = "https://sonobuoy.io";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ carlosdagos saschagrunert ];
|
maintainers = with maintainers; [ carlosdagos saschagrunert wilsonehusin ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user