mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
rspamd: init at git-2016-01-11
This commit is contained in:
parent
59f0090ded
commit
480083922c
38
pkgs/servers/mail/rspamd/default.nix
Normal file
38
pkgs/servers/mail/rspamd/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, perl
|
||||
,file , glib, gmime, libevent, luajit, openssl, pcre, pkgconfig, sqlite }:
|
||||
|
||||
let libmagic = file; # libmagic provided buy file package ATM
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "rspamd-${version}";
|
||||
version = "git-2016-01-16";
|
||||
src = fetchFromGitHub {
|
||||
owner = "vstakhov";
|
||||
repo = "rspamd";
|
||||
rev = "04bfc92c1357c0f908ce9371ab303f8bf57657df";
|
||||
sha256 = "1zip1msjjy5q7jcsn4l0yyg92c3wdsf1v5jv1acglrih8dbfl7zj";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig perl ];
|
||||
buildInputs = [ glib gmime libevent libmagic luajit openssl pcre sqlite];
|
||||
|
||||
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.bsd2;
|
||||
description = "advanced spam filtering system";
|
||||
maintainer = maintainers.avnik;
|
||||
};
|
||||
}
|
@ -9372,6 +9372,8 @@ let
|
||||
|
||||
rmilter = callPackage ../servers/mail/rmilter { };
|
||||
|
||||
rspamd = callPackage ../servers/mail/rspamd { };
|
||||
|
||||
pshs = callPackage ../servers/http/pshs { };
|
||||
|
||||
libpulseaudio = callPackage ../servers/pulseaudio { libOnly = true; };
|
||||
|
Loading…
Reference in New Issue
Block a user