summary refs log tree commit diff
path: root/pkgs/tools/networking/socat/2.x.nix
blob: 97775a00604bb339c62a6b360aabda0ebb4ff437 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ 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
  };
}