Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
42 lines
909 B
Nix
42 lines
909 B
Nix
{
|
|
buildGoModule,
|
|
clickhouse-backup,
|
|
fetchFromGitHub,
|
|
lib,
|
|
testers,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "clickhouse-backup";
|
|
version = "2.6.39";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Altinity";
|
|
repo = "clickhouse-backup";
|
|
rev = "v${version}";
|
|
hash = "sha256-fx300EyGm9iy4kozcffh8KZz/EYF6yqkdNLSqW1dYQg=";
|
|
};
|
|
|
|
vendorHash = "sha256-MwyjjEePxcwcESfBhmFtYy8aOI50HL7x05cJyGk5gGg=";
|
|
|
|
ldflags = [
|
|
"-X main.version=${version}"
|
|
];
|
|
|
|
postConfigure = ''
|
|
export CGO_ENABLED=0
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = clickhouse-backup;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Tool for easy ClickHouse backup and restore using object storage for backup files";
|
|
mainProgram = "clickhouse-backup";
|
|
homepage = "https://github.com/Altinity/clickhouse-backup";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ devusb ];
|
|
};
|
|
}
|