2021-01-25 09:26:54 +01:00
|
|
|
{ lib, go, buildGoPackage, fetchFromGitHub }:
|
2016-06-05 16:11:11 +02:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "pushgateway";
|
2021-02-05 16:05:35 +01:00
|
|
|
version = "1.4.0";
|
2016-12-01 01:52:07 +01:00
|
|
|
rev = "v${version}";
|
2016-06-28 15:32:22 +02:00
|
|
|
|
2016-06-05 16:11:11 +02:00
|
|
|
goPackagePath = "github.com/prometheus/pushgateway";
|
|
|
|
|
2016-06-06 12:26:56 +02:00
|
|
|
src = fetchFromGitHub {
|
2016-06-05 16:11:11 +02:00
|
|
|
inherit rev;
|
2016-06-06 12:26:56 +02:00
|
|
|
owner = "prometheus";
|
|
|
|
repo = "pushgateway";
|
2021-02-05 16:05:35 +01:00
|
|
|
sha256 = "sha256-230JgG+TtAuopkkcUda+0hl8E6WXOtTUygWoyorLiEU=";
|
2016-06-05 16:11:11 +02:00
|
|
|
};
|
|
|
|
|
2019-02-18 04:08:00 +01:00
|
|
|
buildUser = "nix@nixpkgs";
|
|
|
|
buildDate = "19700101-00:00:00";
|
2016-06-05 16:11:11 +02:00
|
|
|
|
|
|
|
buildFlagsArray = ''
|
|
|
|
-ldflags=
|
2019-02-18 04:08:00 +01:00
|
|
|
-X github.com/prometheus/pushgateway/vendor/github.com/prometheus/common/version.Version=${version}
|
|
|
|
-X github.com/prometheus/pushgateway/vendor/github.com/prometheus/common/version.Revision=${rev}
|
|
|
|
-X github.com/prometheus/pushgateway/vendor/github.com/prometheus/common/version.Branch=${rev}
|
|
|
|
-X github.com/prometheus/pushgateway/vendor/github.com/prometheus/common/version.BuildUser=${buildUser}
|
|
|
|
-X github.com/prometheus/pushgateway/vendor/github.com/prometheus/common/version.BuildDate=${buildDate}
|
2021-01-15 08:07:56 +01:00
|
|
|
-X main.goVersion=${lib.getVersion go}
|
2016-06-05 16:11:11 +02:00
|
|
|
'';
|
|
|
|
|
2019-02-18 04:08:00 +01:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
2020-04-28 03:50:57 +02:00
|
|
|
export PATH=$PATH:$out/bin
|
2019-02-18 04:08:00 +01:00
|
|
|
|
|
|
|
pushgateway --help
|
|
|
|
|
|
|
|
# Make sure our -X options were included in the build
|
|
|
|
for s in ${version} ${rev} ${buildUser} ${buildDate}; do
|
|
|
|
pushgateway --version 2>&1 | fgrep -q -- "$s" || { echo "pushgateway --version output missing $s"; exit 1; }
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-06-05 16:11:11 +02:00
|
|
|
description = "Allows ephemeral and batch jobs to expose metrics to Prometheus";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/prometheus/pushgateway";
|
2016-06-05 16:11:11 +02:00
|
|
|
license = licenses.asl20;
|
2019-08-02 08:07:42 +02:00
|
|
|
maintainers = with maintainers; [ benley fpletz ];
|
2016-06-05 16:11:11 +02:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|