mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00

They are not doing anything right now. This is in preparation for their complete removal from the tree. Note: several changes that affect the derivation inputs (e.g. removal of references to stub paths in build instructions) were left out. They will be cleaned up the next iteration and will require special care. Note: this PR is a result of a mix of ugly regex (not AST) based automation and some manual labor. For reference, the regex automation part was hacked in: https://github.com/booxter/nix-clean-apple_sdk Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
53 lines
1.1 KiB
Nix
53 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;
|
|
};
|
|
}
|