summaryrefslogtreecommitdiffstats
path: root/pkgs/servers/mail/opensmtpd
diff options
context:
space:
mode:
authorLéo Gaspard <leo@gaspard.io>2018-11-09 22:37:09 +0900
committerLéo Gaspard <leo@gaspard.io>2018-11-09 22:37:09 +0900
commitc9034d2399ecb3a71a023e4890beac5793976441 (patch)
tree63de2cb90d4fb3aad112ea5f2585a9dbb468e498 /pkgs/servers/mail/opensmtpd
parentbfab4b162365c67a6e083cb8386ec4ab4b00af7c (diff)
opensmtpd-extras: 5.7.1 -> 6.4.0
Also use `enable*` flags instead of the impossible-to-discover trick of setting to `null` the dependencies.
Diffstat (limited to 'pkgs/servers/mail/opensmtpd')
-rw-r--r--pkgs/servers/mail/opensmtpd/extras.nix37
1 files changed, 24 insertions, 13 deletions
diff --git a/pkgs/servers/mail/opensmtpd/extras.nix b/pkgs/servers/mail/opensmtpd/extras.nix
index 6b63c317d78f..1d4ad63c37d2 100644
--- a/pkgs/servers/mail/opensmtpd/extras.nix
+++ b/pkgs/servers/mail/opensmtpd/extras.nix
@@ -1,13 +1,21 @@
{ stdenv, fetchurl, openssl, libevent, libasr,
- python2, pkgconfig, lua5, perl, mysql, postgresql, sqlite, hiredis }:
+ python2, pkgconfig, lua5, perl, mysql, postgresql, sqlite, hiredis,
+ enablePython ? true,
+ enableLua ? true,
+ enablePerl ? true,
+ enableMysql ? true,
+ enablePostgres ? true,
+ enableSqlite ? true,
+ enableRedis ? true,
+}:
stdenv.mkDerivation rec {
name = "opensmtpd-extras-${version}";
- version = "5.7.1";
+ version = "6.4.0";
src = fetchurl {
url = "https://www.opensmtpd.org/archives/${name}.tar.gz";
- sha256 = "1kld4hxgz792s0cb2gl7m2n618ikzqkj88w5dhaxdrxg4x2c4vdm";
+ sha256 = "09k25l7zy5ch3fk6qphni2h0rxdp8wacmfag1whi608dgimrhrnb";
};
nativeBuildInputs = [ pkgconfig ];
@@ -40,42 +48,45 @@ stdenv.mkDerivation rec {
"--with-scheduler-ram"
"--with-scheduler-stub"
- ] ++ stdenv.lib.optional (python2 != null) [
+ ] ++ stdenv.lib.optional enablePython [
"--with-python=${python2}"
"--with-filter-python"
"--with-queue-python"
"--with-table-python"
"--with-scheduler-python"
- ] ++ stdenv.lib.optional (lua5 != null) [
+ ] ++ stdenv.lib.optional enableLua [
"--with-lua=${pkgconfig}"
"--with-filter-lua"
- ] ++ stdenv.lib.optional (perl != null) [
+ ] ++ stdenv.lib.optional enablePerl [
"--with-perl=${perl}"
"--with-filter-perl"
- ] ++ stdenv.lib.optional (mysql != null) [
+ ] ++ stdenv.lib.optional enableMysql [
"--with-table-mysql"
- ] ++ stdenv.lib.optional (postgresql != null) [
+ ] ++ stdenv.lib.optional enablePostgres [
"--with-table-postgres"
- ] ++ stdenv.lib.optional (sqlite != null) [
+ ] ++ stdenv.lib.optional enableSqlite [
"--with-table-sqlite"
- ] ++ stdenv.lib.optional (hiredis != null) [
+ ] ++ stdenv.lib.optional enableRedis [
"--with-table-redis"
];
- NIX_CFLAGS_COMPILE = stdenv.lib.optional (hiredis != null) "-I${hiredis}/include/hiredis" ++
- stdenv.lib.optional (mysql != null) "-L${mysql.connector-c}/lib/mysql";
+ NIX_CFLAGS_COMPILE =
+ stdenv.lib.optional enableRedis
+ "-I${hiredis}/include/hiredis -lhiredis"
+ ++ stdenv.lib.optional enableMysql
+ "-L${mysql.connector-c}/lib/mysql";
meta = with stdenv.lib; {
homepage = https://www.opensmtpd.org/;
description = "Extra plugins for the OpenSMTPD mail server";
license = licenses.isc;
platforms = platforms.linux;
- maintainers = with maintainers; [ gebner ];
+ maintainers = with maintainers; [ gebner ekleog ];
};
}