2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, openssl }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-09-18 10:52:07 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "proxytunnel";
|
|
|
|
version = "1.9.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-09-18 10:52:07 +00:00
|
|
|
url = "mirror://sourceforge/proxytunnel/proxytunnel-${version}.tgz";
|
2020-04-24 23:36:52 +00:00
|
|
|
sha256 = "1fd644kldsg14czkqjybqh3wrzwsp3dcargqf4fjkpqxv3wbpx9f";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
|
|
|
installPhase = ''make DESTDIR="$out" PREFIX="" install'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Program that connects stdin and stdout to a server somewhere on the network, through a standard HTTPS proxy";
|
|
|
|
homepage = "http://proxytunnel.sourceforge.net/download.php";
|
2021-01-15 22:18:51 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.linux;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|