forked from mirrors/nixpkgs
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
32 lines
991 B
Nix
32 lines
991 B
Nix
{ lib, stdenv, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "unifi-poller";
|
|
version = "2.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "unifi-poller";
|
|
repo = "unifi-poller";
|
|
rev = "v${version}";
|
|
sha256 = "16q9hrbl9qgilj3vb7865l1yx0xhm7m4sx5j1ys5vi63drq59g93";
|
|
};
|
|
|
|
vendorSha256 = "1fgcbg34g0a0f85qv7bjanv2lpnnszcrspfppp2lnj9kv52j4c1w";
|
|
|
|
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
|
|
'';
|
|
|
|
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";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ elseym ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|