1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/servers/mail/rspamd/default.nix

41 lines
1.2 KiB
Nix
Raw Normal View History

2016-01-11 15:45:31 -05:00
{ stdenv, fetchFromGitHub, cmake, perl
2016-12-16 09:51:59 -05:00
, file, glib, gmime, libevent, luajit, openssl, pcre, pkgconfig, sqlite, ragel }:
2016-01-11 15:45:31 -05:00
2016-02-12 11:11:56 -05:00
let libmagic = file; # libmagic provided by file package ATM
2016-01-11 15:45:31 -05:00
in
stdenv.mkDerivation rec {
name = "rspamd-${version}";
2017-02-02 13:24:03 -05:00
version = "1.4.3";
2016-02-17 22:41:24 -05:00
2016-01-11 15:45:31 -05:00
src = fetchFromGitHub {
owner = "vstakhov";
repo = "rspamd";
2016-02-17 22:41:24 -05:00
rev = version;
2017-02-02 13:24:03 -05:00
sha256 = "1wrqi8vsd61rc48x2gyhc0xrir9pr372lpkyhwgx1rpxzdxsdwh9";
2016-01-11 15:45:31 -05:00
};
nativeBuildInputs = [ cmake pkgconfig perl ];
2016-12-16 09:51:59 -05:00
buildInputs = [ glib gmime libevent libmagic luajit openssl pcre sqlite ragel ];
2016-01-11 15:45:31 -05:00
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";
2016-02-17 22:41:24 -05:00
maintainers = with maintainers; [ avnik fpletz ];
platforms = with platforms; linux;
2016-01-11 15:45:31 -05:00
};
}