2018-11-06 15:44:40 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, perl
|
|
|
|
, file, glib, libevent, luajit, openssl, pcre, pkgconfig, sqlite, ragel, icu
|
2018-11-08 17:01:46 +01:00
|
|
|
, libfann, gd, jemalloc, openblas
|
2018-11-06 15:44:40 +01:00
|
|
|
, withFann ? true
|
|
|
|
, withGd ? false
|
2018-11-08 17:01:46 +01:00
|
|
|
, withBlas ? true
|
2018-11-06 15:44:40 +01:00
|
|
|
}:
|
2016-01-11 21:45:31 +01:00
|
|
|
|
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 {
|
|
|
|
name = "rspamd-${version}";
|
2018-10-26 11:30:37 +02:00
|
|
|
version = "1.8.1";
|
2016-02-18 04:41:24 +01:00
|
|
|
|
2016-01-11 21:45:31 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vstakhov";
|
|
|
|
repo = "rspamd";
|
2016-02-18 04:41:24 +01:00
|
|
|
rev = version;
|
2018-10-26 11:30:37 +02:00
|
|
|
sha256 = "1cgnychv8yz7a6mjg3b12nzs4gl0xqg9agl7m6faihnh7gqx4xld";
|
2016-01-11 21:45:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig perl ];
|
2018-11-06 15:50:04 +01:00
|
|
|
buildInputs = [ glib libevent libmagic luajit 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
|
|
|
|
++ lib.optional withBlas openblas;
|
2016-01-11 21:45:31 +01:00
|
|
|
|
2018-05-13 11:18:19 +02:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DDEBIAN_BUILD=ON"
|
|
|
|
"-DRUNDIR=/var/run/rspamd"
|
|
|
|
"-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"
|
|
|
|
++ lib.optional withGd "-DENABLE_GD=ON";
|
2016-01-11 21:45:31 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://github.com/vstakhov/rspamd;
|
2016-04-25 15:34:10 +02:00
|
|
|
license = licenses.asl20;
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "Advanced spam filtering system";
|
2016-02-18 04:41:24 +01:00
|
|
|
maintainers = with maintainers; [ avnik fpletz ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = with platforms; linux;
|
2016-01-11 21:45:31 +01:00
|
|
|
};
|
|
|
|
}
|