0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

grafana-agent: mark broken

Signed-off-by: Paul Meyer <katexochen0@gmail.com>
This commit is contained in:
Paul Meyer 2025-03-28 08:16:29 +01:00
parent 8a528b3fc8
commit 14b235a1fb

View file

@ -1,6 +1,6 @@
{
lib,
buildGo122Module,
buildGoModule,
fetchFromGitHub,
fetchYarnDeps,
fixup-yarn-lock,
@ -14,9 +14,7 @@
yarn,
}:
# Breaks with Go 1.23: https://github.com/grafana/agent/issues/6972
# FIXME: unpin when fixed upstream
buildGo122Module rec {
buildGoModule rec {
pname = "grafana-agent";
version = "0.44.2";
@ -130,5 +128,9 @@ buildGo122Module rec {
emilylange
];
mainProgram = "grafana-agent";
# Breaks with Go 1.23: https://github.com/grafana/agent/issues/6972
# Binary panics at runtime with:
# 'panic: pattern "GET /debug/pprof/" (registered at net/http/pprof/pprof.go:100) conflicts with pattern "/debug/pprof/delta_heap"'
broken = true;
};
}