2010-07-28 04:55:54 -07:00
|
|
|
{ stdenv, fetchurl, openssl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-09-06 05:33:25 -07:00
|
|
|
name = "proxytunnel-1.9.0";
|
|
|
|
|
2010-07-28 04:55:54 -07:00
|
|
|
src = fetchurl {
|
2020-03-31 18:11:51 -07:00
|
|
|
url = "mirror://sourceforge/proxytunnel/proxytunnel-1.9.0.tgz";
|
2008-09-06 05:33:25 -07:00
|
|
|
sha256 = "1fd644kldsg14czkqjybqh3wrzwsp3dcargqf4fjkpqxv3wbpx9f";
|
|
|
|
};
|
|
|
|
|
2010-07-28 04:55:54 -07:00
|
|
|
buildInputs = [ openssl ];
|
2008-09-06 05:33:25 -07:00
|
|
|
|
2010-07-28 04:55:54 -07:00
|
|
|
installPhase = ''make DESTDIR="$out" PREFIX="" install'';
|
2008-09-23 17:42:36 -07:00
|
|
|
|
2008-09-06 05:33:25 -07:00
|
|
|
meta = {
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "Program that connects stdin and stdout to a server somewhere on the network, through a standard HTTPS proxy";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://proxytunnel.sourceforge.net/download.php";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2008-09-06 05:33:25 -07:00
|
|
|
};
|
|
|
|
}
|