2018-11-06 06:44:40 -08:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, perl
|
2021-01-18 22:50:56 -08:00
|
|
|
, glib, luajit, openssl, pcre, pkg-config, sqlite, ragel, icu
|
2020-03-31 07:47:18 -07:00
|
|
|
, hyperscan, jemalloc, blas, lapack, lua, libsodium
|
2018-11-08 08:01:46 -08:00
|
|
|
, withBlas ? true
|
2018-11-07 18:04:08 -08:00
|
|
|
, withHyperscan ? stdenv.isx86_64
|
2019-09-13 04:38:24 -07:00
|
|
|
, withLuaJIT ? stdenv.isx86_64
|
2020-10-21 17:36:12 -07:00
|
|
|
, nixosTests
|
2018-11-06 06:44:40 -08:00
|
|
|
}:
|
2016-01-11 12:45:31 -08:00
|
|
|
|
2018-11-07 18:04:08 -08:00
|
|
|
assert withHyperscan -> stdenv.isx86_64;
|
|
|
|
|
2016-01-11 12:45:31 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "rspamd";
|
2021-03-09 06:07:48 -08:00
|
|
|
version = "2.7";
|
2016-02-17 19:41:24 -08:00
|
|
|
|
2016-01-11 12:45:31 -08:00
|
|
|
src = fetchFromGitHub {
|
2018-11-23 15:37:20 -08:00
|
|
|
owner = "rspamd";
|
2016-01-11 12:45:31 -08:00
|
|
|
repo = "rspamd";
|
2016-02-17 19:41:24 -08:00
|
|
|
rev = version;
|
2021-03-09 06:07:48 -08:00
|
|
|
sha256 = "sha256-LMLRDnKfGpApVsIvPNY2nxl+H5+qeVvwvwr3wdyyhjs=";
|
2016-01-11 12:45:31 -08:00
|
|
|
};
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ cmake pkg-config perl ];
|
2020-02-01 04:55:57 -08:00
|
|
|
buildInputs = [ glib openssl pcre sqlite ragel icu jemalloc libsodium ]
|
2018-11-07 18:04:08 -08:00
|
|
|
++ lib.optional withHyperscan hyperscan
|
2020-03-31 07:47:18 -07:00
|
|
|
++ lib.optionals withBlas [ blas lapack ]
|
2019-09-13 04:38:24 -07:00
|
|
|
++ lib.optional withLuaJIT luajit ++ lib.optional (!withLuaJIT) lua;
|
2016-01-11 12:45:31 -08:00
|
|
|
|
2018-05-13 02:18:19 -07:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DDEBIAN_BUILD=ON"
|
2018-12-19 13:49:00 -08:00
|
|
|
"-DRUNDIR=/run/rspamd"
|
2018-05-13 02:18:19 -07:00
|
|
|
"-DDBDIR=/var/lib/rspamd"
|
|
|
|
"-DLOGDIR=/var/log/rspamd"
|
|
|
|
"-DLOCAL_CONFDIR=/etc/rspamd"
|
2018-11-06 06:50:04 -08:00
|
|
|
"-DENABLE_JEMALLOC=ON"
|
2020-11-16 05:13:09 -08:00
|
|
|
] ++ lib.optional withHyperscan "-DENABLE_HYPERSCAN=ON"
|
|
|
|
++ lib.optional (!withLuaJIT) "-DENABLE_LUAJIT=OFF";
|
2016-01-11 12:45:31 -08:00
|
|
|
|
2020-10-21 17:36:12 -07:00
|
|
|
passthru.tests.rspamd = nixosTests.rspamd;
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2019-09-13 04:38:24 -07:00
|
|
|
homepage = "https://rspamd.com";
|
2016-04-25 06:34:10 -07:00
|
|
|
license = licenses.asl20;
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "Advanced spam filtering system";
|
2019-08-20 10:36:05 -07:00
|
|
|
maintainers = with maintainers; [ avnik fpletz globin ];
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = with platforms; linux;
|
2016-01-11 12:45:31 -08:00
|
|
|
};
|
|
|
|
}
|