nixpkgs/pkgs/servers/monitoring/prometheus/default.nix

57 lines
1.7 KiB
Nix
Raw Normal View History

2016-12-01 00:34:06 +00:00
{ stdenv, go, buildGoPackage, fetchFromGitHub }:
2016-06-05 11:34:18 +00:00
2018-03-11 00:08:34 +00:00
let
2016-06-05 11:34:18 +00: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;
};
doCheck = true;
2018-03-11 00:08:34 +00: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 21:01:05 +00:00
version = "1.8.2";
sha256 = "088flpg3qgnj9afl9vbaa19v2s1d21yxy38nrlv5m7cxwy2pi5pv";
2016-06-05 11:34:18 +00:00
};
2018-03-11 00:08:34 +00:00
prometheus_2 = generic {
2018-12-17 22:26:41 +00:00
version = "2.6.0";
sha256 = "1d9zwzs280pw9zspqwp7xx3ji04lfg2v9l5qhrfy3y633ghcmpxz";
2016-06-05 11:34:18 +00:00
};
}