mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
, nixosTests
|
|
, systemd
|
|
, withSystemdSupport ? true
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "postfix_exporter";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kumina";
|
|
repo = "postfix_exporter";
|
|
rev = version;
|
|
sha256 = "sha256-63ze51Qbjm+3CV1OFGFa9cS4ucZ+gMKaJyBF2b//CfM=";
|
|
};
|
|
|
|
vendorHash = "sha256-a4Lk4wh4mvXEjLgFksZIVVtbp+zTUyjtLVuk7vuot2k=";
|
|
|
|
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 = "A Prometheus exporter for Postfix";
|
|
mainProgram = "postfix_exporter";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ willibutz globin ];
|
|
};
|
|
}
|