2021-01-25 08:26:54 +00:00
|
|
|
{ lib, go, buildGoPackage, fetchFromGitHub }:
|
2016-06-05 14:11:11 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "pushgateway";
|
2021-02-05 15:05:35 +00:00
|
|
|
version = "1.4.0";
|
2016-12-01 00:52:07 +00:00
|
|
|
rev = "v${version}";
|
2016-06-28 13:32:22 +00:00
|
|
|
|
2016-06-05 14:11:11 +00:00
|
|
|
goPackagePath = "github.com/prometheus/pushgateway";
|
|
|
|
|
2016-06-06 10:26:56 +00:00
|
|
|
src = fetchFromGitHub {
|
2016-06-05 14:11:11 +00:00
|
|
|
inherit rev;
|
2016-06-06 10:26:56 +00:00
|
|
|
owner = "prometheus";
|
|
|
|
repo = "pushgateway";
|
2021-02-05 15:05:35 +00:00
|
|
|
sha256 = "sha256-230JgG+TtAuopkkcUda+0hl8E6WXOtTUygWoyorLiEU=";
|
2016-06-05 14:11:11 +00:00
|
|
|
};
|
|
|
|
|
2019-02-18 03:08:00 +00:00
|
|
|
buildUser = "nix@nixpkgs";
|
|
|
|
buildDate = "19700101-00:00:00";
|
2016-06-05 14:11:11 +00:00
|
|
|
|
2021-08-26 03:31:57 +00:00
|
|
|
ldflags = [
|
|
|
|
"-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}"
|
|
|
|
"-X main.goVersion=${lib.getVersion go}"
|
|
|
|
];
|
2016-06-05 14:11:11 +00:00
|
|
|
|
2019-02-18 03:08:00 +00:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
2020-04-28 01:50:57 +00:00
|
|
|
export PATH=$PATH:$out/bin
|
2019-02-18 03:08:00 +00: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 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-06-05 14:11:11 +00:00
|
|
|
description = "Allows ephemeral and batch jobs to expose metrics to Prometheus";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/prometheus/pushgateway";
|
2016-06-05 14:11:11 +00:00
|
|
|
license = licenses.asl20;
|
2019-08-02 06:07:42 +00:00
|
|
|
maintainers = with maintainers; [ benley fpletz ];
|
2016-06-05 14:11:11 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|