2018-11-06 14:44:40 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, perl
|
2022-07-17 18:18:46 +00:00
|
|
|
, glib, luajit, openssl, pcre, pkg-config, sqlite, ragel, icu
|
2020-03-31 14:47:18 +00:00
|
|
|
, hyperscan, jemalloc, blas, lapack, lua, libsodium
|
2018-11-08 16:01:46 +00:00
|
|
|
, withBlas ? true
|
2018-11-08 02:04:08 +00:00
|
|
|
, withHyperscan ? stdenv.isx86_64
|
2019-09-13 11:38:24 +00:00
|
|
|
, withLuaJIT ? stdenv.isx86_64
|
2020-10-22 00:36:12 +00:00
|
|
|
, nixosTests
|
2018-11-06 14:44:40 +00:00
|
|
|
}:
|
2016-01-11 20:45:31 +00:00
|
|
|
|
2018-11-08 02:04:08 +00:00
|
|
|
assert withHyperscan -> stdenv.isx86_64;
|
|
|
|
|
2016-01-11 20:45:31 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "rspamd";
|
2022-04-14 12:41:17 +00:00
|
|
|
version = "3.2";
|
2016-02-18 03:41:24 +00:00
|
|
|
|
2016-01-11 20:45:31 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-11-23 23:37:20 +00:00
|
|
|
owner = "rspamd";
|
2016-01-11 20:45:31 +00:00
|
|
|
repo = "rspamd";
|
2016-02-18 03:41:24 +00:00
|
|
|
rev = version;
|
2022-04-14 12:41:17 +00:00
|
|
|
sha256 = "122d5m1nfxxz93bhsk8lm4dazvdknzphb0a1188m7bsa4iynbfv2";
|
2016-01-11 20:45:31 +00:00
|
|
|
};
|
|
|
|
|
2021-05-23 18:36:46 +00:00
|
|
|
hardeningEnable = [ "pie" ];
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config perl ];
|
2022-07-17 18:18:46 +00:00
|
|
|
buildInputs = [ glib openssl pcre sqlite ragel icu jemalloc libsodium ]
|
2018-11-08 02:04:08 +00:00
|
|
|
++ lib.optional withHyperscan hyperscan
|
2020-03-31 14:47:18 +00:00
|
|
|
++ lib.optionals withBlas [ blas lapack ]
|
2019-09-13 11:38:24 +00:00
|
|
|
++ lib.optional withLuaJIT luajit ++ lib.optional (!withLuaJIT) lua;
|
2016-01-11 20:45:31 +00:00
|
|
|
|
2018-05-13 09:18:19 +00:00
|
|
|
cmakeFlags = [
|
2022-07-17 18:18:46 +00:00
|
|
|
# pcre2 jit seems to cause crashes: https://github.com/NixOS/nixpkgs/pull/181908
|
|
|
|
"-DENABLE_PCRE2=OFF"
|
2018-05-13 09:18:19 +00:00
|
|
|
"-DDEBIAN_BUILD=ON"
|
2018-12-19 21:49:00 +00:00
|
|
|
"-DRUNDIR=/run/rspamd"
|
2018-05-13 09:18:19 +00:00
|
|
|
"-DDBDIR=/var/lib/rspamd"
|
|
|
|
"-DLOGDIR=/var/log/rspamd"
|
|
|
|
"-DLOCAL_CONFDIR=/etc/rspamd"
|
2018-11-06 14:50:04 +00:00
|
|
|
"-DENABLE_JEMALLOC=ON"
|
2020-11-16 13:13:09 +00:00
|
|
|
] ++ 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;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-09-13 11:38:24 +00:00
|
|
|
homepage = "https://rspamd.com";
|
2016-04-25 13:34:10 +00:00
|
|
|
license = licenses.asl20;
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "Advanced spam filtering system";
|
2021-11-07 11:19:02 +00:00
|
|
|
maintainers = with maintainers; [ avnik fpletz globin lewo ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with platforms; linux;
|
2016-01-11 20:45:31 +00:00
|
|
|
};
|
|
|
|
}
|