From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonathan Brielmaier Subject: Re: Transmission BitTorrent Client Date: Fri, 26 Apr 2019 19:52:53 +0200 Message-ID: References: <9aa9d24e85233073adbe7787c8c96b2c8fe531f4.camel@disroot.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([209.51.188.92]:54558) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hK51w-0002iX-B1 for guix-devel@gnu.org; Fri, 26 Apr 2019 13:53:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hK51v-0001XJ-9j for guix-devel@gnu.org; Fri, 26 Apr 2019 13:53:00 -0400 Received: from mout.web.de ([212.227.15.14]:51575) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hK51v-0001TA-0C for guix-devel@gnu.org; Fri, 26 Apr 2019 13:52:59 -0400 Received: from [10.160.65.136] ([195.135.221.2]) by smtp.web.de (mrweb002 [213.165.67.108]) with ESMTPSA (Nemesis) id 0Lr2Dz-1goc5c0cjL-00eZNd for ; Fri, 26 Apr 2019 19:52:55 +0200 In-Reply-To: <9aa9d24e85233073adbe7787c8c96b2c8fe531f4.camel@disroot.org> Content-Language: en-US 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: guix-devel@gnu.org Am 26.04.19 um 19:35 schrieb Raghav Gururajan: > Hello Guix! > > I tried installing the package "Transmission". It is not showing up in > GNOME Menu. Typing "transmission" on terminal also not starting the > application. But I can see the package installed in my user profile. The problem here is that the transmission package has two outputs: out and gui. These are kind of like subpackages. You need the gui one. And out is the default so transmission means basically transmission:out :) $ guix package --show=3Dtransmission name: transmission version: 2.94 outputs: out gui [...] In order to install the UI client of transmission, you only need to use: $ guix package --install=3Dtransmission:gui Then transmission should appear in the GNOME menu or at least as transmission-gtk in your terminal. ~Jonathan P.S: I think questions like this fit better on the help-guix@gnu.org mailinglist: https://www.gnu.org/software/guix/contact/