Merge pull request #166606 from techknowlogick/bump-arkade

This commit is contained in:
Ben Siraphob 2022-04-03 16:09:29 -05:00 committed by GitHub
commit 18749a76bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,18 +6,18 @@
buildGoModule rec {
pname = "arkade";
version = "0.8.16";
version = "0.8.18";
src = fetchFromGitHub {
owner = "alexellis";
repo = "arkade";
rev = version;
sha256 = "sha256-NiUv7yl1nA7a826FHDF+1MhYscXkQjUpxZo2ZWrL+VQ=";
sha256 = "sha256-VQI2eAxOkOkwYkTM/UyyK6lnXFoLFHWE/ekm5qLN9OE=";
};
CGO_ENABLED = 0;
vendorSha256 = "sha256-ipLVzBkliQSPBZTL5FU8xosTVjxFsUVlAvO0a0q+j2o=";
vendorSha256 = "sha256-An52QMjHaHRIicxCBpjgi+S2QeKXhB9rndjV+FIkS3c=";
# Exclude pkg/get: tests downloading of binaries which fail when sandbox=true
subPackages = [
@ -42,6 +42,6 @@ buildGoModule rec {
homepage = "https://github.com/alexellis/arkade";
description = "Open Source Kubernetes Marketplace";
license = licenses.mit;
maintainers = with maintainers; [ welteki ];
maintainers = with maintainers; [ welteki techknowlogick ];
};
}