Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / monitoring / prometheus / collectd-exporter.nix
blob7997bacdb1bfa6ff85b8e9351008f104ca9bce4a
1 { lib, buildGoModule, fetchFromGitHub, nixosTests }:
3 buildGoModule rec {
4   pname = "collectd-exporter";
5   version = "0.6.0";
7   src = fetchFromGitHub {
8     owner = "prometheus";
9     repo = "collectd_exporter";
10     rev = "v${version}";
11     sha256 = "sha256-8oibunEHPtNdbhVgF3CL6D/xE7bR8hee6+D2IJMzaqY=";
12   };
14   vendorHash = "sha256-fQO2fiotqv18xewXVyh6sA4zx5ZNUR6mCebYenryrKI=";
16   ldflags = [ "-s" "-w" ];
18   passthru.tests = { inherit (nixosTests.prometheus-exporters) collectd; };
20   meta = with lib; {
21     description = "Relay server for exporting metrics from collectd to Prometheus";
22     mainProgram = "collectd_exporter";
23     homepage = "https://github.com/prometheus/collectd_exporter";
24     license = licenses.asl20;
25     maintainers = with maintainers; [ benley ];
26   };