2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
2017-03-07 23:47:05 +01:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "unifi-exporter";
|
2017-08-23 20:24:09 +02:00
|
|
|
version = "0.4.0+git1";
|
|
|
|
rev = "9a4e69fdea91dd0033bda4842998d751b40a6130";
|
2017-03-07 23:47:05 +01:00
|
|
|
|
|
|
|
goPackagePath = "github.com/mdlayher/unifi_exporter";
|
|
|
|
|
|
|
|
src= fetchFromGitHub {
|
|
|
|
inherit rev;
|
|
|
|
owner = "mdlayher";
|
|
|
|
repo = "unifi_exporter";
|
2017-08-23 20:24:09 +02:00
|
|
|
sha256 = "08zqvwvdqnc301f8jfh7bdvc138szw6xszx884b2v8w2x38w3rmn";
|
2017-03-07 23:47:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Prometheus exporter that exposes metrics from a Ubiquiti UniFi Controller and UniFi devices";
|
|
|
|
homepage = https://github.com/mdlayher/unifi_exporter;
|
|
|
|
license = licenses.mit;
|
2019-08-20 19:36:05 +02:00
|
|
|
maintainers = with maintainers; [ bachp globin ];
|
2017-03-07 23:47:05 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|