mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
[Backport release-24.11] phlare: fix build (#356682)
This commit is contained in:
commit
264f85bf44
@ -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}"
|
||||||
|
Loading…
Reference in New Issue
Block a user