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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.5 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 02:04:08 +00:00
, withHyperscan ? stdenv.isx86_64
, withLuaJIT ? stdenv.isx86_64
2020-10-22 00:36:12 +00:00
, nixosTests
}:
2016-01-11 20:45:31 +00:00
2018-11-08 02:04:08 +00:00
assert withHyperscan -> stdenv.isx86_64;
2016-01-11 20:45:31 +00:00
stdenv.mkDerivation rec {
pname = "rspamd";
2022-11-02 14:25:58 +00:00
version = "3.4";
2016-02-18 03:41:24 +00:00
2016-01-11 20:45:31 +00:00
src = fetchFromGitHub {
owner = "rspamd";
2016-01-11 20:45:31 +00:00
repo = "rspamd";
2016-02-18 03:41:24 +00:00
rev = version;
2022-11-02 14:25:58 +00:00
sha256 = "sha256-KEIOyURdioyqD33K3rRTiysGO/zSEm6k29zqjzmK9Uk=";
2016-01-11 20:45:31 +00:00
};
2021-05-23 18:36:46 +00:00
hardeningEnable = [ "pie" ];
nativeBuildInputs = [ cmake pkg-config perl ];
buildInputs = [ glib openssl pcre sqlite ragel icu jemalloc libsodium ]
2018-11-08 02:04:08 +00:00
++ lib.optional withHyperscan hyperscan
++ lib.optionals withBlas [ blas lapack ]
++ lib.optional withLuaJIT luajit ++ lib.optional (!withLuaJIT) lua;
2016-01-11 20:45:31 +00:00
2018-05-13 09:18:19 +00:00
cmakeFlags = [
# pcre2 jit seems to cause crashes: https://github.com/NixOS/nixpkgs/pull/181908
"-DENABLE_PCRE2=OFF"
2018-05-13 09:18:19 +00:00
"-DDEBIAN_BUILD=ON"
2018-12-19 21:49:00 +00:00
"-DRUNDIR=/run/rspamd"
2018-05-13 09:18:19 +00: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 20:45:31 +00:00
2020-10-22 00:36:12 +00:00
passthru.tests.rspamd = nixosTests.rspamd;
meta = with lib; {
homepage = "https://rspamd.com";
license = licenses.asl20;
description = "Advanced spam filtering system";
2021-11-07 11:19:02 +00:00
maintainers = with maintainers; [ avnik fpletz globin lewo ];
platforms = with platforms; linux;
2016-01-11 20:45:31 +00:00
};
}