opendmarc: init at 1.3.3

This commit is contained in:
ajs124 2020-05-31 19:12:21 +02:00
parent e303532eab
commit 61d3f6f7d7
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub, autoreconfHook, libmilter }:
stdenv.mkDerivation rec {
pname = "opendmarc";
version = "1.3.3";
src = fetchFromGitHub {
owner = "trusteddomainproject";
repo = "opendmarc";
rev = "rel-opendmarc-${builtins.replaceStrings [ "." ] [ "-" ] version}";
sha256 = "sha256-SQH85FLfVEEtYhR1+A1XxCDMiTjDgLQX6zifbLxCa5c=";
};
outputs = [ "bin" "dev" "out" "doc" ];
nativeBuildInputs = [ autoreconfHook ];
postPatch = ''
substituteInPlace configure.ac --replace ' docs/Makefile' ""
'';
configureFlags = [
"--with-milter=${libmilter}"
];
meta = with stdenv.lib; {
description = "A free open source software implementation of the DMARC specification";
homepage = "http://www.trusteddomain.org/opendmarc/";
license = with licenses; [ bsd3 sendmail ];
maintainers = with maintainers; [ ajs124 das_j ];
};
}

View File

@ -14216,6 +14216,8 @@ in
opencolorio = callPackage ../development/libraries/opencolorio { };
opendmarc = callPackage ../development/libraries/opendmarc { };
ois = callPackage ../development/libraries/ois {};
openh264 = callPackage ../development/libraries/openh264 { };