Update maildrop 2.6.0 -> 3.1.8 (#372150)

This commit is contained in:
Jörg Thalheim
2025-01-10 16:53:57 +01:00
committed by GitHub
3 changed files with 43 additions and 7 deletions
@@ -0,0 +1,32 @@
{
stdenv,
fetchurl,
lib,
perl,
}:
stdenv.mkDerivation rec {
pname = "courier-unicode";
version = "2.3.1";
src = fetchurl {
url = "mirror://sourceforge/courier/courier-unicode/${version}/courier-unicode-${version}.tar.bz2";
sha256 = "sha256-uD7mRqR8Kp1pL7bvuThWRmjDLsF51PrAwH6s6KG4/JE=";
};
nativeBuildInputs = [
perl
];
outputs = [
"out"
"dev"
];
meta = {
homepage = "http://www.courier-mta.org/unicode/";
description = "The Courier Unicode Library is used by most other Courier packages";
license = lib.licenses.gpl3;
platforms = lib.platforms.linux;
};
}
@@ -1,6 +1,6 @@
--- a/maildrop/configure 2012-09-06 01:52:13.000000000 +0100
+++ b/maildrop/configure 2013-01-04 03:00:57.095628327 +0000
@@ -17562,8 +17562,8 @@
--- a/libs/maildrop/configure 2012-09-06 01:52:13.000000000 +0100
+++ b/libs/maildrop/configure 2013-01-04 03:00:57.095628327 +0000
@@ -19857,8 +19862,8 @@
check_spooldir() {
if test "$CHECKED_SPOOLDIR" != 1
then
+8 -4
View File
@@ -3,22 +3,26 @@
lib,
stdenv,
pkg-config,
pcre,
courier-unicode,
pcre2,
libidn2,
perl,
}:
stdenv.mkDerivation rec {
pname = "maildrop";
version = "2.6.0";
version = "3.1.8";
src = fetchurl {
url = "mirror://sourceforge/courier/maildrop/${version}/maildrop-${version}.tar.bz2";
sha256 = "1a94p2b41iy334cwfwmzi19557dn5j61abh0cp2rfc9dkc8ibhdg";
sha256 = "sha256-foJsAxkXRE8berccH82QODWVZEhG4rOyYONSsc4D6VA=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
pcre
courier-unicode
libidn2
pcre2
perl
];