mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
24 lines
638 B
Nix
24 lines
638 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|