Skip to content

Commit

Permalink
Merge pull request NixOS#256058 from aaronjheng/mimir
Browse files Browse the repository at this point in the history
mimir: 2.9.0 -> 2.10.0
  • Loading branch information
sikmir authored Sep 20, 2023
2 parents 4fc8d8b + b27d40e commit db53051
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions pkgs/servers/monitoring/mimir/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{ lib, buildGoModule, fetchFromGitHub, nixosTests, nix-update-script }:
buildGoModule rec {
pname = "mimir";
version = "2.9.0";
version = "2.10.0";

src = fetchFromGitHub {
rev = "${pname}-${version}";
owner = "grafana";
repo = pname;
sha256 = "sha256-6URhofT5zJZX2eFx7fNPrFOWF7Po3ChlmVHGTpvG24c=";
hash = "sha256-4UBbtJRQ6F3Dm+G4OWZeWtD4MJWtq91yiSZNW7EhEto=";
};

vendorSha256 = null;
vendorHash = null;

subPackages = [
"cmd/mimir"
Expand All @@ -26,15 +26,16 @@ buildGoModule rec {
};
};

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"
];
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 =
Expand Down

0 comments on commit db53051

Please sign in to comment.