uhubctl: fix darwin build (#361491)
[NixPkgs.git] / pkgs / servers / monitoring / prometheus / dnsmasq-exporter.nix
blobe78efeb22d85e2dd0c72e8ddd2c74d051a6ff126
1 { lib, buildGo122Module, fetchFromGitHub, nixosTests }:
3 buildGo122Module rec {
4   pname = "dnsmasq_exporter";
5   version = "0.3.0";
7   src = fetchFromGitHub {
8     owner = "google";
9     repo = "dnsmasq_exporter";
10     rev = "v${version}";
11     hash = "sha256-2sOOJWEEseWwozIyZ7oes400rBjlxIrOOtkP3rSNFXo=";
12   };
14   vendorHash = "sha256-oD68TCNJKwjY3iwE/pUosMIMGOhsWj9cHC/+hq3xxI4=";
16   doCheck = false;
18   passthru.tests = { inherit (nixosTests.prometheus-exporters) dnsmasq; };
20   meta = with lib; {
21     inherit (src.meta) homepage;
22     description = "Dnsmasq exporter for Prometheus";
23     mainProgram = "dnsmasq_exporter";
24     license = licenses.asl20;
25     maintainers = with maintainers; [ willibutz globin ];
26   };