From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: Gnunet-0.10.0 recipe Date: Thu, 30 Jan 2014 23:39:12 +0100 Message-ID: <20140130223912.GA12116@debian> References: <52EA7F73.9010302@totakura.in> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49823) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W90Gc-0007lF-Ac for guix-devel@gnu.org; Thu, 30 Jan 2014 17:39:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W90GV-0005oq-1k for guix-devel@gnu.org; Thu, 30 Jan 2014 17:39:26 -0500 Received: from moutng.kundenserver.de ([212.227.126.171]:50933) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W90GU-0005oS-OF for guix-devel@gnu.org; Thu, 30 Jan 2014 17:39:18 -0500 Content-Disposition: inline In-Reply-To: <52EA7F73.9010302@totakura.in> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Sree Harsha Totakura Cc: guix-devel@gnu.org Hello, On Thu, Jan 30, 2014 at 05:36:03PM +0100, Sree Harsha Totakura wrote: > Here is the much awaited recipe for GNUnet. The patches follow this email. excellent! I also worked on gnunet and think my handling of phases is a bit simpler and clearer: (arguments `(#:phases ;; swap check and install phases and set paths to installed binaries (alist-cons-before 'check 'set-path-for-check (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (setenv "GNUNET_PREFIX" out) (setenv "PATH" (string-append (getenv "PATH") ":" out "/bin")))) (alist-cons-after 'install 'check (assoc-ref %standard-phases 'check) (alist-delete 'check %standard-phases))))) (where the 'set-path-for-check phase will be made obsolete by the recent gnunet modification I suggested in its bug tracker). We have slightly different inputs; what is opus needed for? Apart from that, I have additional inputs: ("libmicrohttpd" ,libmicrohttpd) ("openssl" ,openssl) ; needed for some tests creating TLS certificates Maybe openssl is a remainder from an earlier gnunet version and not needed/ used anymore? Andreas