Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / monitoring / prometheus / imap-mailstat-exporter.nix
blobbd06041d0209b0889a67e9bb10881a8b84c73a68
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 , installShellFiles
5 }:
7 buildGoModule rec {
8   pname = "imap-mailstat-exporter";
9   version = "0.0.1";
11   src = fetchFromGitHub {
12     owner = "bt909";
13     repo = "imap-mailstat-exporter";
14     rev = "refs/tags/v${version}";
15     hash = "sha256-aR/94C9SI+FPs3zg3bpexmgGYrhxghyHwpXj25x0yuw=";
16   };
18   vendorHash = "sha256-M5Ho4CiO5DC6mWzenXEo2pu0WLHj5S8AV3oEFwD31Sw=";
20   nativeBuildInputs = [ installShellFiles ];
22   meta = with lib; {
23     description = "Export Prometheus-style metrics about how many emails you have in your INBOX and in additional configured folders";
24     mainProgram = "imap-mailstat-exporter";
25     homepage = "https://github.com/bt909/imap-mailstat-exporter";
26     license = licenses.mit;
27     maintainers = with maintainers; [ raboof ];
28     platforms = platforms.linux;
29   };