summary refs log tree commit diff
path: root/pkgs/servers/monitoring/prometheus/fritzbox-exporter.nix
blob: bc9058e36d97c9f476c830edb8e9ecbbb2e06fbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, stdenv, buildGoPackage, fetchFromGitHub, nixosTests }:

buildGoPackage rec {
  pname = "fritzbox-exporter";
  version = "v1.0-32-g90fc0c5";
  rev = "90fc0c572d3340803f7c2aafc4b097db7af1f871";

  src = fetchFromGitHub {
    inherit rev;
    owner = "mxschmitt";
    repo = "fritzbox_exporter";
    sha256 = "08gcc60g187x1d14vh7n7s52zkqgj3fvg5v84i6dw55rmb6zzxri";
  };

  goPackagePath = "github.com/mxschmitt/fritzbox_exporter";

  goDeps = ./fritzbox-exporter-deps.nix;

  passthru.tests = { inherit (nixosTests.prometheus-exporters) fritzbox; };

  meta = with lib; {
    description = "Prometheus Exporter for FRITZ!Box (TR64 and UPnP)";
    homepage = "https://github.com/ndecker/fritzbox_exporter";
    license = licenses.asl20;
    maintainers = with maintainers; [ bachp flokli ];
    platforms = platforms.unix;
  };
}