2016-12-01 00:34:06 +00:00
|
|
|
{ stdenv, go, buildGoPackage, fetchFromGitHub }:
|
2016-06-05 11:34:18 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "prometheus-${version}";
|
2017-10-24 11:21:33 +00:00
|
|
|
version = "1.8.1";
|
2016-07-18 18:25:58 +00:00
|
|
|
rev = "v${version}";
|
2016-06-05 11:34:18 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/prometheus/prometheus";
|
|
|
|
|
2016-06-06 10:26:56 +00:00
|
|
|
src = fetchFromGitHub {
|
2016-06-05 11:34:18 +00:00
|
|
|
inherit rev;
|
2016-06-06 10:26:56 +00:00
|
|
|
owner = "prometheus";
|
|
|
|
repo = "prometheus";
|
2017-10-24 11:21:33 +00:00
|
|
|
sha256 = "07xvpjhhxc0r73qfmkvf94zhv19zv76privw6blg35k5nxcnj7j4";
|
2016-06-05 11:34:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
docheck = true;
|
|
|
|
|
|
|
|
buildFlagsArray = let t = "${goPackagePath}/version"; in ''
|
|
|
|
-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";
|
2017-08-22 18:50:04 +00:00
|
|
|
homepage = https://prometheus.io;
|
2016-06-05 11:34:18 +00:00
|
|
|
license = licenses.asl20;
|
2017-02-15 05:33:26 +00:00
|
|
|
maintainers = with maintainers; [ benley fpletz ];
|
2016-06-05 11:34:18 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|