2016-12-01 00:34:06 +00:00
|
|
|
{ stdenv, go, buildGoPackage, fetchFromGitHub }:
|
2016-06-05 12:34:18 +01:00
|
|
|
|
2018-03-11 00:08:34 +00:00
|
|
|
let
|
2016-06-05 12:34:18 +01:00
|
|
|
goPackagePath = "github.com/prometheus/prometheus";
|
|
|
|
|
2018-03-11 00:08:34 +00:00
|
|
|
generic = { version, sha256, ... }@attrs:
|
|
|
|
let attrs' = builtins.removeAttrs attrs ["version" "sha256"]; in
|
|
|
|
buildGoPackage ({
|
|
|
|
name = "prometheus-${version}";
|
|
|
|
|
|
|
|
inherit goPackagePath;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "prometheus";
|
|
|
|
repo = "prometheus";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
2018-04-02 15:43:48 +01:00
|
|
|
doCheck = true;
|
2018-03-11 00:08:34 +00:00
|
|
|
|
2018-05-16 23:05:53 +01:00
|
|
|
buildFlagsArray = let t = "${goPackagePath}/vendor/github.com/prometheus/common/version"; in ''
|
2018-03-11 00:08:34 +00:00
|
|
|
-ldflags=
|
|
|
|
-X ${t}.Version=${version}
|
|
|
|
-X ${t}.Revision=unknown
|
|
|
|
-X ${t}.Branch=unknown
|
|
|
|
-X ${t}.BuildUser=nix@nixpkgs
|
|
|
|
-X ${t}.BuildDate=unknown
|
|
|
|
-X ${t}.GoVersion=${stdenv.lib.getVersion go}
|
|
|
|
'';
|
|
|
|
|
|
|
|
preInstall = ''
|
|
|
|
mkdir -p "$bin/share/doc/prometheus" "$bin/etc/prometheus"
|
|
|
|
cp -a $src/documentation/* $bin/share/doc/prometheus
|
|
|
|
cp -a $src/console_libraries $src/consoles $bin/etc/prometheus
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Service monitoring system and time series database";
|
|
|
|
homepage = https://prometheus.io;
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ benley fpletz ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
} // attrs');
|
|
|
|
in rec {
|
|
|
|
prometheus_1 = generic {
|
2018-05-18 22:01:05 +01:00
|
|
|
version = "1.8.2";
|
|
|
|
sha256 = "088flpg3qgnj9afl9vbaa19v2s1d21yxy38nrlv5m7cxwy2pi5pv";
|
2016-06-05 12:34:18 +01:00
|
|
|
};
|
|
|
|
|
2018-03-11 00:08:34 +00:00
|
|
|
prometheus_2 = generic {
|
2018-10-10 21:22:04 +01:00
|
|
|
version = "2.4.3";
|
|
|
|
sha256 = "1kci2zhh4ixil0b72d138vm8006y117mw51wsyz8j0gyy4180msj";
|
2016-06-05 12:34:18 +01:00
|
|
|
};
|
|
|
|
}
|