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