2013-03-10 13:17:17 -07:00
|
|
|
{ stdenv, fetchurl, openssl, pkgconfig, gnutls, gsasl, libidn }:
|
2013-07-18 15:53:06 -07:00
|
|
|
|
2013-03-10 13:17:17 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2014-08-03 05:03:56 -07:00
|
|
|
name = "msmtp-1.4.32";
|
2007-09-03 05:10:57 -07:00
|
|
|
|
2008-01-30 09:20:48 -08:00
|
|
|
src = fetchurl {
|
2013-03-10 13:17:17 -07:00
|
|
|
url = "mirror://sourceforge/msmtp/${name}.tar.bz2";
|
2014-08-03 05:03:56 -07:00
|
|
|
sha256 = "122z38pv4q03w3mbnhrhg4w85a51258sfdg2ips0b6cgwz3wbw1b";
|
2007-09-03 05:10:57 -07:00
|
|
|
};
|
|
|
|
|
2013-03-10 13:17:17 -07:00
|
|
|
buildInputs = [ openssl pkgconfig gnutls gsasl libidn ];
|
2010-05-27 12:33:33 -07:00
|
|
|
|
2013-03-10 13:17:17 -07:00
|
|
|
meta = {
|
2013-07-18 15:53:06 -07:00
|
|
|
description = "Simple and easy to use SMTP client with excellent sendmail compatibility";
|
2013-03-10 13:17:17 -07:00
|
|
|
homepage = "http://msmtp.sourceforge.net/";
|
|
|
|
license = stdenv.lib.licenses.gpl3;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.garbas ];
|
2013-07-18 15:53:06 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2013-03-10 13:17:17 -07:00
|
|
|
};
|
2007-09-03 05:10:57 -07:00
|
|
|
}
|