Merge pull request #8122 from benley/prometheus-0.14
Prometheus: update to 0.14.0
This commit is contained in:
commit
6e0ca8cd11
|
@ -1,58 +1,55 @@
|
|||
{ stdenv, lib, goPackages, fetchFromGitHub, protobuf, vim }:
|
||||
{ stdenv, lib, goPackages, fetchFromGitHub, vim }:
|
||||
|
||||
goPackages.buildGoPackage rec {
|
||||
name = "prometheus-${version}";
|
||||
version = "0.13.4";
|
||||
goPackagePath = "github.com/prometheus/prometheus";
|
||||
rev = "612da96c46f0b7ea6cc28a3fc614f14eae0189d0";
|
||||
name = "prometheus-${version}";
|
||||
version = "0.14.0";
|
||||
goPackagePath = "github.com/prometheus/prometheus";
|
||||
rev = "67e77411ba30b1b0ce0989c85b6684fb3adef430";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit rev;
|
||||
owner = "prometheus";
|
||||
repo = "prometheus";
|
||||
sha256 = "1r3pcnxs1cdh18lmqd60r3nh614cw543wzd4slkr2nzr73pn5x4j";
|
||||
};
|
||||
src = fetchFromGitHub {
|
||||
inherit rev;
|
||||
owner = "prometheus";
|
||||
repo = "prometheus";
|
||||
sha256 = "06xsxigimw5i1fla0k83pf5bpmybskvy50433hs8h876gyvgjxp9";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
goPackages.dns
|
||||
goPackages.glog
|
||||
goPackages.protobuf
|
||||
goPackages.goleveldb
|
||||
goPackages.net
|
||||
goPackages.prometheus.client_golang
|
||||
protobuf # the non-golang package, for protoc
|
||||
vim # for xxd, used in embed-static.sh
|
||||
];
|
||||
buildInputs = [
|
||||
goPackages.consul
|
||||
goPackages.dns
|
||||
goPackages.fsnotify.v1
|
||||
goPackages.goleveldb
|
||||
goPackages.logrus
|
||||
goPackages.net
|
||||
goPackages.prometheus.client_golang
|
||||
goPackages.prometheus.log
|
||||
goPackages.yaml-v2
|
||||
vim # for xxd, used in embed-static.sh
|
||||
];
|
||||
|
||||
# Metadata that gets embedded into the binary
|
||||
buildFlagsArray = ''
|
||||
-ldflags=
|
||||
-X main.buildVersion ${version}
|
||||
-X main.buildRevision ${builtins.substring 0 6 rev}
|
||||
-X main.buildBranch master
|
||||
-X main.buildUser nix@nixpkgs
|
||||
-X main.buildDate 20150101-00:00:00
|
||||
-X main.goVersion ${lib.getVersion goPackages.go}
|
||||
'';
|
||||
# Metadata that gets embedded into the binary
|
||||
buildFlagsArray = ''
|
||||
-ldflags=
|
||||
-X main.buildVersion ${version}
|
||||
-X main.buildRevision ${builtins.substring 0 6 rev}
|
||||
-X main.buildBranch master
|
||||
-X main.buildUser nix@nixpkgs
|
||||
-X main.buildDate 20150101-00:00:00
|
||||
-X main.goVersion ${lib.getVersion goPackages.go}
|
||||
'';
|
||||
|
||||
preBuild = ''
|
||||
(
|
||||
cd "go/src/$goPackagePath"
|
||||
protoc --proto_path=./config \
|
||||
--go_out=./config/generated/ \
|
||||
./config/config.proto
|
||||
preBuild = ''
|
||||
(
|
||||
cd "go/src/$goPackagePath/web"
|
||||
${stdenv.shell} ../utility/embed-static.sh static templates \
|
||||
| gofmt > blob/files.go
|
||||
)
|
||||
'';
|
||||
|
||||
cd web
|
||||
${stdenv.shell} ../utility/embed-static.sh static templates \
|
||||
| gofmt > blob/files.go
|
||||
)
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Service monitoring system and time series database";
|
||||
homepage = http://prometheus.github.io;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ benley ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
meta = with lib; {
|
||||
description = "Service monitoring system and time series database";
|
||||
homepage = http://prometheus.io;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ benley ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -2426,16 +2426,29 @@ let
|
|||
};
|
||||
|
||||
yaml-v1 = buildGoPackage rec {
|
||||
rev = "b0c168ac0cf9493da1f9bb76c34b26ffef940b4a";
|
||||
name = "yaml-v1-${stdenv.lib.strings.substring 0 7 rev}";
|
||||
name = "yaml-v1-${version}";
|
||||
version = "git-2015-05-01";
|
||||
goPackagePath = "gopkg.in/yaml.v1";
|
||||
src = fetchgit {
|
||||
inherit rev;
|
||||
url = "https://github.com/go-yaml/yaml.git";
|
||||
src = fetchFromGitHub {
|
||||
rev = "b0c168ac0cf9493da1f9bb76c34b26ffef940b4a";
|
||||
owner = "go-yaml";
|
||||
repo = "yaml";
|
||||
sha256 = "0jbdy41pplf2d1j24qwr8gc5qsig6ai5ch8rwgvg72kq9q0901cy";
|
||||
};
|
||||
};
|
||||
|
||||
yaml-v2 = buildGoPackage rec {
|
||||
name = "yaml-v2-${version}";
|
||||
version = "git-2015-05-19";
|
||||
goPackagePath = "gopkg.in/yaml.v2";
|
||||
src = fetchFromGitHub {
|
||||
rev = "c1cd2254a6dd314c9d73c338c12688c9325d85c6";
|
||||
owner = "go-yaml";
|
||||
repo = "yaml";
|
||||
sha256 = "0xhv0i700hh8lczrwxhn3c99npqma7k4337qrh6k36falm0jpp4s";
|
||||
};
|
||||
};
|
||||
|
||||
yamux = buildGoPackage rec {
|
||||
rev = "b2e55852ddaf823a85c67f798080eb7d08acd71d";
|
||||
name = "yamux-${stdenv.lib.strings.substring 0 7 rev}";
|
||||
|
|
Loading…
Reference in New Issue