mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 22:45:08 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, lib
|
|
, testers
|
|
, kubevirt
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "kubevirt";
|
|
version = "1.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kubevirt";
|
|
repo = "kubevirt";
|
|
rev = "v${version}";
|
|
hash = "sha256-t6lIHuMvo8iqYkZ1mYVU6fgOP3Q6sqWaTcFLTqAIm5c=";
|
|
};
|
|
|
|
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 = ''
|
|
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";
|
|
};
|
|
}
|