Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
127 lines
2.5 KiB
Nix
127 lines
2.5 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
fetchpatch2,
|
|
cmake,
|
|
doctest,
|
|
fmt,
|
|
perl,
|
|
glib,
|
|
luajit,
|
|
openssl,
|
|
pcre,
|
|
pkg-config,
|
|
sqlite,
|
|
ragel,
|
|
fasttext,
|
|
icu,
|
|
hyperscan,
|
|
vectorscan,
|
|
jemalloc,
|
|
blas,
|
|
lapack,
|
|
lua,
|
|
libsodium,
|
|
xxHash,
|
|
zstd,
|
|
libarchive,
|
|
# Enabling blas support breaks bayes filter training from dovecot in nixos-mailserver tests
|
|
# https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/issues/321
|
|
withBlas ? false,
|
|
withHyperscan ? false,
|
|
withLuaJIT ? stdenv.hostPlatform.isx86_64,
|
|
withVectorscan ? true,
|
|
nixosTests,
|
|
}:
|
|
|
|
assert withHyperscan -> stdenv.hostPlatform.isx86_64;
|
|
assert (!withHyperscan) || (!withVectorscan);
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rspamd";
|
|
version = "3.13.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rspamd";
|
|
repo = "rspamd";
|
|
rev = version;
|
|
hash = "sha256-0qX/rvcEXxzr/PGL2A59T18Mfcalrjz0KJpEWBKJsZg=";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch2 {
|
|
url = "https://github.com/rspamd/rspamd/commit/d808fd75ff1db1821b1dd817eb4ba9a118b31090.patch";
|
|
hash = "sha256-v1Gn3dPxN/h92NYK3PTrZomnbwUcVkAWcYeQCFzQNyo=";
|
|
})
|
|
];
|
|
|
|
hardeningEnable = [ "pie" ];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
perl
|
|
ragel
|
|
];
|
|
|
|
buildInputs = [
|
|
doctest
|
|
fmt
|
|
glib
|
|
openssl
|
|
pcre
|
|
sqlite
|
|
ragel
|
|
fasttext
|
|
icu
|
|
jemalloc
|
|
libsodium
|
|
xxHash
|
|
zstd
|
|
libarchive
|
|
]
|
|
++ lib.optionals withBlas [
|
|
blas
|
|
lapack
|
|
]
|
|
++ lib.optional withHyperscan hyperscan
|
|
++ lib.optional withLuaJIT luajit
|
|
++ lib.optional (!withLuaJIT) lua
|
|
++ lib.optional withVectorscan vectorscan;
|
|
|
|
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_BLAS=${if withBlas then "ON" else "OFF"}"
|
|
"-DENABLE_FASTTEXT=ON"
|
|
"-DENABLE_JEMALLOC=ON"
|
|
"-DSYSTEM_DOCTEST=ON"
|
|
"-DSYSTEM_FMT=ON"
|
|
"-DSYSTEM_XXHASH=ON"
|
|
"-DSYSTEM_ZSTD=ON"
|
|
"-DENABLE_HYPERSCAN=ON"
|
|
]
|
|
++ lib.optional (!withLuaJIT) "-DENABLE_LUAJIT=OFF";
|
|
|
|
passthru.tests.rspamd = nixosTests.rspamd;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://rspamd.com";
|
|
license = licenses.asl20;
|
|
description = "Advanced spam filtering system";
|
|
maintainers = with maintainers; [
|
|
avnik
|
|
fpletz
|
|
globin
|
|
lewo
|
|
];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|