2018-11-06 14:44:40 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, perl
|
2020-02-01 12:55:57 +00:00
|
|
|
, glib, luajit, openssl, pcre, pkgconfig, sqlite, ragel, icu
|
|
|
|
, hyperscan, jemalloc, openblas, 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
|
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";
|
2020-04-07 15:38:55 +00:00
|
|
|
version = "2.5";
|
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;
|
2020-04-07 15:38:55 +00:00
|
|
|
sha256 = "01fhh07dddc6v7a5kq6h1z221vl0d4af43cchqkf54ycyxxxw06h";
|
2016-01-11 20:45:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig perl ];
|
2020-02-01 12:55:57 +00:00
|
|
|
buildInputs = [ glib openssl pcre sqlite ragel icu jemalloc libsodium ]
|
2018-11-08 02:04:08 +00:00
|
|
|
++ lib.optional withHyperscan hyperscan
|
2019-09-13 11:38:24 +00:00
|
|
|
++ lib.optional withBlas openblas
|
|
|
|
++ 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 = [
|
|
|
|
"-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-02-01 12:55:57 +00:00
|
|
|
] ++ lib.optional withHyperscan "-DENABLE_HYPERSCAN=ON";
|
2016-01-11 20:45:31 +00:00
|
|
|
|
|
|
|
meta = with stdenv.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";
|
2019-08-20 17:36:05 +00:00
|
|
|
maintainers = with maintainers; [ avnik fpletz globin ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with platforms; linux;
|
2016-01-11 20:45:31 +00:00
|
|
|
};
|
|
|
|
}
|