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

51 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, cmake, perl
, glib, luajit, openssl, pcre, pkg-config, sqlite, ragel, icu
, hyperscan, jemalloc, blas, lapack, lua, libsodium
, withBlas ? true
2018-11-08 03:04:08 +01:00
, withHyperscan ? stdenv.isx86_64
, withLuaJIT ? stdenv.isx86_64
2020-10-22 02:36:12 +02:00
, nixosTests
}:
2016-01-11 21:45:31 +01:00
2018-11-08 03:04:08 +01:00
assert withHyperscan -> stdenv.isx86_64;
2016-01-11 21:45:31 +01:00
stdenv.mkDerivation rec {
pname = "rspamd";
2021-09-14 10:47:30 +02:00
version = "3.0";
2016-02-18 04:41:24 +01:00
2016-01-11 21:45:31 +01:00
src = fetchFromGitHub {
owner = "rspamd";
2016-01-11 21:45:31 +01:00
repo = "rspamd";
2016-02-18 04:41:24 +01:00
rev = version;
2021-09-14 10:47:30 +02:00
sha256 = "sha256-MXnaQhTDV6ji5634TXA5vvXBlA/SilwM0YYL8DjQL9s=";
2016-01-11 21:45:31 +01:00
};
2021-05-23 20:36:46 +02:00
hardeningEnable = [ "pie" ];
nativeBuildInputs = [ cmake pkg-config perl ];
2020-02-01 13:55:57 +01:00
buildInputs = [ glib openssl pcre sqlite ragel icu jemalloc libsodium ]
2018-11-08 03:04:08 +01:00
++ lib.optional withHyperscan hyperscan
++ lib.optionals withBlas [ blas lapack ]
++ 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"
"-DENABLE_JEMALLOC=ON"
] ++ lib.optional withHyperscan "-DENABLE_HYPERSCAN=ON"
++ lib.optional (!withLuaJIT) "-DENABLE_LUAJIT=OFF";
2016-01-11 21:45:31 +01:00
2020-10-22 02:36:12 +02:00
passthru.tests.rspamd = nixosTests.rspamd;
meta = with lib; {
homepage = "https://rspamd.com";
license = licenses.asl20;
description = "Advanced spam filtering system";
maintainers = with maintainers; [ avnik fpletz globin ];
platforms = with platforms; linux;
2016-01-11 21:45:31 +01:00
};
}