From d326561aaf3e51f283a325aee133ff88f3aa2dfa Mon Sep 17 00:00:00 2001 From: Marc Weber Date: Wed, 24 Sep 2008 00:42:36 +0000 Subject: [PATCH] proxytunnel fix svn path=/nixpkgs/trunk/; revision=12906 --- pkgs/tools/misc/proxytunnel/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/misc/proxytunnel/default.nix b/pkgs/tools/misc/proxytunnel/default.nix index 4975c5f5f7b9..f587437b5da8 100644 --- a/pkgs/tools/misc/proxytunnel/default.nix +++ b/pkgs/tools/misc/proxytunnel/default.nix @@ -9,6 +9,8 @@ args.stdenv.mkDerivation { buildInputs =(with args; [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;