socat: add readline support

This commit is contained in:
obadz 2016-06-13 12:08:18 +01:00
parent 52edff8689
commit ca17bd0c8a

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, openssl }: { stdenv, fetchurl, openssl, readline }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "socat-1.7.3.1"; name = "socat-1.7.3.1";
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "1apvi7sahcl44arnq1ad2y6lbfqnmvx7nhz9i3rkk0f382anbnnj"; sha256 = "1apvi7sahcl44arnq1ad2y6lbfqnmvx7nhz9i3rkk0f382anbnnj";
}; };
buildInputs = [ openssl ]; buildInputs = [ openssl readline ];
patches = [ ./enable-ecdhe.patch ./libressl-fixes.patch ]; patches = [ ./enable-ecdhe.patch ./libressl-fixes.patch ];