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 {
|
2015-05-06 14:40:52 -07:00
|
|
|
version = "1.6.2";
|
2015-01-09 08:31:10 -08:00
|
|
|
name = "msmtp-${version}";
|
2007-09-03 05:10:57 -07:00
|
|
|
|
2008-01-30 09:20:48 -08:00
|
|
|
src = fetchurl {
|
2015-01-09 08:31:10 -08:00
|
|
|
url = "mirror://sourceforge/msmtp/${name}.tar.xz";
|
2015-05-06 14:40:52 -07:00
|
|
|
sha256 = "12c7ljahb06pgn8yvvw526xvr11vnr6d4nr0apylixddpxycsvig";
|
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
|
|
|
|
2015-01-09 08:31:10 -08:00
|
|
|
postInstall = ''
|
|
|
|
cp scripts/msmtpq/msmtp-queue scripts/msmtpq/msmtpq $prefix/bin/
|
|
|
|
chmod +x $prefix/bin/msmtp-queue $prefix/bin/msmtpq
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
}
|