Merge pull request #12053 from jeaye/slrn-ssl

Add SSL support to slrn
This commit is contained in:
goibhniu 2016-01-11 00:20:54 +01:00
commit ef038f4735

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl
, slang, ncurses }:
, slang, ncurses, openssl }:
let version = "1.0.2"; in
@ -18,9 +18,9 @@ stdenv.mkDerivation {
-e "s|/bin/rm|rm|"
'';
configureFlags = "--with-slang=${slang}";
configureFlags = "--with-slang=${slang} --with-ssl=${openssl}";
buildInputs = [ slang ncurses ];
buildInputs = [ slang ncurses openssl ];
meta = with stdenv.lib; {
description = "The slrn (S-Lang read news) newsreader";