push sheeet
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

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
{
lib,
stdenv,
fetchurl,
openssl,
python3,
pkg-config,
}:
stdenv.mkDerivation rec {
pname = "fetchmail";
version = "6.5.6";
src = fetchurl {
url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz";
hash = "sha256-7BDg4OqkFzE1WTee3nbHRhR2bYOLOUcLZkdIY6ppDas=";
};
buildInputs = [
openssl
python3
];
nativeBuildInputs = [ pkg-config ];
configureFlags = [ "--with-ssl=${openssl.dev}" ];
meta = with lib; {
homepage = "https://www.fetchmail.info/";
description = "Full-featured remote-mail retrieval and forwarding utility";
longDescription = ''
A full-featured, robust, well-documented remote-mail retrieval and
forwarding utility intended to be used over on-demand TCP/IP links
(such as SLIP or PPP connections). It supports every remote-mail
protocol now in use on the Internet: POP2, POP3, RPOP, APOP, KPOP,
all flavors of IMAP, ETRN, and ODMR. It can even support IPv6 and
IPSEC.
'';
platforms = platforms.unix;
license = licenses.gpl2Plus;
mainProgram = "fetchmail";
};
}

View File

@@ -0,0 +1,55 @@
{
lib,
stdenv,
fetchFromGitLab,
openssl,
python3,
autoreconfHook,
pkg-config,
bison,
flex,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "fetchmail";
version = "7.0.0-alpha11";
src = fetchFromGitLab {
owner = "fetchmail";
repo = "fetchmail";
tag = finalAttrs.version;
hash = "sha256-83D2YlFCODK2YD+oLICdim2NtNkkJU67S3YLi8Q6ga8=";
};
buildInputs = [
openssl
python3
];
nativeBuildInputs = [
autoreconfHook
pkg-config
bison
flex
];
configureFlags = [ "--with-ssl=${openssl.dev}" ];
postInstall = ''
cp -a contrib/. $out/share/fetchmail-contrib
'';
meta = with lib; {
homepage = "https://www.fetchmail.info/";
description = "Full-featured remote-mail retrieval and forwarding utility";
longDescription = ''
A full-featured, robust, well-documented remote-mail retrieval and
forwarding utility intended to be used over on-demand TCP/IP links
(such as SLIP or PPP connections). It supports every remote-mail
protocol now in use on the Internet: POP2, POP3, RPOP, APOP, KPOP,
all flavors of IMAP, ETRN, and ODMR. It can even support IPv6 and
IPSEC.
'';
platforms = platforms.unix;
license = licenses.gpl2Plus;
};
})