blob: 2da1f5c89adc07dd18c33d63c92accdbff7c7b28 (
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
64
|
{
lib,
buildGo126Module,
fetchFromGitHub,
nix-update-script,
}:
buildGo126Module (finalAttrs: {
pname = "lakectl";
version = "1.86.0";
src = fetchFromGitHub {
owner = "treeverse";
repo = "lakeFS";
tag = "v${finalAttrs.version}";
hash = "sha256-8C0XK1qs7z/1MCSPzDP2elJtJRxLcypZbtDYUpEe4g4=";
};
subPackages = [ "cmd/lakectl" ];
proxyVendor = true;
vendorHash = "sha256-Gcmv1b8NwmkGIgMCmLp0E7ZBSWm2PziQWhhUXI3Y3es=";
ldflags = [
"-s"
"-w"
"-X github.com/treeverse/lakefs/pkg/version.Version=${finalAttrs.version}"
];
preBuild = ''
go generate ./pkg/api/apigen ./pkg/auth
'';
doInstallCheck = true;
# custom version test for install phase,
# versionCheckHook doesn't work as it expects only version to be returned as output, here it's a string with version
installCheckPhase = ''
runHook preInstallCheck
versionOutput=$($out/bin/lakectl --version)
echo "Version output: $versionOutput"
if [[ "$versionOutput" == *"lakectl version: ${finalAttrs.version}"* ]]; then
echo "Version check passed!"
else
echo "Version check failed!"
echo "Expected version: 'lakectl version: ${finalAttrs.version}'"
echo "Got version: $versionOutput"
exit 1
fi
runHook postInstallCheck
'';
passthru.updateScript = nix-update-script { };
meta = {
description = "Command line tool for LakeFS";
homepage = "https://docs.lakefs.io/reference/cli.html";
changelog = "https://github.com/treeverse/lakeFS/blob/v${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ daspk04 ];
mainProgram = "lakectl";
};
})
|