Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
57 lines
1.3 KiB
Nix
57 lines
1.3 KiB
Nix
{
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
lib,
|
|
stdenv,
|
|
testers,
|
|
kubevirt,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "kubevirt";
|
|
version = "1.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kubevirt";
|
|
repo = "kubevirt";
|
|
rev = "v${version}";
|
|
hash = "sha256-50OaBnQrYn3LZLvsfvGU5ZssPbdKyyAnebqn85iVoYk=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
subPackages = [ "cmd/virtctl" ];
|
|
|
|
tags = [ "selinux" ];
|
|
|
|
ldflags = [
|
|
"-X kubevirt.io/client-go/version.gitCommit=v${version}"
|
|
"-X kubevirt.io/client-go/version.gitTreeState=clean"
|
|
"-X kubevirt.io/client-go/version.gitVersion=v${version}"
|
|
];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd virtctl \
|
|
--bash <($out/bin/virtctl completion bash) \
|
|
--fish <($out/bin/virtctl completion fish) \
|
|
--zsh <($out/bin/virtctl completion zsh)
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = kubevirt;
|
|
command = "virtctl version --client";
|
|
version = "v${version}";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Client tool to use advanced features such as console access";
|
|
homepage = "https://kubevirt.io/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ haslersn ];
|
|
mainProgram = "virtctl";
|
|
};
|
|
}
|