add tls support for msmtp

svn path=/nixpkgs/trunk/; revision=22010
This commit is contained in:
David Guibert 2010-05-27 19:33:33 +00:00
parent b3e7257c5f
commit acafca89ba
2 changed files with 4 additions and 2 deletions

View file

@ -1,4 +1,4 @@
args: with args;
{stdenv, fetchurl, openssl}:
stdenv.mkDerivation {
name = "msmtp-1.4.13";
@ -7,6 +7,8 @@ stdenv.mkDerivation {
sha256 = "1x8q8dhcpnjym3icz6070l13hz98fvdvgc5j5psj4pmxbswx0r4p";
};
buildInputs = [ openssl ];
meta = {
description = "a MUA";
homepage = http://msmtp.sourceforge.net/;

View file

@ -8244,7 +8244,7 @@ let
};
msmtp = import ../applications/networking/msmtp {
inherit fetchurl stdenv;
inherit fetchurl stdenv openssl;
};
mythtv = import ../applications/video/mythtv {