Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / monitoring / prometheus / nginxlog-exporter.nix
blob3883cdaff5cc52739d3df709f5996823d9869a5d
1 { lib, buildGoModule, fetchFromGitHub, nixosTests }:
3 buildGoModule rec {
4   pname = "nginxlog_exporter";
5   version = "1.11.0";
7   src = fetchFromGitHub {
8     owner = "martin-helmich";
9     repo = "prometheus-nginxlog-exporter";
10     rev = "v${version}";
11     sha256 = "sha256-UkXrVHHHZ9mEgsMUcHu+wI6NZFw4h3X4atDBjpBcz8E=";
12   };
14   vendorHash = "sha256-RzqfmP1d3zqageiGSr+CxSJQxAXmOKRCwj/7KO2f3EE=";
16   subPackages = [ "." ];
18   passthru.tests = { inherit (nixosTests.prometheus-exporters) nginxlog; };
20   meta = with lib; {
21     description = "Export metrics from Nginx access log files to Prometheus";
22     mainProgram = "prometheus-nginxlog-exporter";
23     homepage = "https://github.com/martin-helmich/prometheus-nginxlog-exporter";
24     license = licenses.asl20;
25     maintainers = with maintainers; [ mmahut ];
26   };