640416bf71
This is the appropriate version for dovecot 2.3.5 according to https://dovecot.org/pipermail/dovecot-news/2019-March/000400.html
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ stdenv, fetchurl, dovecot, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dovecot-pigeonhole-${version}";
|
|
version = "0.5.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://pigeonhole.dovecot.org/releases/2.3/dovecot-2.3-pigeonhole-${version}.tar.gz";
|
|
sha256 = "19a9a6rdvdlrm00k2npprj6lrikjhngnmpgg412848rb3ip11anb";
|
|
};
|
|
|
|
buildInputs = [ dovecot openssl ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace src/managesieve/managesieve-settings.c --replace \
|
|
".executable = \"managesieve\"" \
|
|
".executable = \"$out/libexec/dovecot/managesieve\""
|
|
substituteInPlace src/managesieve-login/managesieve-login-settings.c --replace \
|
|
".executable = \"managesieve-login\"" \
|
|
".executable = \"$out/libexec/dovecot/managesieve-login\""
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--with-dovecot=${dovecot}/lib/dovecot"
|
|
"--without-dovecot-install-dirs"
|
|
"--with-moduledir=$(out)/lib/dovecot"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://pigeonhole.dovecot.org/;
|
|
description = "A sieve plugin for the Dovecot IMAP server";
|
|
license = licenses.lgpl21;
|
|
maintainers = [ maintainers.rickynils ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|