summary refs log tree commit diff
path: root/pkgs/development/libraries/opendkim/default.nix
blob: d84f9e755100b99ee5a6dd742d5fe1fe5bf7f1cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{stdenv, fetchurl, openssl, libmilter, libbsd}:

stdenv.mkDerivation rec {
  name = "opendkim-2.10.3";
  src = fetchurl {
    url = "mirror://sourceforge/opendkim/files/${name}.tar.gz";
    sha256 = "06v8bqhh604sz9rh5bvw278issrwjgc4h1wx2pz9a84lpxbvm823";
  };

  configureFlags="--with-openssl=${openssl} --with-milter=${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;
  };

}