consul_exporter: init at 0.3.0 (#27162)
This commit is contained in:
committed by
Jörg Thalheim
parent
b8726c346c
commit
0f2db06540
@@ -0,0 +1,23 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "consul_exporter-${version}";
|
||||
version = "0.3.0";
|
||||
|
||||
goPackagePath = "github.com/prometheus/consul_exporter";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "prometheus";
|
||||
repo = "consul_exporter";
|
||||
rev = "v${version}";
|
||||
sha256 = "1zffbxyfmqpbdqkx5rb5vjgd9j4p4zcrh6jvn1zhbdzrcs7khnd9";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Prometheus exporter for Consul metrics";
|
||||
homepage = https://github.com/prometheus/consul_exporter;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ hectorj ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user