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 {
|
2014-08-03 14:03:56 +02:00
|
|
|
name = "msmtp-1.4.32";
|
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";
|
2014-08-03 14:03:56 +02:00
|
|
|
sha256 = "122z38pv4q03w3mbnhrhg4w85a51258sfdg2ips0b6cgwz3wbw1b";
|
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
|
|
|
}
|