socat: make tests run, but disable

This commit is contained in:
Jan Malakhovski 2018-08-08 21:38:23 +00:00
parent fea886b31f
commit 131e6d664b

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, openssl, readline }:
{ stdenv, fetchurl, openssl, readline, which, nettools }:
stdenv.mkDerivation rec {
name = "socat-1.7.3.2";
@ -8,10 +8,20 @@ stdenv.mkDerivation rec {
sha256 = "0lcj6zpra33xhgvhmz9l3cqz10v8ybafb8dd1yqkwf1rhy01ymp3";
};
postPatch = ''
patchShebangs test.sh
substituteInPlace test.sh \
--replace /bin/rm rm \
--replace /sbin/ifconfig ifconfig
'';
buildInputs = [ openssl readline ];
hardeningEnable = [ "pie" ];
checkInputs = [ which nettools ];
doCheck = false; # fails a bunch, hangs
meta = {
description = "A utility for bidirectional data transfer between two independent data channels";
homepage = http://www.dest-unreach.org/socat/;