Skip to content

Commit 61d3f6f

Browse files
committed
opendmarc: init at 1.3.3
1 parent e303532 commit 61d3f6f

2 files changed

Lines changed: 34 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{ stdenv, fetchFromGitHub, autoreconfHook, libmilter }:
2+
3+
stdenv.mkDerivation rec {
4+
pname = "opendmarc";
5+
version = "1.3.3";
6+
7+
src = fetchFromGitHub {
8+
owner = "trusteddomainproject";
9+
repo = "opendmarc";
10+
rev = "rel-opendmarc-${builtins.replaceStrings [ "." ] [ "-" ] version}";
11+
sha256 = "sha256-SQH85FLfVEEtYhR1+A1XxCDMiTjDgLQX6zifbLxCa5c=";
12+
};
13+
14+
outputs = [ "bin" "dev" "out" "doc" ];
15+
16+
nativeBuildInputs = [ autoreconfHook ];
17+
18+
postPatch = ''
19+
substituteInPlace configure.ac --replace ' docs/Makefile' ""
20+
'';
21+
22+
configureFlags = [
23+
"--with-milter=${libmilter}"
24+
];
25+
26+
meta = with stdenv.lib; {
27+
description = "A free open source software implementation of the DMARC specification";
28+
homepage = "http://www.trusteddomain.org/opendmarc/";
29+
license = with licenses; [ bsd3 sendmail ];
30+
maintainers = with maintainers; [ ajs124 das_j ];
31+
};
32+
}

pkgs/top-level/all-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14216,6 +14216,8 @@ in
1421614216

1421714217
opencolorio = callPackage ../development/libraries/opencolorio { };
1421814218

14219+
opendmarc = callPackage ../development/libraries/opendmarc { };
14220+
1421914221
ois = callPackage ../development/libraries/ois {};
1422014222

1422114223
openh264 = callPackage ../development/libraries/openh264 { };

0 commit comments

Comments
 (0)