opendkim: 2.4.3 > 2.10.3

Added some metadata as well.
This commit is contained in:
leenaars 2015-12-11 18:00:49 +01:00
parent 146784f835
commit 3ade7b690e

View File

@ -1,13 +1,21 @@
{stdenv, fetchurl, openssl, libmilter}:
{stdenv, fetchurl, openssl, libmilter, libbsd}:
stdenv.mkDerivation rec {
name = "opendkim-2.4.3";
name = "opendkim-2.10.3";
src = fetchurl {
url = "mirror://sourceforge/opendkim/files/${name}.tar.gz";
sha256 = "01h97h012gcp8rimjbc9mrv4759cnw4flb42ddiady1bmb2p7vy3";
sha256 = "06v8bqhh604sz9rh5bvw278issrwjgc4h1wx2pz9a84lpxbvm823";
};
configureFlags="--with-openssl=${openssl} --with-milter=${libmilter}";
buildInputs = [openssl libmilter];
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;
};
}