mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 05:23:16 +00:00
41 lines
893 B
Nix
41 lines
893 B
Nix
{ lib
|
|
, buildGoModule
|
|
, dmarc-report-converter
|
|
, fetchFromGitHub
|
|
, runCommand
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "dmarc-report-converter";
|
|
version = "0.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tierpod";
|
|
repo = "dmarc-report-converter";
|
|
rev = "v${version}";
|
|
hash = "sha256-cP96tiBpMFNEHuIF0sovi+Q4yW8wMUqr138RyMOFoho=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.version=${version}"
|
|
];
|
|
|
|
passthru.tests = {
|
|
simple = runCommand "${pname}-test" { } ''
|
|
${dmarc-report-converter}/bin/dmarc-report-converter -h > $out
|
|
'';
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Convert DMARC report files from xml to human-readable formats";
|
|
homepage = "https://github.com/tierpod/dmarc-report-converter";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ Nebucatnetzer ];
|
|
mainProgram = "dmarc-report-converter";
|
|
};
|
|
}
|