at 16.09-beta 21 lines 631 B view raw
1{ stdenv, fetchurl, openssl }: 2 3stdenv.mkDerivation { 4 name = "proxytunnel-1.9.0"; 5 6 src = fetchurl { 7 url = mirror://sourceforge/proxytunnel/proxytunnel-1.9.0.tgz; 8 sha256 = "1fd644kldsg14czkqjybqh3wrzwsp3dcargqf4fjkpqxv3wbpx9f"; 9 }; 10 11 buildInputs = [ openssl ]; 12 13 installPhase = ''make DESTDIR="$out" PREFIX="" install''; 14 15 meta = { 16 description = "Program that connects stdin and stdout to a server somewhere on the network, through a standard HTTPS proxy"; 17 homepage = http://proxytunnel.sourceforge.net/download.php; 18 license = stdenv.lib.licenses.gpl2; 19 platforms = stdenv.lib.platforms.linux; 20 }; 21}