41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, perl
|
|
, file, glib, gmime, libevent, luajit, openssl, pcre, pkgconfig, sqlite, ragel }:
|
|
|
|
let libmagic = file; # libmagic provided by file package ATM
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "rspamd-${version}";
|
|
version = "1.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vstakhov";
|
|
repo = "rspamd";
|
|
rev = version;
|
|
sha256 = "19hy9qr9lv17br2algig95d64zzdyly7n6c3z8fanwcpk35sgrhr";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig perl ];
|
|
buildInputs = [ glib gmime libevent libmagic luajit openssl pcre sqlite ragel ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace conf/common.conf --replace "\$CONFDIR/rspamd.conf.local" "/etc/rspamd/rspamd.conf.local"
|
|
substituteInPlace conf/common.conf --replace "\$CONFDIR/rspamd.conf.local.override" "/etc/rspamd/rspamd.conf.local.override"
|
|
'';
|
|
|
|
cmakeFlags = ''
|
|
-DDEBIAN_BUILD=ON
|
|
-DRUNDIR=/var/run/rspamd
|
|
-DDBDIR=/var/lib/rspamd
|
|
-DLOGDIR=/var/log/rspamd
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/vstakhov/rspamd";
|
|
license = licenses.asl20;
|
|
description = "Advanced spam filtering system";
|
|
maintainers = with maintainers; [ avnik fpletz ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|