5521faad65
build-vm in my computer, but does not. svn path=/nixpkgs/trunk/; revision=33239
18 lines
424 B
Nix
18 lines
424 B
Nix
{ stdenv, fetchurl, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "socat-1.7.2.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.dest-unreach.org/socat/download/${name}.tar.bz2";
|
|
sha256 = "00hq0ia1fs4sy0qpavzlpf4qmnhh2ybq5is2kqzvqky14zlvvcsr";
|
|
};
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
meta = {
|
|
description = "Socat - a different replacement for netcat";
|
|
homepage = "http://www.dest-unreach.org/socat/";
|
|
};
|
|
}
|