Unverified Commit 9825b65f authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

Merge pull request #329155 from superherointj/vcluster-0.19.7

vcluster: 0.19.6 -> 0.19.7
parents 9ab3d9a5 8b1dd121
Loading
Loading
Loading
Loading
+22 −5
Original line number Diff line number Diff line
{ 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
    ];
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -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 { };