* Transmission BitTorrent Client @ 2019-04-26 17:35 Raghav Gururajan 2019-04-26 17:52 ` Jonathan Brielmaier ` (4 more replies) 0 siblings, 5 replies; 11+ messages in thread From: Raghav Gururajan @ 2019-04-26 17:35 UTC (permalink / raw) To: bug-guix; +Cc: guix-devel [-- Attachment #1: Type: text/plain, Size: 234 bytes --] 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. Regards, RG. [-- Attachment #2: Type: text/html, Size: 406 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Transmission BitTorrent Client 2019-04-26 17:35 Transmission BitTorrent Client Raghav Gururajan @ 2019-04-26 17:52 ` Jonathan Brielmaier 2019-04-26 18:32 ` bug#35439: Fwd: bug#35439: " Leo Famulari ` (3 subsequent siblings) 4 siblings, 0 replies; 11+ messages in thread From: Jonathan Brielmaier @ 2019-04-26 17:52 UTC (permalink / raw) To: guix-devel 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=transmission 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=transmission: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/ ^ permalink raw reply [flat|nested] 11+ messages in thread
* bug#35439: Fwd: bug#35439: Transmission BitTorrent Client 2019-04-26 17:35 Transmission BitTorrent Client Raghav Gururajan 2019-04-26 17:52 ` Jonathan Brielmaier @ 2019-04-26 18:32 ` Leo Famulari 2019-04-26 21:59 ` Tobias Geerinckx-Rice ` (2 subsequent siblings) 4 siblings, 0 replies; 11+ messages in thread From: Leo Famulari @ 2019-04-26 18:32 UTC (permalink / raw) To: 35439-done [-- Attachment #1: Type: text/plain, Size: 443 bytes --] ----- Original message ----- From: Raghav Gururajan <rvgn@disroot.org> To: 35439@debbugs.gnu.org Cc: guix-devel@gnu.org Subject: bug#35439: Transmission BitTorrent Client Date: Friday, April 26, 2019 13:40 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. Regards, RG. [-- Attachment #2: Type: text/html, Size: 829 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Transmission BitTorrent Client 2019-04-26 17:35 Transmission BitTorrent Client Raghav Gururajan 2019-04-26 17:52 ` Jonathan Brielmaier 2019-04-26 18:32 ` bug#35439: Fwd: bug#35439: " Leo Famulari @ 2019-04-26 21:59 ` Tobias Geerinckx-Rice 2019-04-26 23:35 ` bug#35439: " ison 2019-04-27 3:42 ` Raghav Gururajan 4 siblings, 0 replies; 11+ messages in thread From: Tobias Geerinckx-Rice @ 2019-04-26 21:59 UTC (permalink / raw) To: guix-devel; +Cc: bug-guix [-- Attachment #1: Type: text/plain, Size: 616 bytes --] Raghav, Raghav Gururajan wrote: > I tried installing the package "Transmission". It is not showing > up in > GNOME Menu. Transmission's GTK GUI interface is in a separate package output (to keep the main output from depending on GTK+, which is quite huge). Install ‘transmission:gui’ and you'll be happy. The :gui output also provides a .desktop file that should make things like GNOME add it to their launcher. > Typing "transmission" on terminal also not starting the > application. The command is ‘transmission-gtk’; ‘transmission’ doesn't exist. Kind regards, T G-R [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 227 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* bug#35439: Transmission BitTorrent Client 2019-04-26 17:35 Transmission BitTorrent Client Raghav Gururajan ` (2 preceding siblings ...) 2019-04-26 21:59 ` Tobias Geerinckx-Rice @ 2019-04-26 23:35 ` ison 2019-04-27 3:42 ` Raghav Gururajan 4 siblings, 0 replies; 11+ messages in thread From: ison @ 2019-04-26 23:35 UTC (permalink / raw) To: Raghav Gururajan; +Cc: 35439 Did you choose the right output? Most packages only have a single output, but transmission has 2: "out" and "gui". For example to install the gui output you would run: guix package -i transmission:gui The gui output is the one that might add your GNOME Menu entries as it comes with the GTK version of transmission. The normal "out" output is the CLI version only. This confused me the first time I used guix too, before I was aware of outputs. ^ permalink raw reply [flat|nested] 11+ messages in thread
* bug#35439: Transmission BitTorrent Client 2019-04-26 17:35 Transmission BitTorrent Client Raghav Gururajan ` (3 preceding siblings ...) 2019-04-26 23:35 ` bug#35439: " ison @ 2019-04-27 3:42 ` Raghav Gururajan 2019-04-27 17:24 ` Timothy Sample ` (3 more replies) 4 siblings, 4 replies; 11+ messages in thread From: Raghav Gururajan @ 2019-04-27 3:42 UTC (permalink / raw) To: ison; +Cc: 35439 Oh wow! That's new xD. I just installed as "transmission" with no output tag. What would have been the output? It neither was cli nor gui. April 26, 2019 7:35 PM, "ison" <ison@airmail.cc> wrote: > Did you choose the right output? Most packages only have a single output, but > transmission has 2: "out" and "gui". > > For example to install the gui output you would run: > guix package -i transmission:gui > > The gui output is the one that might add your GNOME Menu entries as it comes > with the GTK version of transmission. The normal "out" output is the CLI version > only. > This confused me the first time I used guix too, before I was aware of outputs. ^ permalink raw reply [flat|nested] 11+ messages in thread
* bug#35439: Transmission BitTorrent Client 2019-04-27 3:42 ` Raghav Gururajan @ 2019-04-27 17:24 ` Timothy Sample 2019-04-28 10:22 ` swedebugia 2019-04-28 3:46 ` Raghav Gururajan ` (2 subsequent siblings) 3 siblings, 1 reply; 11+ messages in thread From: Timothy Sample @ 2019-04-27 17:24 UTC (permalink / raw) To: Raghav Gururajan; +Cc: 35439 Hi Raghav, "Raghav Gururajan" <rvgn@disroot.org> writes: > Oh wow! That's new xD. I just installed as "transmission" with no > output tag. What would have been the output? It neither was cli nor > gui. It installs the “transmission-daemon” binary, which is a daemon that other applications can talk to in order manage your torrents. One example of a client is “transmission-gtk”, which is a GTK+ interface, but there is also “tremc” which is console-based. The daemon itself provides a Web interface, too, so if you run the daemon and point your Web browser at “http://localhost:9091”, it should give you an overview of your torrents. -- Tim ^ permalink raw reply [flat|nested] 11+ messages in thread
* bug#35439: Transmission BitTorrent Client 2019-04-27 17:24 ` Timothy Sample @ 2019-04-28 10:22 ` swedebugia 0 siblings, 0 replies; 11+ messages in thread From: swedebugia @ 2019-04-28 10:22 UTC (permalink / raw) To: 35439 [-- Attachment #1.1: Type: text/plain, Size: 1586 bytes --] On 2019-04-27 19:24, Timothy Sample wrote: > Hi Raghav, > > "Raghav Gururajan" <rvgn@disroot.org> writes: > >> Oh wow! That's new xD. I just installed as "transmission" with no >> output tag. What would have been the output? It neither was cli nor >> gui. > > It installs the “transmission-daemon” binary, which is a daemon that > other applications can talk to in order manage your torrents. One > example of a client is “transmission-gtk”, which is a GTK+ interface, > but there is also “tremc” which is console-based. The daemon itself > provides a Web interface, too, so if you run the daemon and point your > Web browser at “http://localhost:9091”, it should give you an overview > of your torrents. Taking a look at the synopsis and description I found: synopsis: Fast and easy BitTorrent client description: Transmission is a BitTorrent client that comes with graphical, textual, and Web user interfaces. Transmission also has a + daemon for unattended operations. It supports local peer discovery, full encryption, DHT, µTP, PEX and Magnet Links. I think both should be improved to avoid confusion. -> synopsis: Fast and easy BitTorrent daemon with multiple interfaces description: Transmission is a BitTorrent client that comes with graphical, textual, and Web user interfaces. The default output installs transmission-daemon, transmission-cli and the web interface at http://localhost:9091. It supports local peer discovery, full encryption, DHT, µTP, PEX and Magnet Links. WDYT? -- Cheers Swedebugia [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 228 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* bug#35439: Transmission BitTorrent Client 2019-04-27 3:42 ` Raghav Gururajan 2019-04-27 17:24 ` Timothy Sample @ 2019-04-28 3:46 ` Raghav Gururajan 2019-04-28 5:01 ` Raghav Gururajan 2019-04-28 6:22 ` Raghav Gururajan 3 siblings, 0 replies; 11+ messages in thread From: Raghav Gururajan @ 2019-04-28 3:46 UTC (permalink / raw) To: Timothy Sample; +Cc: 35439 Ah I see. Thanks! April 27, 2019 1:31 PM, "Timothy Sample" <samplet@ngyro.com> wrote: > Hi Raghav, > > "Raghav Gururajan" <rvgn@disroot.org> writes: > >> Oh wow! That's new xD. I just installed as "transmission" with no >> output tag. What would have been the output? It neither was cli nor >> gui. > > It installs the “transmission-daemon” binary, which is a daemon that > other applications can talk to in order manage your torrents. One > example of a client is “transmission-gtk”, which is a GTK+ interface, > but there is also “tremc” which is console-based. The daemon itself > provides a Web interface, too, so if you run the daemon and point your > Web browser at “http://localhost:9091”, it should give you an overview > of your torrents. > > -- Tim ^ permalink raw reply [flat|nested] 11+ messages in thread
* bug#35439: Transmission BitTorrent Client 2019-04-27 3:42 ` Raghav Gururajan 2019-04-27 17:24 ` Timothy Sample 2019-04-28 3:46 ` Raghav Gururajan @ 2019-04-28 5:01 ` Raghav Gururajan 2019-04-28 6:22 ` Raghav Gururajan 3 siblings, 0 replies; 11+ messages in thread From: Raghav Gururajan @ 2019-04-28 5:01 UTC (permalink / raw) To: Timothy Sample; +Cc: 35439 Thanks! How can I see the list of services under %desktop-services? I would like to see in the form of scheme. Thanks! April 27, 2019 1:31 PM, "Timothy Sample" <samplet@ngyro.com> wrote: > Hi Raghav, > > "Raghav Gururajan" <rvgn@disroot.org> writes: > >> Oh wow! That's new xD. I just installed as "transmission" with no >> output tag. What would have been the output? It neither was cli nor >> gui. > > It installs the “transmission-daemon” binary, which is a daemon that > other applications can talk to in order manage your torrents. One > example of a client is “transmission-gtk”, which is a GTK+ interface, > but there is also “tremc” which is console-based. The daemon itself > provides a Web interface, too, so if you run the daemon and point your > Web browser at “http://localhost:9091”, it should give you an overview > of your torrents. > > -- Tim ^ permalink raw reply [flat|nested] 11+ messages in thread
* bug#35439: Transmission BitTorrent Client 2019-04-27 3:42 ` Raghav Gururajan ` (2 preceding siblings ...) 2019-04-28 5:01 ` Raghav Gururajan @ 2019-04-28 6:22 ` Raghav Gururajan 3 siblings, 0 replies; 11+ messages in thread From: Raghav Gururajan @ 2019-04-28 6:22 UTC (permalink / raw) To: Timothy Sample; +Cc: 35439 Sorry, posted in wrong thread. Please ignore my previous email. April 28, 2019 1:01 AM, "Raghav Gururajan" <rvgn@disroot.org> wrote: > Thanks! How can I see the list of services under %desktop-services? I would like to see in the form > of scheme. Thanks! > > April 27, 2019 1:31 PM, "Timothy Sample" <samplet@ngyro.com> wrote: > >> Hi Raghav, >> >> "Raghav Gururajan" <rvgn@disroot.org> writes: >> >>> Oh wow! That's new xD. I just installed as "transmission" with no >>> output tag. What would have been the output? It neither was cli nor >>> gui. >> >> It installs the “transmission-daemon” binary, which is a daemon that >> other applications can talk to in order manage your torrents. One >> example of a client is “transmission-gtk”, which is a GTK+ interface, >> but there is also “tremc” which is console-based. The daemon itself >> provides a Web interface, too, so if you run the daemon and point your >> Web browser at “http://localhost:9091”, it should give you an overview >> of your torrents. >> >> -- Tim ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2019-04-28 10:21 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-04-26 17:35 Transmission BitTorrent Client Raghav Gururajan 2019-04-26 17:52 ` Jonathan Brielmaier 2019-04-26 18:32 ` bug#35439: Fwd: bug#35439: " Leo Famulari 2019-04-26 21:59 ` Tobias Geerinckx-Rice 2019-04-26 23:35 ` bug#35439: " ison 2019-04-27 3:42 ` Raghav Gururajan 2019-04-27 17:24 ` Timothy Sample 2019-04-28 10:22 ` swedebugia 2019-04-28 3:46 ` Raghav Gururajan 2019-04-28 5:01 ` Raghav Gururajan 2019-04-28 6:22 ` Raghav Gururajan
Code repositories for project(s) associated with this external index https://git.savannah.gnu.org/cgit/guix.git This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.