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