2020-06-18 11:48:40 +01:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub, net-snmp, nixosTests }:
|
2016-10-05 15:30:18 +01:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "snmp_exporter";
|
2020-05-26 20:10:44 +01:00
|
|
|
version = "0.18.0";
|
2016-10-05 15:30:18 +01:00
|
|
|
|
|
|
|
goPackagePath = "github.com/prometheus/snmp_exporter";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "prometheus";
|
|
|
|
repo = "snmp_exporter";
|
2018-05-01 13:55:24 +01:00
|
|
|
rev = "v${version}";
|
2020-05-26 20:10:44 +01:00
|
|
|
sha256 = "1zdkb036zy2sw1drlp2m2z1yb7857d2y3yn2y3l0a1kkd4zcqkk4";
|
2016-10-05 15:30:18 +01:00
|
|
|
};
|
|
|
|
|
2019-12-21 22:44:50 +00:00
|
|
|
buildInputs = [ net-snmp ];
|
2017-04-11 17:02:23 +01:00
|
|
|
|
2016-10-05 15:30:18 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2020-06-18 11:48:40 +01:00
|
|
|
passthru.tests = { inherit (nixosTests.prometheus-exporters) snmp; };
|
|
|
|
|
2016-10-05 15:30:18 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "SNMP Exporter for Prometheus";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/prometheus/snmp_exporter";
|
2016-10-05 15:30:18 +01:00
|
|
|
license = licenses.asl20;
|
2020-05-26 20:11:13 +01:00
|
|
|
maintainers = with maintainers; [ oida willibutz Frostman ];
|
2016-10-05 15:30:18 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|