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