kube-router: 2.0.0 -> 2.0.1

This commit is contained in:
Aaron Jheng 2023-11-15 11:22:17 +00:00
parent 75fbff2576
commit 66f5a68f7a
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3
2 changed files with 6 additions and 4 deletions

View File

@ -2,16 +2,16 @@
buildGoModule rec {
pname = "kube-router";
version = "2.0.0";
version = "2.0.1";
src = fetchFromGitHub {
owner = "cloudnativelabs";
repo = pname;
rev = "v${version}";
hash = "sha256-7laXw0tC25zPTeLJlB/rX6WVcRFCd6DCB+3EUPnE4cM=";
hash = "sha256-Iwo+I1EfclkF4FL8QM3xGkIFxakmelI+hSUepLwfFSw=";
};
vendorHash = "sha256-qJA6gnb+VIkJD24iq6yyn8r4zYY19ZywcyalwfaTtbo=";
vendorHash = "sha256-VjPesQ27GcwnFQrNI+VYzJ4/aahcjASbfMi//Zs/KLM=";
CGO_ENABLED = 0;

View File

@ -9882,7 +9882,9 @@ with pkgs;
kdiff3 = libsForQt5.callPackage ../tools/text/kdiff3 { };
kube-router = callPackage ../applications/networking/cluster/kube-router { };
kube-router = callPackage ../applications/networking/cluster/kube-router {
buildGoModule = buildGo120Module;
};
kubepug = callPackage ../development/tools/kubepug { };