2022-11-21 17:40:18 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
2022-12-17 10:02:37 +00:00
|
|
|
, nixosTests
|
2022-11-21 17:40:18 +00:00
|
|
|
}:
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
2022-12-17 10:02:37 +00:00
|
|
|
pname = "unpoller";
|
2023-02-02 18:25:31 +00:00
|
|
|
version = "2.7.11";
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2022-12-17 10:02:37 +00:00
|
|
|
owner = "unpoller";
|
|
|
|
repo = "unpoller";
|
2020-09-25 04:45:31 +00:00
|
|
|
rev = "v${version}";
|
2023-02-02 18:25:31 +00:00
|
|
|
hash = "sha256-/tGmMeHrurKTaRQLHusOkjISuxrrT/JjUCimEL7zoIk=";
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
vendorHash = "sha256-ZwJCqL8vU38k8pfNmKGIhJSgMwxQuzBBfl6IduQrQEw=";
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2021-08-27 14:25:00 +00:00
|
|
|
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"
|
|
|
|
];
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
passthru.tests = { inherit (nixosTests.prometheus-exporters) unpoller; };
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-09-25 04:45:31 +00:00
|
|
|
description = "Collect ALL UniFi Controller, Site, Device & Client Data - Export to InfluxDB or Prometheus";
|
2022-12-17 10:02:37 +00:00
|
|
|
homepage = "https://github.com/unpoller/unpoller";
|
2022-11-21 17:40:18 +00:00
|
|
|
changelog = "https://github.com/unpoller/unpoller/releases/tag/v${version}";
|
2020-09-25 04:45:31 +00:00
|
|
|
license = licenses.mit;
|
2022-12-17 10:02:37 +00:00
|
|
|
maintainers = with maintainers; [ Frostman ];
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
}
|