1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/servers/monitoring/mimir/default.nix
2024-10-02 10:00:41 +03:00

59 lines
1.4 KiB
Nix

{ lib, buildGo122Module, fetchFromGitHub, nixosTests, nix-update-script }:
# Does not build with Go 1.23
# FIXME: check again for next release
buildGo122Module rec {
pname = "mimir";
version = "2.13.0";
src = fetchFromGitHub {
rev = "${pname}-${version}";
owner = "grafana";
repo = pname;
hash = "sha256-XBCwc3jpLx8uj+UitFsoIAWVgC/2G8rgjOqrrLLyYdM=";
};
vendorHash = null;
subPackages = [
"cmd/mimir"
"cmd/mimirtool"
] ++ (map (pathName: "tools/${pathName}") [
"compaction-planner"
"copyblocks"
"copyprefix"
"delete-objects"
"list-deduplicated-blocks"
"listblocks"
"markblocks"
"undelete-blocks"
]);
passthru = {
updateScript = nix-update-script {
extraArgs = [ "--version-regex" "mimir-([0-9.]+)" ];
};
tests = {
inherit (nixosTests) mimir;
};
};
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 ];
};
}