nixpkgs/pkgs/servers/monitoring/prometheus/mail-exporter.nix
Profpatsch 4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00

33 lines
954 B
Nix

{ lib, stdenv, buildGoModule, fetchFromGitHub, installShellFiles, nixosTests }:
buildGoModule {
pname = "mailexporter";
version = "2020-07-16";
src = fetchFromGitHub {
owner = "cherti";
repo = "mailexporter";
rev = "f5a552c736ac40ccdc0110d2e9a71619c1cd6862";
sha256 = "0y7sg9qrd7q6g5gi65sjvw6byfmk2ph0a281wjc9cr4pd25xkciz";
};
vendorSha256 = "1hwahk8v3qnmyn6bwk9l2zpr0k7p2w7zjzxmjwgjyx429g9rzqs0";
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installManPage $src/man/mailexporter.1
installManPage $src/man/mailexporter.conf.5
'';
passthru.tests = { inherit (nixosTests.prometheus-exporters) mail; };
meta = with lib; {
description = "Export Prometheus-style metrics about mail server functionality";
homepage = "https://github.com/cherti/mailexporter";
license = licenses.gpl3;
maintainers = with maintainers; [ willibutz globin ];
platforms = platforms.linux;
};
}