56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
|
{ lib
|
||
|
, buildGoModule
|
||
|
, fetchFromGitHub
|
||
|
, makeWrapper
|
||
|
, installShellFiles
|
||
|
, bash
|
||
|
, openssh
|
||
|
}:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "k3sup";
|
||
|
version = "0.13.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "alexellis";
|
||
|
repo = "k3sup";
|
||
|
rev = version;
|
||
|
sha256 = "sha256-B9Mo0+dqF15LuhCytMBax2gKjHl9mBkxLXCdb9f0Big=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
||
|
|
||
|
vendorHash = null;
|
||
|
|
||
|
postConfigure = ''
|
||
|
substituteInPlace vendor/github.com/alexellis/go-execute/v2/exec.go \
|
||
|
--replace "/bin/bash" "${bash}/bin/bash"
|
||
|
'';
|
||
|
|
||
|
CGO_ENABLED = 0;
|
||
|
|
||
|
ldflags = [
|
||
|
"-s" "-w"
|
||
|
"-X github.com/alexellis/k3sup/cmd.GitCommit=ref/tags/${version}"
|
||
|
"-X github.com/alexellis/k3sup/cmd.Version=${version}"
|
||
|
];
|
||
|
|
||
|
postInstall = ''
|
||
|
wrapProgram "$out/bin/k3sup" \
|
||
|
--prefix PATH : ${lib.makeBinPath [ openssh ]}
|
||
|
|
||
|
installShellCompletion --cmd k3sup \
|
||
|
--bash <($out/bin/k3sup completion bash) \
|
||
|
--zsh <($out/bin/k3sup completion zsh) \
|
||
|
--fish <($out/bin/k3sup completion fish)
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://github.com/alexellis/k3sup";
|
||
|
description = "Bootstrap Kubernetes with k3s over SSH";
|
||
|
mainProgram = "k3sup";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ welteki qjoly ];
|
||
|
};
|
||
|
}
|