From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arun Isaac Subject: Re: How do I check out a package w/o installing it? Date: Wed, 31 Jan 2018 10:44:00 +0530 Message-ID: References: <86r2q8o5hj.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57704) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1egkj0-0000h7-Oh for help-guix@gnu.org; Wed, 31 Jan 2018 00:14:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1egkiw-00066F-1h for help-guix@gnu.org; Wed, 31 Jan 2018 00:14:22 -0500 Received: from [2001:19f0:5:274f:4827:c39:448f:6777] (port=44724 helo=vultr.systemreboot.net) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1egkiv-00064B-1T for help-guix@gnu.org; Wed, 31 Jan 2018 00:14:17 -0500 In-Reply-To: List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: "Thompson, David" Cc: help-guix "Thompson, David" writes: > On Mon, Jan 29, 2018 at 2:20 PM, Arun Isaac wrote: >> George myglc2 Clemmer writes: >> >>> I tried to use 'guix environment' to check out znc this way ... >>> >>> guix environment --ad-hoc znc -- emacs -nw >>> >>> the znc man is unavailable ... >> >> I have been wondering the same. It would be nice if at least the man and >> info documentation was available somehow. What needs to be done in this >> regard? > > If you want to use 'man', include the man-db package in your > environment. If you want to use 'info', include the info-reader > package (I think). > > To be more general, there isn't any "magic" here. The znc package > includes man pages in its output directory, but 'man' won't know about > it unless it's on $MANPATH. In order to make Guix set the proper > MANPATH, you need to include man-db because that package is the one > that defines the native search path for MANPATH. This makes sense. I also verified it, and it works for me. Thanks!