prometheus-mysqld-exporter: cleanup rev variable (#225364)
This commit is contained in:
parent
884d234dd1
commit
4db61062ac
1 changed files with 2 additions and 3 deletions
|
@ -3,12 +3,11 @@
|
|||
buildGoModule rec {
|
||||
pname = "mysqld_exporter";
|
||||
version = "0.14.0";
|
||||
rev = "v${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit rev;
|
||||
owner = "prometheus";
|
||||
repo = "mysqld_exporter";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-SMcpQNygv/jVLNuQP8V6BH/CmSt5Y4dzYPsboTH2dos=";
|
||||
};
|
||||
|
||||
|
@ -17,7 +16,7 @@ buildGoModule rec {
|
|||
ldflags = let t = "github.com/prometheus/common/version"; in [
|
||||
"-s" "-w"
|
||||
"-X ${t}.Version=${version}"
|
||||
"-X ${t}.Revision=${rev}"
|
||||
"-X ${t}.Revision=${src.rev}"
|
||||
"-X ${t}.Branch=unknown"
|
||||
"-X ${t}.BuildUser=nix@nixpkgs"
|
||||
"-X ${t}.BuildDate=unknown"
|
||||
|
|
Loading…
Reference in a new issue