biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / monitoring / prometheus / mail-exporter.nix
blob851d297e760f8a826aa2358bf4205a34103cc279
1 { lib, buildGoModule, fetchFromGitHub, installShellFiles, nixosTests }:
3 buildGoModule {
4   pname = "mailexporter";
5   version = "2020-07-16";
7   src = fetchFromGitHub {
8     owner = "cherti";
9     repo = "mailexporter";
10     rev = "f5a552c736ac40ccdc0110d2e9a71619c1cd6862";
11     hash = "sha256-P7LZi2iXZJaY5AEJBeAVszq/DN9SFxNfeQaflnF6+ng=";
12   };
14   vendorHash = "sha256-QOOf00uCdC8fl7V/+Q8X90yQ7xc0Tb6M9dXisdGEisM=";
16   nativeBuildInputs = [ installShellFiles ];
18   postInstall = ''
19     installManPage $src/man/mailexporter.1
20     installManPage $src/man/mailexporter.conf.5
21   '';
23   passthru.tests = { inherit (nixosTests.prometheus-exporters) mail; };
25   meta = with lib; {
26     description = "Export Prometheus-style metrics about mail server functionality";
27     mainProgram = "mailexporter";
28     homepage = "https://github.com/cherti/mailexporter";
29     license = licenses.gpl3;
30     maintainers = with maintainers; [ willibutz globin ];
31     platforms = platforms.linux;
32   };