2015-12-11 17:00:49 +00:00
|
|
|
{stdenv, fetchurl, openssl, libmilter, libbsd}:
|
2010-02-09 10:32:55 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-12-11 17:00:49 +00:00
|
|
|
name = "opendkim-2.10.3";
|
2010-02-09 10:32:55 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/opendkim/files/${name}.tar.gz";
|
2015-12-11 17:00:49 +00:00
|
|
|
sha256 = "06v8bqhh604sz9rh5bvw278issrwjgc4h1wx2pz9a84lpxbvm823";
|
2010-02-09 10:32:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags="--with-openssl=${openssl} --with-milter=${libmilter}";
|
|
|
|
|
2015-12-11 17:00:49 +00:00
|
|
|
buildInputs = [openssl libmilter libbsd];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "C library for producing DKIM-aware applications and an open source milter for providing DKIM service";
|
|
|
|
homepage = http://opendkim.org/;
|
|
|
|
maintainers = [ ];
|
|
|
|
platforms = with stdenv.lib.platforms; all;
|
|
|
|
};
|
|
|
|
|
2010-02-09 10:32:55 +00:00
|
|
|
}
|