2021-01-01 19:45:06 +00:00
|
|
|
{ lib, fetchurl, perlPackages, makeWrapper, gnupg, re2c, gcc, gnumake }:
|
2012-07-07 23:32:30 +01:00
|
|
|
|
2018-10-13 00:10:38 +01:00
|
|
|
perlPackages.buildPerlPackage rec {
|
2019-06-20 14:07:56 +01:00
|
|
|
pname = "SpamAssassin";
|
2021-08-08 13:13:31 +01:00
|
|
|
version = "3.4.6";
|
2012-07-07 23:32:30 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-06-20 14:07:56 +01:00
|
|
|
url = "mirror://apache/spamassassin/source/Mail-${pname}-${version}.tar.bz2";
|
2021-08-08 13:13:31 +01:00
|
|
|
sha256 = "044ng2aazqy8g0m17q0a4939ck1ca4x230q2q7q7jndvwkrpaj5w";
|
2012-07-07 23:32:30 +01:00
|
|
|
};
|
|
|
|
|
2022-01-03 13:14:37 +00:00
|
|
|
# ExtUtil::MakeMaker is bundled with Perl, but the bundled version
|
|
|
|
# causes build errors for aarch64-darwin, so we override it with the
|
|
|
|
# latest version. We can drop the dependency to go back to the
|
|
|
|
# bundled version when the version that comes with Perl is ≥7.57_02.
|
|
|
|
#
|
|
|
|
# Check the version bundled with Perl like this:
|
|
|
|
# perl -e 'use ExtUtils::MakeMaker qw($VERSION); print "$VERSION\n"'
|
|
|
|
nativeBuildInputs = [ makeWrapper perlPackages.ExtUtilsMakeMaker ];
|
2021-02-07 09:17:39 +00:00
|
|
|
buildInputs = (with perlPackages; [
|
2019-12-24 22:17:31 +00:00
|
|
|
HTMLParser NetCIDRLite NetDNS NetAddrIP DBFile HTTPDate MailDKIM LWP
|
2022-01-03 13:14:37 +00:00
|
|
|
LWPProtocolHttps IOSocketSSL DBI EncodeDetect IPCountry NetIdent
|
|
|
|
Razor2ClientAgent MailSPF NetDNSResolverProgrammable Socket6
|
2019-12-24 22:17:31 +00:00
|
|
|
]);
|
2012-07-07 23:32:30 +01:00
|
|
|
|
2012-08-03 12:21:29 +01:00
|
|
|
# Enabling 'taint' mode is desirable, but that flag disables support
|
|
|
|
# for the PERL5LIB environment variable. Needs further investigation.
|
2019-10-27 13:03:25 +00:00
|
|
|
makeFlags = [ "PERL_BIN=${perlPackages.perl}/bin/perl" "PERL_TAINT=no" ];
|
2012-07-07 23:32:30 +01:00
|
|
|
|
2019-12-24 22:15:05 +00:00
|
|
|
makeMakerFlags = [ "SYSCONFDIR=/etc LOCALSTATEDIR=/var/lib/spamassassin" ];
|
2012-09-27 14:28:14 +01:00
|
|
|
|
2012-07-07 23:32:30 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2012-08-03 12:21:29 +01:00
|
|
|
postInstall = ''
|
2015-07-21 16:34:52 +01:00
|
|
|
mkdir -p $out/share/spamassassin
|
2012-09-27 14:28:14 +01:00
|
|
|
mv "rules/"* $out/share/spamassassin/
|
|
|
|
|
2012-08-03 12:21:29 +01:00
|
|
|
for n in "$out/bin/"*; do
|
2021-01-01 19:45:06 +00:00
|
|
|
wrapProgram "$n" --prefix PERL5LIB : "$PERL5LIB" --prefix PATH : ${lib.makeBinPath [ gnupg re2c gcc gnumake ]}
|
2012-08-03 12:21:29 +01:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2012-07-07 23:32:30 +01:00
|
|
|
meta = {
|
2022-01-03 15:53:12 +00:00
|
|
|
homepage = "https://spamassassin.apache.org/";
|
2012-07-07 23:32:30 +01:00
|
|
|
description = "Open-Source Spam Filter";
|
2021-01-15 07:07:56 +00:00
|
|
|
license = lib.licenses.asl20;
|
|
|
|
platforms = lib.platforms.unix;
|
2021-10-14 09:59:33 +01:00
|
|
|
maintainers = with lib.maintainers; [ qknight qyliss ];
|
2012-07-07 23:32:30 +01:00
|
|
|
};
|
|
|
|
}
|