2018-11-06 15:44:40 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, perl
|
|
|
|
, file, glib, libevent, luajit, openssl, pcre, pkgconfig, sqlite, ragel, icu
|
2019-09-13 13:38:24 +02:00
|
|
|
, hyperscan, libfann, gd, jemalloc, openblas, lua
|
2018-11-06 15:44:40 +01:00
|
|
|
, withFann ? true
|
|
|
|
, withGd ? false
|
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
|
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-02-12 17:11:56 +01:00
|
|
|
let libmagic = file; # libmagic provided by file package ATM
|
2016-01-11 21:45:31 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "rspamd";
|
2019-06-03 04:47:15 +02:00
|
|
|
version = "1.9.4";
|
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;
|
2019-06-03 04:47:15 +02:00
|
|
|
sha256 = "0b8n7xazmzjb6jf8sk0jg0x861nf1ayzxsvjaymw1qjgpn371r51";
|
2016-01-11 21:45:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig perl ];
|
2019-09-13 13:38:24 +02:00
|
|
|
buildInputs = [ glib libevent libmagic openssl pcre sqlite ragel icu jemalloc ]
|
2018-11-06 15:44:40 +01:00
|
|
|
++ lib.optional withFann libfann
|
2018-11-08 17:01:46 +01:00
|
|
|
++ lib.optional withGd gd
|
2018-11-08 03:04:08 +01:00
|
|
|
++ lib.optional withHyperscan hyperscan
|
2019-09-13 13:38:24 +02:00
|
|
|
++ lib.optional withBlas openblas
|
|
|
|
++ 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"
|
2018-11-06 15:44:40 +01:00
|
|
|
] ++ lib.optional withFann "-DENABLE_FANN=ON"
|
2018-11-08 03:04:08 +01:00
|
|
|
++ lib.optional withHyperscan "-DENABLE_HYPERSCAN=ON"
|
2019-09-13 13:38:24 +02:00
|
|
|
++ lib.optional withGd "-DENABLE_GD=ON"
|
|
|
|
++ lib.optional (!withLuaJIT) "-DENABLE_TORCH=OFF";
|
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
|
|
|
};
|
|
|
|
}
|