3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/mail/rspamd/default.nix

37 lines
1,023 B
Nix
Raw Normal View History

2016-01-11 20:45:31 +00:00
{ stdenv, fetchFromGitHub, cmake, perl
2017-11-16 08:31:14 +00:00
, file, glib, gmime, libevent, luajit, openssl, pcre, pkgconfig, sqlite, ragel, icu, libfann }:
2016-01-11 20:45:31 +00:00
2016-02-12 16:11:56 +00:00
let libmagic = file; # libmagic provided by file package ATM
2016-01-11 20:45:31 +00:00
in
stdenv.mkDerivation rec {
name = "rspamd-${version}";
version = "1.7.3";
2016-02-18 03:41:24 +00:00
2016-01-11 20:45:31 +00:00
src = fetchFromGitHub {
owner = "vstakhov";
repo = "rspamd";
2016-02-18 03:41:24 +00:00
rev = version;
sha256 = "1gb4zg8i1nj337f65s434h299ad19c0d7jyawb2glvv3n4cshm97";
2016-01-11 20:45:31 +00:00
};
nativeBuildInputs = [ cmake pkgconfig perl ];
2018-05-13 10:18:19 +01:00
buildInputs = [ glib gmime libevent libmagic luajit openssl pcre sqlite ragel icu libfann ];
2016-01-11 20:45:31 +00:00
2018-05-13 10:18:19 +01:00
cmakeFlags = [
"-DDEBIAN_BUILD=ON"
"-DRUNDIR=/var/run/rspamd"
"-DDBDIR=/var/lib/rspamd"
"-DLOGDIR=/var/log/rspamd"
"-DLOCAL_CONFDIR=/etc/rspamd"
];
2016-01-11 20:45:31 +00:00
meta = with stdenv.lib; {
homepage = https://github.com/vstakhov/rspamd;
license = licenses.asl20;
description = "Advanced spam filtering system";
2016-02-18 03:41:24 +00:00
maintainers = with maintainers; [ avnik fpletz ];
platforms = with platforms; linux;
2016-01-11 20:45:31 +00:00
};
}