Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / monitoring / prometheus / openldap-exporter.nix
blob49181699d65a75cde987e5b6e6ff088d49a3f94b
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "openldap_exporter";
5   version = "2.2.2";
7   src = fetchFromGitHub {
8     owner = "tomcz";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-1u+89odwV/lz34wtrK91lET2bOqkH6kRA7JCjzsmiEg=";
12   };
14   vendorHash = null;
16   ldflags = [
17     "-s"
18     "-w"
19     "-X github.com/tomcz/openldap_exporter.tag=v${version}"
20     "-X github.com/tomcz/openldap_exporter.commit=unknown"
21   ];
24   meta = with lib; {
25     homepage = "https://github.com/tomcz/openldap_exporter";
26     description = "Simple service that scrapes metrics from OpenLDAP and exports them via HTTP for Prometheus consumption";
27     mainProgram = "openldap_exporter";
28     license = licenses.mit;
29     maintainers = with maintainers; [ ma27 ];
30   };