2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2020-08-12 12:14:45 +01:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "unifi-poller";
|
2021-03-24 22:44:14 +00:00
|
|
|
version = "2.1.0";
|
2020-08-12 12:14:45 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "unifi-poller";
|
|
|
|
repo = "unifi-poller";
|
|
|
|
rev = "v${version}";
|
2021-03-24 22:44:14 +00:00
|
|
|
sha256 = "sha256-C7QjMzmy2CMCk2oqRiThUQBKgltT0PzZArvZ+gOmJ2I=";
|
2020-08-12 12:14:45 +01:00
|
|
|
};
|
|
|
|
|
2021-03-24 22:44:14 +00:00
|
|
|
vendorSha256 = "sha256-LOBkdyfsw7ua6TsLglO5jdR9NWo5Df8rnQ8MH+eIz4g=";
|
2020-08-12 12:14:45 +01:00
|
|
|
|
|
|
|
buildFlagsArray = ''
|
|
|
|
-ldflags=-w -s
|
|
|
|
-X github.com/prometheus/common/version.Branch=master
|
|
|
|
-X github.com/prometheus/common/version.BuildDate=unknown
|
|
|
|
-X github.com/prometheus/common/version.Revision=${src.rev}
|
|
|
|
-X github.com/prometheus/common/version.Version=${version}-0
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-08-12 12:14:45 +01:00
|
|
|
description = "Collect ALL UniFi Controller, Site, Device & Client Data - Export to InfluxDB or Prometheus";
|
|
|
|
homepage = "https://github.com/unifi-poller/unifi-poller";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ elseym ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|