lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v192 13 lines 365 B view raw
1{stdenv, fetchurl, openssl, libmilter}: 2 3stdenv.mkDerivation rec { 4 name = "opendkim-2.4.3"; 5 src = fetchurl { 6 url = "mirror://sourceforge/opendkim/files/${name}.tar.gz"; 7 sha256 = "01h97h012gcp8rimjbc9mrv4759cnw4flb42ddiady1bmb2p7vy3"; 8 }; 9 10 configureFlags="--with-openssl=${openssl} --with-milter=${libmilter}"; 11 12 buildInputs = [openssl libmilter]; 13}