phlare: fix build (#356538)

This commit is contained in:
Aleksana
2024-11-17 18:29:51 +08:00
committed by GitHub

View File

@@ -1,6 +1,11 @@
{ lib, buildGoModule, fetchFromGitHub }: {
lib,
buildGoModule rec { buildGo122Module,
fetchFromGitHub,
}:
# breaks in go 1.23 with `invalid reference to runtime.aeskeysched`
# won't be fixed upstream since the repository is archived.
buildGo122Module rec {
pname = "phlare"; pname = "phlare";
version = "0.6.1"; version = "0.6.1";
@@ -14,10 +19,13 @@ buildGoModule rec {
proxyVendor = true; proxyVendor = true;
vendorHash = "sha256-l7+iDT9GAP9BX+xKvnx57iVF8wCM1YyHwq6dD9PbTDI="; vendorHash = "sha256-l7+iDT9GAP9BX+xKvnx57iVF8wCM1YyHwq6dD9PbTDI=";
ldflags = let ldflags =
let
prefix = "github.com/grafana/phlare/pkg/util/build"; prefix = "github.com/grafana/phlare/pkg/util/build";
in [ in
"-s" "-w" [
"-s"
"-w"
# https://github.com/grafana/phlare/blob/v0.6.1/Makefile#L32 # https://github.com/grafana/phlare/blob/v0.6.1/Makefile#L32
"-X ${prefix}.Version=${version}" "-X ${prefix}.Version=${version}"
"-X ${prefix}.Branch=v${version}" "-X ${prefix}.Branch=v${version}"