nixpkgs/pkgs/servers/mail/rspamd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

109 lines
2.0 KiB
Nix
Raw Normal View History

2024-07-13 13:00:32 +00:00
{
stdenv,
lib,
fetchFromGitHub,
cmake,
doctest,
2024-07-13 13:46:46 +00:00
fmt_11,
2024-07-13 13:00:32 +00:00
perl,
glib,
luajit,
openssl,
pcre,
pkg-config,
sqlite,
ragel,
icu,
hyperscan,
jemalloc,
blas,
lapack,
lua,
libsodium,
xxHash,
zstd,
2024-07-13 13:46:46 +00:00
libarchive,
2024-07-13 13:00:32 +00:00
withBlas ? true,
withHyperscan ? stdenv.hostPlatform.isx86_64,
withLuaJIT ? stdenv.hostPlatform.isx86_64,
2024-07-13 13:00:32 +00:00
nixosTests,
}:
2016-01-11 20:45:31 +00:00
assert withHyperscan -> stdenv.hostPlatform.isx86_64;
2018-11-08 02:04:08 +00:00
2016-01-11 20:45:31 +00:00
stdenv.mkDerivation rec {
pname = "rspamd";
2024-07-24 01:57:05 +00:00
version = "3.9.1";
2016-02-18 03:41:24 +00:00
2016-01-11 20:45:31 +00:00
src = fetchFromGitHub {
owner = "rspamd";
2016-01-11 20:45:31 +00:00
repo = "rspamd";
2016-02-18 03:41:24 +00:00
rev = version;
2024-07-24 01:57:05 +00:00
hash = "sha256-qT94DqX5Dt9pLgqed/j+dtiykwRFY3Fsbvcub7IzAZE=";
2016-01-11 20:45:31 +00:00
};
2021-05-23 18:36:46 +00:00
hardeningEnable = [ "pie" ];
2024-07-13 13:00:32 +00:00
nativeBuildInputs = [
cmake
pkg-config
perl
];
buildInputs =
[
doctest
2024-07-13 13:46:46 +00:00
fmt_11
2024-07-13 13:00:32 +00:00
glib
openssl
pcre
sqlite
ragel
icu
jemalloc
libsodium
xxHash
zstd
2024-07-13 13:46:46 +00:00
libarchive
2024-07-13 13:00:32 +00:00
]
2018-11-08 02:04:08 +00:00
++ lib.optional withHyperscan hyperscan
2024-07-13 13:00:32 +00:00
++ lib.optionals withBlas [
blas
lapack
]
++ lib.optional withLuaJIT luajit
++ lib.optional (!withLuaJIT) lua;
2016-01-11 20:45:31 +00:00
2024-07-13 13:00:32 +00:00
cmakeFlags =
[
# pcre2 jit seems to cause crashes: https://github.com/NixOS/nixpkgs/pull/181908
"-DENABLE_PCRE2=OFF"
"-DDEBIAN_BUILD=ON"
"-DRUNDIR=/run/rspamd"
"-DDBDIR=/var/lib/rspamd"
"-DLOGDIR=/var/log/rspamd"
"-DLOCAL_CONFDIR=/etc/rspamd"
"-DENABLE_JEMALLOC=ON"
"-DSYSTEM_DOCTEST=ON"
"-DSYSTEM_FMT=ON"
"-DSYSTEM_XXHASH=ON"
"-DSYSTEM_ZSTD=ON"
]
++ lib.optional withHyperscan "-DENABLE_HYPERSCAN=ON"
++ lib.optional (!withLuaJIT) "-DENABLE_LUAJIT=OFF";
2016-01-11 20:45:31 +00:00
2020-10-22 00:36:12 +00:00
passthru.tests.rspamd = nixosTests.rspamd;
meta = with lib; {
homepage = "https://rspamd.com";
license = licenses.asl20;
description = "Advanced spam filtering system";
2024-07-13 13:00:32 +00:00
maintainers = with maintainers; [
avnik
fpletz
globin
lewo
];
platforms = with platforms; linux;
2016-01-11 20:45:31 +00:00
};
}