nixpkgs/pkgs/applications/networking/cluster/clusterctl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, clusterctl }:
2021-11-12 22:14:17 +00:00
buildGoModule rec {
pname = "clusterctl";
2022-12-15 19:32:50 +00:00
version = "1.3.1";
2021-11-12 22:14:17 +00:00
src = fetchFromGitHub {
owner = "kubernetes-sigs";
repo = "cluster-api";
rev = "v${version}";
2022-12-15 19:32:50 +00:00
sha256 = "sha256-Qaq0I7ZCXRXIWtUN3fcpoN4SURq/OfH+u73nyWYmJOY=";
2021-11-12 22:14:17 +00:00
};
2022-12-15 19:32:50 +00:00
vendorSha256 = "sha256-VDSMXE+Vlgmo7T1b+A7uW9BqSDBDyhrneJX1yH+XfDc=";
2021-11-12 22:14:17 +00:00
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
2021-11-12 22:14:17 +00:00
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}";
};
2021-11-12 22:14:17 +00:00
meta = with lib; {
description = "Kubernetes cluster API tool";
homepage = "https://cluster-api.sigs.k8s.io/";
license = licenses.asl20;
maintainers = with maintainers; [ zowoq ];
};
}