2020-04-24 23:36:52 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, perl
|
2021-02-05 17:12:51 +00:00
|
|
|
, glib, luajit, openssl, pcre, pkg-config, sqlite, ragel, icu
|
2020-04-24 23:36:52 +00:00
|
|
|
, hyperscan, jemalloc, blas, lapack, lua, libsodium
|
|
|
|
, withBlas ? true
|
|
|
|
, withHyperscan ? stdenv.isx86_64
|
|
|
|
, withLuaJIT ? stdenv.isx86_64
|
2020-10-27 00:29:36 +00:00
|
|
|
, nixosTests
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert withHyperscan -> stdenv.isx86_64;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "rspamd";
|
2021-12-06 16:07:01 +00:00
|
|
|
version = "3.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rspamd";
|
|
|
|
repo = "rspamd";
|
|
|
|
rev = version;
|
2021-12-06 16:07:01 +00:00
|
|
|
sha256 = "sha256-w3pvjU6b4IAl27QvY16UdBi1v1iJnnkLRUC54eXdH9I=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-05-29 03:34:57 +00:00
|
|
|
hardeningEnable = [ "pie" ];
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config perl ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ glib openssl pcre sqlite ragel icu jemalloc libsodium ]
|
|
|
|
++ lib.optional withHyperscan hyperscan
|
|
|
|
++ lib.optionals withBlas [ blas lapack ]
|
|
|
|
++ lib.optional withLuaJIT luajit ++ lib.optional (!withLuaJIT) lua;
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DDEBIAN_BUILD=ON"
|
|
|
|
"-DRUNDIR=/run/rspamd"
|
|
|
|
"-DDBDIR=/var/lib/rspamd"
|
|
|
|
"-DLOGDIR=/var/log/rspamd"
|
|
|
|
"-DLOCAL_CONFDIR=/etc/rspamd"
|
|
|
|
"-DENABLE_JEMALLOC=ON"
|
2020-11-19 00:13:47 +00:00
|
|
|
] ++ lib.optional withHyperscan "-DENABLE_HYPERSCAN=ON"
|
|
|
|
++ lib.optional (!withLuaJIT) "-DENABLE_LUAJIT=OFF";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-10-27 00:29:36 +00:00
|
|
|
passthru.tests.rspamd = nixosTests.rspamd;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://rspamd.com";
|
|
|
|
license = licenses.asl20;
|
|
|
|
description = "Advanced spam filtering system";
|
2021-12-06 16:07:01 +00:00
|
|
|
maintainers = with maintainers; [ avnik fpletz globin lewo ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = with platforms; linux;
|
|
|
|
};
|
|
|
|
}
|