imapsync: enable strictDeps (#509537)

This commit is contained in:
Stefan Frijters
2026-05-01 11:47:50 +00:00
committed by GitHub
+10 -1
View File
@@ -6,6 +6,7 @@
perlPackages,
stdenv,
procps,
versionCheckHook,
}:
stdenv.mkDerivation (finalAttrs: {
@@ -28,7 +29,10 @@ stdenv.mkDerivation (finalAttrs: {
--prefix PATH : ${lib.makeBinPath [ procps ]}
'';
nativeBuildInputs = [ makeWrapper ];
nativeBuildInputs = [
makeWrapper
perl
];
buildInputs = with perlPackages; [
Appcpanminus
@@ -69,6 +73,11 @@ stdenv.mkDerivation (finalAttrs: {
perl
];
strictDeps = true;
doInstallCheck = true;
nativeInstallCheckInputs = [ versionCheckHook ];
meta = {
description = "Mail folder synchronizer between IMAP servers";
homepage = "https://imapsync.lamiral.info";