56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, go
|
|
, nix-update-script
|
|
, nixosTests
|
|
, testers
|
|
, thanos
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "thanos";
|
|
version = "0.34.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "thanos-io";
|
|
repo = "thanos";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-AynKxORgO8fY8KAhzyIeHCw2MI2se5eHSPn0kt1RJq4=";
|
|
};
|
|
|
|
vendorHash = "sha256-4IT3YeGXSEzC0z+rC2yQCY9QQZeXxpMtJM/4/kINn3s=";
|
|
|
|
doCheck = true;
|
|
|
|
subPackages = "cmd/thanos";
|
|
|
|
ldflags = let t = "github.com/prometheus/common/version"; in [
|
|
"-X ${t}.Version=${version}"
|
|
"-X ${t}.Revision=unknown"
|
|
"-X ${t}.Branch=unknown"
|
|
"-X ${t}.BuildUser=nix@nixpkgs"
|
|
"-X ${t}.BuildDate=unknown"
|
|
"-X ${t}.GoVersion=${lib.getVersion go}"
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
tests = {
|
|
inherit (nixosTests) prometheus;
|
|
version = testers.testVersion {
|
|
command = "thanos --version";
|
|
package = thanos;
|
|
};
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Highly available Prometheus setup with long term storage capabilities";
|
|
homepage = "https://github.com/thanos-io/thanos";
|
|
changelog = "https://github.com/thanos-io/thanos/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
mainProgram = "thanos";
|
|
maintainers = with maintainers; [ basvandijk anthonyroussel ];
|
|
};
|
|
}
|