From mboxrd@z Thu Jan 1 00:00:00 1970 From: zimoun Subject: Re: Installing webbrowser and email client via Guix package manager Date: Fri, 8 Feb 2019 12:04:04 +0100 Message-ID: References: <875ztvcyku.fsf@ambrevar.xyz> <874l9fcyj0.fsf@ambrevar.xyz> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([209.51.188.92]:60197) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gs3xD-0002PT-6Y for help-guix@gnu.org; Fri, 08 Feb 2019 06:04:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gs3xA-0001LN-RQ for help-guix@gnu.org; Fri, 08 Feb 2019 06:04:18 -0500 Received: from mail-qk1-x733.google.com ([2607:f8b0:4864:20::733]:41553) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gs3xA-0001Ke-Ht for help-guix@gnu.org; Fri, 08 Feb 2019 06:04:16 -0500 Received: by mail-qk1-x733.google.com with SMTP id u188so1822316qkh.8 for ; Fri, 08 Feb 2019 03:04:16 -0800 (PST) In-Reply-To: <874l9fcyj0.fsf@ambrevar.xyz> 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: Pierre Neidhardt Cc: help-guix Hi Meikel, To complement the words by Pierre, I would tell that Web Browser and Emails Client are maybe not the best entry point to discover the Guix system. :-) Well, to search on all the packages, the way is: guix package -s web -s browser \ | recsel -e 'description ~ "[Bb]rowser"' -p name,synopsis,relevance The part `-s web -s browser' means: search the word web *or* the word browser in all the fields (name, synopsis, description, etc.). The recsel command allows to filter out. - `-e 'description ~ "[Bb]rowser"' means: select the package owning the word Browser or browser in the field description; - `-p name,synopsis,relevance' means: only outputs the fields name, synopsis and relevance. Then, for example try `guix package --show=icecat' to see all the package information. To install the recsel comand, you need to install the package recutils. Then give a look at the manual: https://www.gnu.org/software/guix/manual/en/html_node/Invoking-guix-package.html#Invoking-guix-package If you are an Emacs user, then I recommand you to give a look at the package emacs-guix. Enjoy! simon