prometheus-statsd-exporter: add build info

Same as in 48a0dd84e8.
This commit is contained in:
Maximilian Bosch 2024-02-25 15:35:04 +01:00
parent 77d4e2fc89
commit 26ecd1d48e
No known key found for this signature in database

View File

@ -14,6 +14,18 @@ buildGoModule rec {
hash = "sha256-C7+4v40T667KJHEQ3ebLDg2wJNrxD/nossfT6rMlER8=";
};
ldflags =
let
t = "github.com/prometheus/common/version";
in
[ "-s" "-w"
"-X ${t}.Version=${version}"
"-X ${t}.Revision=unknown"
"-X ${t}.Branch=unknown"
"-X ${t}.BuildUser=nix@nixpkgs"
"-X ${t}.BuildDate=unknown"
];
vendorHash = "sha256-scBpRZeECgAtpu9lnkIk1I2c8UmAkEL8LYNPUeUNYto=";
meta = with lib; {