Added mailcheck, simple utility to check for mail.

This commit is contained in:
Kovacsics Robert (NixOS-SSD2)
2015-04-05 19:50:43 +01:00
parent eac32cf697
commit 9558523821
3 changed files with 51 additions and 0 deletions
@@ -0,0 +1,27 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "mailcheck-${version}";
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";
homepage = http://mailcheck.sourceforge.net/;
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ kovirobi ];
platforms = stdenv.lib.platforms.linux;
inherit version;
longDescription = ''
A simple command line tool to check for new mail in local mbox and
maildir and remote POP3 and IMAP mailboxes.
'';
};
}