blob: 38341b097e712086e90eb29fbb3d6a08a016c163 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
{
lib,
buildGoModule,
fetchFromGitHub,
installShellFiles,
testers,
k0sctl,
}:
buildGoModule rec {
pname = "k0sctl";
version = "0.32.2";
src = fetchFromGitHub {
owner = "k0sproject";
repo = "k0sctl";
tag = "v${version}";
hash = "sha256-HD2jH9hQQBblewS57dYw8IBnumE2sbslHyX52fTn/tQ=";
};
vendorHash = "sha256-NHPFBlDtSA43OWnp7uWNIw6B7G1/EHuO8fwShg1Q9fI=";
ldflags = [
"-s"
"-w"
"-X=github.com/k0sproject/k0sctl/version.Environment=production"
"-X=github.com/carlmjohnson/versioninfo.Version=v${version}" # Doesn't work currently: https://github.com/carlmjohnson/versioninfo/discussions/12
"-X=github.com/carlmjohnson/versioninfo.Revision=v${version}"
];
checkFlags = [
# requires sudo
"-skip=^TestLocalBinaryProviderCreatesParentDir$"
];
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
for shell in bash zsh fish; do
installShellCompletion --cmd ${pname} \
--$shell <($out/bin/${pname} completion --shell $shell)
done
'';
passthru.tests.version = testers.testVersion {
package = k0sctl;
command = "k0sctl version";
# See https://github.com/carlmjohnson/versioninfo/discussions/12
version = "version: (devel)\ncommit: v${version}\n";
};
meta = {
description = "Bootstrapping and management tool for k0s clusters";
homepage = "https://k0sproject.io/";
changelog = "https://github.com/k0sproject/k0sctl/releases/tag/v${version}";
license = lib.licenses.asl20;
mainProgram = "k0sctl";
maintainers = with lib.maintainers; [
nickcao
qjoly
];
};
}
|