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
31 lines
772 B
Nix
31 lines
772 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mailcheck";
|
|
version = "1.91.2";
|
|
|
|
patches = [ ./mailcheck-Makefile.patch ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/mailcheck/mailcheck_${version}.tar.gz";
|
|
sha256 = "0p0azaxsnjvjbg41ycicc1i0kzw6jiynq8k49cfkdhlckxfdm9kc";
|
|
};
|
|
|
|
meta = {
|
|
description = "Simple command line tool to check for new messages";
|
|
mainProgram = "mailcheck";
|
|
homepage = "https://mailcheck.sourceforge.net/";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = with lib.maintainers; [ kovirobi ];
|
|
platforms = lib.platforms.linux;
|
|
longDescription = ''
|
|
A simple command line tool to check for new mail in local mbox and
|
|
maildir and remote POP3 and IMAP mailboxes.
|
|
'';
|
|
};
|
|
}
|