mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
prometheus: Bump to 0.17.0
This commit is contained in:
parent
756604cc08
commit
36fbab1374
1 changed files with 32 additions and 35 deletions
|
@ -2871,51 +2871,48 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
prometheus.prometheus = buildGoPackage rec {
|
prometheus.prometheus = buildFromGitHub rec {
|
||||||
name = "prometheus-${version}";
|
rev = "0.17.0";
|
||||||
version = "0.15.1";
|
owner = "prometheus";
|
||||||
goPackagePath = "github.com/prometheus/prometheus";
|
repo = "prometheus";
|
||||||
rev = "64349aade284846cb194be184b1b180fca629a7c";
|
sha256 = "176198krna2i37dfhwsqi7m36sqn175yiny6n52vj27mc9s8ggzx";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
inherit rev;
|
|
||||||
owner = "prometheus";
|
|
||||||
repo = "prometheus";
|
|
||||||
sha256 = "0gljpwnlip1fnmhbc96hji2rc56xncy97qccm7v1z5j1nhc5fam2";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
consul
|
# consul
|
||||||
dns
|
# dns
|
||||||
fsnotify.v1
|
# fsnotify.v1
|
||||||
go-zookeeper
|
# go-zookeeper
|
||||||
goleveldb
|
# goleveldb
|
||||||
httprouter
|
# httprouter
|
||||||
logrus
|
# logrus
|
||||||
net
|
# net
|
||||||
prometheus.client_golang
|
# prometheus.client_golang
|
||||||
prometheus.log
|
# prometheus.log
|
||||||
yaml-v2
|
# yaml-v2
|
||||||
];
|
];
|
||||||
|
|
||||||
|
docheck = true;
|
||||||
|
|
||||||
|
preBuild = ''
|
||||||
|
export GO15VENDOREXPERIMENT=1
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildFlagsArray = let t = "github.com/${owner}/${repo}/version"; in ''
|
||||||
|
-ldflags=
|
||||||
|
-X ${t}.Version=${rev}
|
||||||
|
-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 = ''
|
preInstall = ''
|
||||||
mkdir -p "$bin/share/doc/prometheus" "$bin/etc/prometheus"
|
mkdir -p "$bin/share/doc/prometheus" "$bin/etc/prometheus"
|
||||||
cp -a $src/documentation/* $bin/share/doc/prometheus
|
cp -a $src/documentation/* $bin/share/doc/prometheus
|
||||||
cp -a $src/console_libraries $src/consoles $bin/etc/prometheus
|
cp -a $src/console_libraries $src/consoles $bin/etc/prometheus
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# Metadata that gets embedded into the binary
|
|
||||||
buildFlagsArray = let t = "${goPackagePath}/version"; in
|
|
||||||
''
|
|
||||||
-ldflags=
|
|
||||||
-X ${t}.Version=${version}
|
|
||||||
-X ${t}.Revision=${builtins.substring 0 6 rev}
|
|
||||||
-X ${t}.Branch=master
|
|
||||||
-X ${t}.BuildUser=nix@nixpkgs
|
|
||||||
-X ${t}.BuildDate=20150101-00:00:00
|
|
||||||
-X ${t}.GoVersion=${stdenv.lib.getVersion go}
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Service monitoring system and time series database";
|
description = "Service monitoring system and time series database";
|
||||||
homepage = http://prometheus.io;
|
homepage = http://prometheus.io;
|
||||||
|
|
Loading…
Reference in a new issue