2018-11-06 06:44:40 -08:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, perl
|
2020-02-01 04:55:57 -08:00
|
|
|
, glib, luajit, openssl, pcre, pkgconfig, sqlite, ragel, icu
|
|
|
|
, hyperscan, jemalloc, openblas, 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
|
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";
|
2020-03-03 09:08:22 -08:00
|
|
|
version = "2.4";
|
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;
|
2020-03-03 09:08:22 -08:00
|
|
|
sha256 = "15rdxcvnfn3fzjpjz6z2ljrzhlmhn2y4sxz09z2789k442n4m1qv";
|
2016-01-11 12:45:31 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig 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
|
2019-09-13 04:38:24 -07:00
|
|
|
++ lib.optional withBlas openblas
|
|
|
|
++ 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-02-01 04:55:57 -08:00
|
|
|
] ++ lib.optional withHyperscan "-DENABLE_HYPERSCAN=ON";
|
2016-01-11 12:45:31 -08:00
|
|
|
|
|
|
|
meta = with stdenv.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
|
|
|
};
|
|
|
|
}
|