summary refs log tree commit diff
path: root/pkgs/servers/monitoring/prometheus/unbound-exporter.nix
blob: 6b26379bf2671530f4005c4ae936bbcd5be1584c (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
29
30
{ lib, rustPlatform, fetchFromGitHub, openssl, pkg-config, nixosTests }:

rustPlatform.buildRustPackage rec {
  pname = "unbound-telemetry";
  version = "unstable-2021-03-17";

  src = fetchFromGitHub {
    owner = "svartalf";
    repo = pname;
    rev = "7f1b6d4e9e4b6a3216a78c23df745bcf8fc84021";
    sha256 = "xCelL6WGaTRhDJkkUdpdwj1zcKKAU2dyUv3mHeI4oAw=";
  };

  cargoSha256 = "P3nAtYOuwNSLMP7q1L5zKTsZ6rJA/qL1mhVHzP3szi4=";

  nativeBuildInputs = [ pkg-config ];

  buildInputs = [ openssl ];

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

  meta = with lib; {
    description = "Prometheus exporter for Unbound DNS resolver";
    homepage = "https://github.com/svartalf/unbound-telemetry";
    license = licenses.mit;
    maintainers = with maintainers; [ SuperSandro2000 ];
  };
}