mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 13:19:10 +03:00
0e29eb34e2
Refs: #170083
36 lines
872 B
Nix
36 lines
872 B
Nix
{ 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;
|
|
};
|
|
}
|