vcluster: 0.19.4 -> 0.19.5 Release: https://github.com/loft-sh/vcluster/releases/tag/v0.19.5 Changelog: https://github.com/loft-sh/vcluster/compare/v0.19.4...v0.19.5

+5 -5
+5 -5
pkgs/applications/networking/cluster/vcluster/default.nix
··· 2 3 buildGoModule rec { 4 pname = "vcluster"; 5 - version = "0.19.4"; 6 7 src = fetchFromGitHub { 8 owner = "loft-sh"; 9 repo = "vcluster"; 10 rev = "v${version}"; 11 - hash = "sha256-fzHaB+EeS8Gr1EVlxAZzKDYgv3Jij4LwmYaXN4tjYBg="; 12 }; 13 14 vendorHash = null; 15 16 subPackages = [ "cmd/vclusterctl" ]; 17 18 - nativeBuildInputs = [ installShellFiles ]; 19 - 20 ldflags = [ 21 "-s" "-w" 22 "-X main.version=${version}" 23 "-X main.goVersion=${lib.getVersion go}" 24 ]; 25 26 # Test is disabled because e2e tests expect k8s. 27 doCheck = false; ··· 48 meta = { 49 changelog = "https://github.com/loft-sh/vcluster/releases/tag/v${version}"; 50 description = "Create fully functional virtual Kubernetes clusters"; 51 - mainProgram = "vcluster"; 52 downloadPage = "https://github.com/loft-sh/vcluster"; 53 homepage = "https://www.vcluster.com/"; 54 license = lib.licenses.asl20; 55 maintainers = with lib.maintainers; [ berryp peterromfeldhk qjoly superherointj ]; 56 }; 57 }
··· 2 3 buildGoModule rec { 4 pname = "vcluster"; 5 + version = "0.19.5"; 6 7 src = fetchFromGitHub { 8 owner = "loft-sh"; 9 repo = "vcluster"; 10 rev = "v${version}"; 11 + hash = "sha256-V+Y2LekBYlKZU53BsYCW6ADSMJOxkwSK9hbFGXBaa9o="; 12 }; 13 14 vendorHash = null; 15 16 subPackages = [ "cmd/vclusterctl" ]; 17 18 ldflags = [ 19 "-s" "-w" 20 "-X main.version=${version}" 21 "-X main.goVersion=${lib.getVersion go}" 22 ]; 23 + 24 + nativeBuildInputs = [ installShellFiles ]; 25 26 # Test is disabled because e2e tests expect k8s. 27 doCheck = false; ··· 48 meta = { 49 changelog = "https://github.com/loft-sh/vcluster/releases/tag/v${version}"; 50 description = "Create fully functional virtual Kubernetes clusters"; 51 downloadPage = "https://github.com/loft-sh/vcluster"; 52 homepage = "https://www.vcluster.com/"; 53 license = lib.licenses.asl20; 54 + mainProgram = "vcluster"; 55 maintainers = with lib.maintainers; [ berryp peterromfeldhk qjoly superherointj ]; 56 }; 57 }