nixpkgs/pkgs/servers/monitoring/unifi-poller/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
927 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-08-12 11:14:45 +00:00
buildGoModule rec {
pname = "unifi-poller";
2021-08-22 01:17:04 +00:00
version = "2.1.3";
2020-08-12 11:14:45 +00:00
src = fetchFromGitHub {
owner = "unifi-poller";
repo = "unifi-poller";
rev = "v${version}";
2021-08-22 01:17:04 +00:00
sha256 = "sha256-xh9s1xAhIeEmeDprl7iPdE6pxmxZjzgMvilobiIoJp0=";
2020-08-12 11:14:45 +00:00
};
2021-08-22 01:17:04 +00:00
vendorSha256 = "sha256-HoYgBKTl9HIMVzzzNYtRrfmqb7HCpPHVPeR4gUXneWk=";
2020-08-12 11:14:45 +00:00
2021-08-26 06:45:51 +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-08-12 11:14:45 +00:00
meta = with lib; {
2020-08-12 11:14:45 +00: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; [ ];
2020-08-12 11:14:45 +00:00
};
}