Grafana Mimir: init at v2.0.0

Refs: #170083
This commit is contained in:
Bryan Honof 2022-04-24 14:46:37 +02:00 committed by Yt
parent b656483a05
commit 0e29eb34e2
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "mimir";
version = "2.0.0";
src = fetchFromGitHub {
rev = "${pname}-${version}";
owner = "grafana";
repo = pname;
sha256 = "T1lljhC/TS3eoIc9AFo9Oy9/COM/XnfcwtkU618YCdM=";
};
vendorSha256 = null;
subPackages = [ "cmd/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; [ ];
platforms = platforms.unix;
};
}

View file

@ -21656,6 +21656,8 @@ with pkgs;
grafana-loki = callPackage ../servers/monitoring/loki { };
grafana-mimir = callPackage ../servers/monitoring/mimir { };
promtail = grafana-loki.overrideAttrs (o: {
pname = "promtail";
subPackages = ["clients/cmd/promtail"];