Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

76 lines
1.7 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
makeWrapper,
perlPackages,
installShellFiles,
}:
stdenv.mkDerivation rec {
pname = "sieve-connect";
version = "0.90";
src = fetchFromGitHub {
owner = "philpennock";
repo = "sieve-connect";
rev = "v${version}";
sha256 = "1ghvfa5ifa68b6imh85bkmy00r93c5f9hs6d039axb73gmma580p";
};
buildInputs = [ perlPackages.perl ];
nativeBuildInputs = [
makeWrapper
installShellFiles
];
preBuild = ''
# Fixes failing build when not building in git repo
mkdir .git
touch .git/HEAD
echo "${version}" > versionfile
echo "$(date +%Y-%m-%d)" > datefile
'';
buildFlags = [
"PERL5LIB=${perlPackages.makePerlPath [ perlPackages.FileSlurp ]}"
"bin"
"man"
];
installPhase = ''
mkdir -p $out/bin
install -m 755 sieve-connect $out/bin
installManPage sieve-connect.1
wrapProgram $out/bin/sieve-connect \
--prefix PERL5LIB : "${
with perlPackages;
makePerlPath [
AuthenSASL
Socket6
IOSocketINET6
IOSocketSSL
NetSSLeay
NetDNS
TermReadKey
TermReadLineGnu
]
}"
'';
meta = with lib; {
description = "Client for the MANAGESIEVE Protocol";
longDescription = ''
This is sieve-connect. A client for the ManageSieve protocol,
as specifed in RFC 5804. Historically, this was MANAGESIEVE as
implemented by timsieved in Cyrus IMAP.
'';
homepage = "https://github.com/philpennock/sieve-connect";
license = licenses.bsd3;
platforms = platforms.unix;
maintainers = with maintainers; [ das_j ];
mainProgram = "sieve-connect";
};
}