imapfilter: add SSLCAFILE make flag

This fixes: https://github.com/NixOS/nixpkgs/issues/78304
See this upstream issue: https://github.com/lefcha/imapfilter/issues/201
gstqt5
Tom Sydney Kerckhove 2020-04-10 17:04:53 +02:00 committed by Jon
parent 99ffe6a214
commit d0034d151b
1 changed files with 4 additions and 1 deletions

View File

@ -10,8 +10,11 @@ stdenv.mkDerivation rec {
rev = "v${version}";
sha256 = "0f65sg6hhv6778fxwsz4hvarbm97dsb8jj0mg7a9qs273r35pqck";
};
makeFlags = [
"SSLCAFILE=/etc/ssl/certs/ca-bundle.crt"
"PREFIX=$(out)"
];
makeFlagsArray = "PREFIX=$(out)";
propagatedBuildInputs = [ openssl pcre lua ];
meta = {