From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH] gnu: Add proxychains-ng. Date: Fri, 12 Aug 2016 14:13:08 -0400 Message-ID: <20160812181308.GB14494@jasmine> References: <87ziohc1wo.fsf@we.make.ritual.n0.is> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35879) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bYGxQ-0001Pt-6g for guix-devel@gnu.org; Fri, 12 Aug 2016 14:13:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bYGxK-0004rQ-1p for guix-devel@gnu.org; Fri, 12 Aug 2016 14:13:23 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:38830) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bYGxI-0004pi-RY for guix-devel@gnu.org; Fri, 12 Aug 2016 14:13:17 -0400 Content-Disposition: inline In-Reply-To: <87ziohc1wo.fsf@we.make.ritual.n0.is> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: ng0 Cc: guix-devel@gnu.org On Fri, Aug 12, 2016 at 05:50:15PM +0000, ng0 wrote: > * gnu/packages/networking.scm (proxychains-ng): New variable. > + (arguments > + `(#:tests? #f > + #:make-flags (list "CC=gcc") > + #:phases > + (modify-phases %standard-phases > + ;; Needs to be configured through the configure script. > + (replace 'configure > + (lambda* (#:key outputs #:allow-other-keys) > + (let ((out (assoc-ref outputs "out"))) > + (zero? (system* "./configure" > + (string-append "--prefix=" out))))))))) Does #:configure-flags not work in this case?