mpop: libidn -> libidn2

as per the changelog entry for version 1.4.0 at
https://git.marlam.de/gitweb/?p=mpop.git;a=blob;f=NEWS;h=8b8f2fd45a2109ba04c9720de7973a519bc4aeaf;hb=HEAD,
libidn2 is used instead of libidn where IDN support is needed, so we
migrate to that.
This commit is contained in:
whispers
2026-06-25 22:18:16 -04:00
parent b6f6b863c8
commit 7cf8a95375
+2 -2
View File
@@ -5,7 +5,7 @@
gnutls,
openssl,
gsasl,
libidn,
libidn2,
pkg-config,
nlsSupport ? true,
idnSupport ? true,
@@ -33,7 +33,7 @@ stdenv.mkDerivation (finalAttrs: {
buildInputs =
lib.optional gsaslSupport gsasl
++ lib.optional idnSupport libidn
++ lib.optional idnSupport libidn2
++ lib.optional (sslLibrary == "gnutls") gnutls
++ lib.optional (sslLibrary == "openssl") openssl;