Merge pull request #329155 from superherointj/vcluster-0.19.7

vcluster: 0.19.6 -> 0.19.7
This commit is contained in:
Peder Bergebakken Sundt 2024-07-25 19:50:21 +02:00 committed by GitHub
commit 9825b65fd1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 22 additions and 7 deletions

View File

@ -1,14 +1,23 @@
{ lib, go, buildGoModule, fetchFromGitHub, installShellFiles, testers, vcluster }:
{
buildGoModule,
fetchFromGitHub,
go,
installShellFiles,
lib,
nix-update-script,
testers,
vcluster,
}:
buildGoModule rec {
pname = "vcluster";
version = "0.19.6";
version = "0.19.7";
src = fetchFromGitHub {
owner = "loft-sh";
repo = "vcluster";
rev = "v${version}";
hash = "sha256-yW+GaMEfgkeBEGHG7heo8gZcFQuAXmn3rlBPBrlbyvM=";
hash = "sha256-sO/kpbzoAy4ohmLZ3Q7+HzoC0NoK2y0qkJ6Ib8TlEns=";
};
vendorHash = null;
@ -16,7 +25,8 @@ buildGoModule rec {
subPackages = [ "cmd/vclusterctl" ];
ldflags = [
"-s" "-w"
"-s"
"-w"
"-X main.version=${version}"
"-X main.goVersion=${lib.getVersion go}"
];
@ -45,6 +55,8 @@ buildGoModule rec {
command = "vcluster --version";
};
passthru.updateScript = nix-update-script { };
meta = {
changelog = "https://github.com/loft-sh/vcluster/releases/tag/v${version}";
description = "Create fully functional virtual Kubernetes clusters";
@ -52,6 +64,11 @@ buildGoModule rec {
homepage = "https://www.vcluster.com/";
license = lib.licenses.asl20;
mainProgram = "vcluster";
maintainers = with lib.maintainers; [ berryp peterromfeldhk qjoly superherointj ];
maintainers = with lib.maintainers; [
berryp
peterromfeldhk
qjoly
superherointj
];
};
}

View File

@ -39568,8 +39568,6 @@ with pkgs;
tewi-font = callPackage ../data/fonts/tewi { };
vcluster = callPackage ../applications/networking/cluster/vcluster { };
sshportal = callPackage ../servers/sshportal { };
ssh-audit = callPackage ../tools/security/ssh-audit { };