From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH 1/6] gnu: Add picocom. Date: Mon, 26 Sep 2016 13:24:57 -0400 Message-ID: <20160926172457.GA4625@jasmine> References: <20160926103447.31830-1-david@craven.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47196) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1boZeS-0003TE-NT for guix-devel@gnu.org; Mon, 26 Sep 2016 13:25:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1boZeP-0001sY-IK for guix-devel@gnu.org; Mon, 26 Sep 2016 13:25:12 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:58076) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1boZeN-0001bJ-9d for guix-devel@gnu.org; Mon, 26 Sep 2016 13:25:09 -0400 Content-Disposition: inline In-Reply-To: <20160926103447.31830-1-david@craven.ch> 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: David Craven Cc: guix-devel@gnu.org On Mon, Sep 26, 2016 at 12:34:42PM +0200, David Craven wrote: > * gnu/packages/terminals.scm (picocom): New variable. > + (arguments > + `(#:make-flags '("CC=gcc") > + #:tests? #f Please add a comment saying that there is no test suite (that's what I understand from skimming the GitHub web page). > + #:phases > + (modify-phases %standard-phases > + (delete 'configure) > + (replace 'install > + (lambda* (#:key outputs #:allow-other-keys) > + (let* ((out (assoc-ref outputs "out")) > + (bin (string-append out "/bin")) > + (man (string-append out "/share/man"))) This path should be "/share/man/man1". Otherwise looks good to me!