depot/third_party/nixpkgs/pkgs/tools/networking/socat/2.x.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 lines
731 B
Nix

{ stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
name = "socat-2.0.0-b9";
src = fetchurl {
url = "http://www.dest-unreach.org/socat/download/${name}.tar.bz2";
sha256 = "1ll395xjv4byvv0k2zjbxk8vp3mg3y2w5paa05wv553bqsjv1vs9";
};
buildInputs = [ openssl ];
patches = stdenv.lib.singleton ./libressl-fixes.patch ;
meta = with stdenv.lib; {
description = "A utility for bidirectional data transfer between two independent data channels";
homepage = "http://www.dest-unreach.org/socat/";
repositories.git = "git://repo.or.cz/socat.git";
platforms = platforms.unix;
license = licenses.gpl2;
maintainers = [ maintainers.eelco ];
broken = true; # broken with openssl 1.1
};
}