nixpkgs/pkgs/servers/monitoring/mimir/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.1 KiB
Nix
Raw Normal View History

2022-12-20 10:50:31 +00:00
{ lib, buildGoModule, fetchFromGitHub, nixosTests, nix-update-script }:
buildGoModule rec {
pname = "mimir";
2023-06-23 19:32:48 +00:00
version = "2.9.0";
src = fetchFromGitHub {
rev = "${pname}-${version}";
owner = "grafana";
repo = pname;
2023-06-23 19:32:48 +00:00
sha256 = "sha256-6URhofT5zJZX2eFx7fNPrFOWF7Po3ChlmVHGTpvG24c=";
};
vendorSha256 = null;
2022-05-28 17:10:44 +00:00
subPackages = [
"cmd/mimir"
"cmd/mimirtool"
];
2022-12-20 10:50:31 +00:00
passthru = {
updateScript = nix-update-script {
extraArgs = [ "--version-regex" "mimir-([0-9.]+)" ];
};
tests = {
inherit (nixosTests) mimir;
};
2022-05-28 20:07:34 +00:00
};
ldflags = let t = "github.com/grafana/mimir/pkg/util/version";
in [
''-extldflags "-static"''
"-s"
"-w"
"-X ${t}.Version=${version}"
"-X ${t}.Revision=unknown"
"-X ${t}.Branch=unknown"
];
meta = with lib; {
description =
"Grafana Mimir provides horizontally scalable, highly available, multi-tenant, long-term storage for Prometheus. ";
homepage = "https://github.com/grafana/mimir";
license = licenses.agpl3Only;
maintainers = with maintainers; [ happysalada bryanhonof ];
};
}