rm imapsync

This commit is contained in:
Motiejus Jakštys 2024-11-07 16:48:25 +02:00
parent f38636535b
commit 390e0a7ed5
4 changed files with 0 additions and 79 deletions

View File

@ -96,7 +96,6 @@
(_: super: { (_: super: {
weather = super.callPackage ./pkgs/weather { }; weather = super.callPackage ./pkgs/weather { };
nicer = super.callPackage ./pkgs/nicer.nix { }; nicer = super.callPackage ./pkgs/nicer.nix { };
imapsync = super.callPackage ./pkgs/imapsync.nix { };
tmuxbash = super.callPackage ./pkgs/tmuxbash.nix { }; tmuxbash = super.callPackage ./pkgs/tmuxbash.nix { };
vanta-agent = super.callPackage ./pkgs/vanta-agent.nix { }; vanta-agent = super.callPackage ./pkgs/vanta-agent.nix { };

View File

@ -657,7 +657,6 @@ in
acpi acpi
yt-dlp yt-dlp
ffmpeg ffmpeg
imapsync
rtorrent rtorrent
age-plugin-yubikey age-plugin-yubikey
]; ];

View File

@ -186,7 +186,6 @@ in
audacity audacity
graphviz graphviz
powertop powertop
imapsync
librecad librecad
qgis-ltr # qgis gets recompiled, qgis-ltr is cached by hydra qgis-ltr # qgis gets recompiled, qgis-ltr is cached by hydra
tesseract tesseract

View File

@ -1,76 +0,0 @@
{
lib,
fetchurl,
makeWrapper,
perl,
perlPackages,
stdenv,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "imapsync";
version = "2.290";
src = fetchurl {
url = "https://imapsync.lamiral.info/dist/old_releases/${finalAttrs.version}/imapsync-${finalAttrs.version}.tgz";
hash = "sha256-uFhTxnaUDP793isfpF/7T8d4AnXDL4uN6zU8igY+EFE=";
};
postPatch = ''
sed -i -e s@/usr@$out@ Makefile
substituteInPlace INSTALL.d/prerequisites_imapsync --replace "PAR::Packer" ""
'';
postInstall = ''
wrapProgram $out/bin/imapsync --set PERL5LIB $PERL5LIB
'';
nativeBuildInputs = [ makeWrapper ];
buildInputs = with perlPackages; [
Appcpanminus
CGI
CryptOpenSSLRSA
DataUniqid
DistCheckConflicts
EncodeIMAPUTF7
FileCopyRecursive
FileTail
IOSocketINET6
IOTee
JSONWebToken
LWP
MailIMAPClient
ModuleImplementation
ModuleScanDeps
NetServer
NTLM
PackageStash
PackageStashXS
ProcProcessTable
Readonly
RegexpCommon
SysMemInfo
TermReadKey
TestDeep
TestFatal
TestMockGuard
TestMockObject
TestPod
TestRequires
UnicodeString
perl
];
meta = with lib; {
description = "Mail folder synchronizer between IMAP servers";
mainProgram = "imapsync";
homepage = "https://imapsync.lamiral.info/";
license = licenses.nlpl;
maintainers = with maintainers; [
pSub
motiejus
];
platforms = platforms.unix;
};
})