about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/monitoring/prometheus/shelly-exporter.nix
blob: 106e76b6246028815d5b872abd2e017e6b19fb04 (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
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:

buildGoModule rec {
  pname = "shelly_exporter";
  version = "1.0.0";

  src = fetchFromGitHub {
    owner = "aexel90";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-L0TuBDq5eEahQvzqd1WuvmXuQbbblCM+Nvj15IybnVo=";
  };

  vendorHash = "sha256-BCrge2xLT4b4wpYA+zcsH64a/nfV8+HeZF7L49p2gEw=";

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

  meta = with lib; {
    description = "Shelly humidity sensor exporter for prometheus";
    homepage = "https://github.com/aexel90/shelly_exporter";
    license = licenses.asl20;
    maintainers = with maintainers; [drupol];
  };
}