nixpkgs/pkgs/servers/mail/rspamd/default.nix

44 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, cmake, perl
, file, glib, libevent, luajit, openssl, pcre, pkgconfig, sqlite, ragel, icu
, libfann, gd
, withFann ? true
, withGd ? false
}:
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}";
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;
sha256 = "1cgnychv8yz7a6mjg3b12nzs4gl0xqg9agl7m6faihnh7gqx4xld";
2016-01-11 21:45:31 +01:00
};
nativeBuildInputs = [ cmake pkgconfig perl ];
buildInputs = [ glib libevent libmagic luajit openssl pcre sqlite ragel icu ]
++ lib.optional withFann libfann
++ lib.optional withGd gd;
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"
] ++ lib.optional withFann "-DENABLE_FANN=ON"
++ lib.optional withGd "-DENABLE_GD=ON";
2016-01-11 21:45:31 +01:00
meta = with stdenv.lib; {
homepage = https://github.com/vstakhov/rspamd;
license = licenses.asl20;
description = "Advanced spam filtering system";
2016-02-18 04:41:24 +01:00
maintainers = with maintainers; [ avnik fpletz ];
platforms = with platforms; linux;
2016-01-11 21:45:31 +01:00
};
}