opendmarc: init at 1.3.3
This commit is contained in:
parent
e303532eab
commit
61d3f6f7d7
32
pkgs/development/libraries/opendmarc/default.nix
Normal file
32
pkgs/development/libraries/opendmarc/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -14216,6 +14216,8 @@ in
|
|||||||
|
|
||||||
opencolorio = callPackage ../development/libraries/opencolorio { };
|
opencolorio = callPackage ../development/libraries/opencolorio { };
|
||||||
|
|
||||||
|
opendmarc = callPackage ../development/libraries/opendmarc { };
|
||||||
|
|
||||||
ois = callPackage ../development/libraries/ois {};
|
ois = callPackage ../development/libraries/ois {};
|
||||||
|
|
||||||
openh264 = callPackage ../development/libraries/openh264 { };
|
openh264 = callPackage ../development/libraries/openh264 { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user