2013-11-04 22:27:57 +04:00
|
|
|
{ stdenv, fetchurl, openssl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-02-06 22:21:26 +04:00
|
|
|
name = "socat-2.0.0-b7";
|
2013-11-04 22:27:57 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.dest-unreach.org/socat/download/${name}.tar.bz2";
|
2014-02-06 22:21:26 +04:00
|
|
|
sha256 = "0h6k9ccrnziw03j0if7myrd28vcc97nwz1bifmbrkp5jkpk69ygk";
|
2013-11-04 22:27:57 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A utility for bidirectional data transfer between two independent data channels";
|
|
|
|
homepage = http://www.dest-unreach.org/socat/;
|
2014-03-13 11:09:19 +04:00
|
|
|
repositories.git = git://repo.or.cz/socat.git;
|
2013-11-04 22:27:57 +04:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
maintainers = stdenv.lib.maintainers.eelco;
|
|
|
|
};
|
|
|
|
}
|