Merge pull request #293579 from superherointj/vcluster-0.19.3

vcluster: 0.19.1 -> 0.19.4
This commit is contained in:
superherointj 2024-03-19 13:59:06 +00:00 committed by GitHub
commit 8c7a594e40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 7 deletions

View File

@ -2,13 +2,13 @@
buildGoModule rec {
pname = "vcluster";
version = "0.19.1";
version = "0.19.4";
src = fetchFromGitHub {
owner = "loft-sh";
repo = pname;
repo = "vcluster";
rev = "v${version}";
hash = "sha256-W9BSLGUrW8Us+yYQLIz3oY8JKJSo43cL+oWQQf3xWJE=";
hash = "sha256-fzHaB+EeS8Gr1EVlxAZzKDYgv3Jij4LwmYaXN4tjYBg=";
};
vendorHash = null;
@ -45,12 +45,13 @@ buildGoModule rec {
command = "vcluster --version";
};
meta = with lib; {
meta = {
changelog = "https://github.com/loft-sh/vcluster/releases/tag/v${version}";
description = "Create fully functional virtual Kubernetes clusters";
mainProgram = "vcluster";
downloadPage = "https://github.com/loft-sh/vcluster";
homepage = "https://www.vcluster.com/";
license = licenses.asl20;
maintainers = with maintainers; [ peterromfeldhk berryp qjoly ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ berryp peterromfeldhk qjoly superherointj ];
};
}

View File

@ -40712,7 +40712,9 @@ with pkgs;
ib-controller = callPackage ../applications/office/ib/controller { jdk=oraclejdk8; };
vcluster = callPackage ../applications/networking/cluster/vcluster { };
vcluster = callPackage ../applications/networking/cluster/vcluster {
buildGoModule = buildGo122Module;
};
vnote = libsForQt5.callPackage ../applications/office/vnote { };