aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/servers/monitoring/prometheus/fritzbox-exporter.nix
blob: 997b8784a1c5c548e1c60713419ad1041c614636 (plain)
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
{ stdenv, buildGoPackage, fetchFromGitHub }:

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;

  meta = with stdenv.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;
  };
}