unifi-poller: add changelog to meta

This commit is contained in:
Fabian Affolter
2022-11-20 20:41:36 +01:00
committed by GitHub
parent 95eeff0043
commit ee147f3665
@@ -1,4 +1,7 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "unifi-poller";
@@ -8,10 +11,10 @@ buildGoModule rec {
owner = "unifi-poller";
repo = "unifi-poller";
rev = "v${version}";
sha256 = "sha256-eC+jEtSLWhiL3V+GKfRN5MVF18/2tnA1kI096j3XQB0=";
hash = "sha256-eC+jEtSLWhiL3V+GKfRN5MVF18/2tnA1kI096j3XQB0=";
};
vendorSha256 = "sha256-WVYQ3cZOO+EyJRTFcMjziDHwqqinm1IvxvSLuHTaqT8=";
vendorHash = "sha256-WVYQ3cZOO+EyJRTFcMjziDHwqqinm1IvxvSLuHTaqT8=";
ldflags = [
"-w" "-s"
@@ -24,6 +27,7 @@ buildGoModule rec {
meta = with lib; {
description = "Collect ALL UniFi Controller, Site, Device & Client Data - Export to InfluxDB or Prometheus";
homepage = "https://github.com/unifi-poller/unifi-poller";
changelog = "https://github.com/unpoller/unpoller/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ ];
};