2013-11-04 18:27:57 +00:00
|
|
|
{ stdenv, fetchurl, openssl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-07-16 21:27:04 +00:00
|
|
|
name = "socat-2.0.0-b8";
|
2013-11-04 18:27:57 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.dest-unreach.org/socat/download/${name}.tar.bz2";
|
2015-07-16 21:27:04 +00:00
|
|
|
sha256 = "1slkv1hhcp9a6c88h6yl5cs0z9g60fp2ja6865s6kywqp6fmf168";
|
2013-11-04 18:27:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
2014-07-24 20:15:07 +00:00
|
|
|
configureFlags = stdenv.lib.optionalString stdenv.isDarwin "--disable-ip6";
|
|
|
|
|
2015-11-26 15:07:55 +00:00
|
|
|
patches = stdenv.lib.singleton ./libressl-fixes.patch ;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2013-11-04 18:27:57 +00:00
|
|
|
description = "A utility for bidirectional data transfer between two independent data channels";
|
|
|
|
homepage = http://www.dest-unreach.org/socat/;
|
2014-03-13 07:09:19 +00:00
|
|
|
repositories.git = git://repo.or.cz/socat.git;
|
2015-11-26 15:07:55 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.eelco ];
|
2013-11-04 18:27:57 +00:00
|
|
|
};
|
|
|
|
}
|