mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 01:45:11 +00:00
49 lines
1.4 KiB
Nix
49 lines
1.4 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, clusterctl }:
|
|
|
|
buildGoModule rec {
|
|
pname = "clusterctl";
|
|
version = "1.4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kubernetes-sigs";
|
|
repo = "cluster-api";
|
|
rev = "v${version}";
|
|
hash = "sha256-ohk3CKcB6LD1gRKDDNYK+MbFxWa7QEiqmRYYpSkwj8E=";
|
|
};
|
|
|
|
vendorHash = "sha256-QzD0Stbr8QuQ8n9l9qv16KFqSFBsRbxETmQ8LHdk3nI=";
|
|
|
|
subPackages = [ "cmd/clusterctl" ];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
ldflags = let t = "sigs.k8s.io/cluster-api/version"; in [
|
|
"-X ${t}.gitMajor=${lib.versions.major version}"
|
|
"-X ${t}.gitMinor=${lib.versions.minor version}"
|
|
"-X ${t}.gitVersion=v${version}"
|
|
];
|
|
|
|
postInstall = ''
|
|
# errors attempting to write config to read-only $HOME
|
|
export HOME=$TMPDIR
|
|
|
|
installShellCompletion --cmd clusterctl \
|
|
--bash <($out/bin/clusterctl completion bash) \
|
|
--zsh <($out/bin/clusterctl completion zsh)
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = clusterctl;
|
|
command = "HOME=$TMPDIR clusterctl version";
|
|
version = "v${version}";
|
|
};
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/kubernetes-sigs/cluster-api/releases/tag/${src.rev}";
|
|
description = "Kubernetes cluster API tool";
|
|
homepage = "https://cluster-api.sigs.k8s.io/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ zowoq qjoly ];
|
|
};
|
|
}
|