Files
nixpkgs/pkgs/by-name/mp/mpop/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

55 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchurl,
gnutls,
openssl,
gsasl,
libidn,
pkg-config,
nlsSupport ? true,
idnSupport ? true,
gsaslSupport ? true,
sslLibrary ? "gnutls",
}:
assert lib.assertOneOf "sslLibrary" sslLibrary [
"gnutls"
"openssl"
"no"
];
stdenv.mkDerivation rec {
pname = "mpop";
version = "1.4.21";
src = fetchurl {
url = "https://marlam.de/${pname}/releases/${pname}-${version}.tar.xz";
sha256 = "sha256-TKDR4NATZv4+DPSQ2I0VTfURJ4+1lWOHE748pnVmWFU=";
};
nativeBuildInputs = [
pkg-config
];
buildInputs =
lib.optional gsaslSupport gsasl
++ lib.optional idnSupport libidn
++ lib.optional (sslLibrary == "gnutls") gnutls
++ lib.optional (sslLibrary == "openssl") openssl;
configureFlags = [
(lib.enableFeature nlsSupport "nls")
(lib.withFeature idnSupport "idn")
(lib.withFeature gsaslSupport "gsasl")
"--with-tls=${sslLibrary}"
]
++ lib.optional stdenv.hostPlatform.isDarwin "--with-macosx-keyring";
meta = with lib; {
description = "POP3 mail retrieval agent";
homepage = "https://marlam.de/mpop";
license = licenses.gpl3Plus;
platforms = platforms.unix;
};
}