summary refs log tree commit diff
path: root/pkgs/development/libraries/opendkim/default.nix
blob: 5dfd87c4d84d12261c4b7efbd00b0dd9af5af9e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl, openssl, libmilter}:

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

  configureFlags="--with-openssl=${openssl} --with-milter=${libmilter}";

  buildInputs = [openssl libmilter];
}