nixpkgs/pkgs/applications/networking/sieve-connect/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, makeWrapper, perlPackages, installShellFiles }:
stdenv.mkDerivation rec {
pname = "sieve-connect";
version = "0.90";
2018-07-22 18:49:28 +00:00
src = fetchFromGitHub {
owner = "philpennock";
repo = "sieve-connect";
rev = "v${version}";
sha256 = "1ghvfa5ifa68b6imh85bkmy00r93c5f9hs6d039axb73gmma580p";
2018-07-22 18:49:28 +00:00
};
buildInputs = [ perlPackages.perl ];
nativeBuildInputs = [ makeWrapper installShellFiles ];
2018-07-22 18:49:28 +00:00
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" ];
2018-07-22 18:49:28 +00:00
installPhase = ''
mkdir -p $out/bin
2018-07-22 18:49:28 +00:00
install -m 755 sieve-connect $out/bin
installManPage sieve-connect.1
2018-07-22 18:49:28 +00:00
wrapProgram $out/bin/sieve-connect \
--prefix PERL5LIB : "${with perlPackages; makePerlPath [
AuthenSASL Socket6 IOSocketINET6 IOSocketSSL NetSSLeay NetDNS
TermReadKey TermReadLineGnu ]}"
2018-07-22 18:49:28 +00:00
'';
meta = with lib; {
2018-07-22 18:49:28 +00:00
description = "A 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";
2018-07-22 18:49:28 +00:00
license = licenses.bsd3;
platforms = platforms.unix;
maintainers = with maintainers; [ das_j ];
2023-11-27 01:17:53 +00:00
mainProgram = "sieve-connect";
2018-07-22 18:49:28 +00:00
};
}