Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.1 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildGoModule,
fetchFromGitHub,
makeWrapper,
nixosTests,
systemd,
withSystemdSupport ? true,
}:
buildGoModule rec {
pname = "postfix_exporter";
version = "0.15.0";
src = fetchFromGitHub {
owner = "Hsn723";
repo = "postfix_exporter";
tag = "v${version}";
sha256 = "sha256-0HgvkKdgfKcX74dJLOxSnp1xJuaOazusgDrCdhX/Lg4=";
};
vendorHash = "sha256-HsXVZ6fmaGU93CpA+t/VpIsEigkh09Uw8h7eSeaThk4=";
ldflags = [
"-s"
"-w"
];
nativeBuildInputs = lib.optionals withSystemdSupport [ makeWrapper ];
buildInputs = lib.optionals withSystemdSupport [ systemd ];
tags = lib.optionals (!withSystemdSupport) "nosystemd";
postInstall = lib.optionals withSystemdSupport ''
wrapProgram $out/bin/postfix_exporter \
--prefix LD_LIBRARY_PATH : "${lib.getLib systemd}/lib"
'';
passthru.tests = { inherit (nixosTests.prometheus-exporters) postfix; };
meta = with lib; {
inherit (src.meta) homepage;
description = "Prometheus exporter for Postfix";
mainProgram = "postfix_exporter";
license = licenses.asl20;
maintainers = with maintainers; [
globin
];
};
}