unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
* (no subject)
@ 2020-05-20  0:31 Edison Ibáñez
  2020-05-20  3:03 ` Update Xonsh Edison Ibáñez
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Edison Ibáñez @ 2020-05-20  0:31 UTC (permalink / raw)
  To: help-guix

   Regards,

   I currently use xonsh as my user's shell, but the default version in
   GuixSD is 0.6.2 and the latest available is 0.9.18.

   I wrote a file to install the latest version of this package but I
   cannot set this version as my user's default shell.

   There is a way to update xonsh in the config.scm file to the latest
   available version.

   Thank you

   – Edison Ibáñez
   One Emacs to rule them all

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Update Xonsh
  2020-05-20  0:31 Edison Ibáñez
@ 2020-05-20  3:03 ` Edison Ibáñez
  2020-05-20  5:45 ` Carlo Zancanaro
  2020-05-24 16:41 ` Josh Marshall
  2 siblings, 0 replies; 8+ messages in thread
From: Edison Ibáñez @ 2020-05-20  3:03 UTC (permalink / raw)
  To: help-guix

sorry i forgot to put the subject of this message

El martes 19 de mayo del 2020 a las 1931 horas, Edison Ibáñez 
escribió:

>    Regards,
>
>    I currently use xonsh as my user's shell, but the default 
>    version in
>    GuixSD is 0.6.2 and the latest available is 0.9.18.
>
>    I wrote a file to install the latest version of this package 
>    but I
>    cannot set this version as my user's default shell.
>
>    There is a way to update xonsh in the config.scm file to the 
>    latest
>    available version.
>
>    Thank you
>
>    – Edison Ibáñez
>    One Emacs to rule them all


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Update Xonsh
  2020-05-20  0:31 Edison Ibáñez
  2020-05-20  3:03 ` Update Xonsh Edison Ibáñez
@ 2020-05-20  5:45 ` Carlo Zancanaro
  2020-05-20 19:34   ` Edison Ibáñez
  2020-05-24 16:41 ` Josh Marshall
  2 siblings, 1 reply; 8+ messages in thread
From: Carlo Zancanaro @ 2020-05-20  5:45 UTC (permalink / raw)
  To: Edison Ibáñez; +Cc: help-guix

Hey Edison,

One easy way to do this is to just put your package definition in 
config.scm, above your operating system definition. I haven't 
tried it with a shell, but the basic idea would be to have 
something like this:

(define-public xonsh
  ... your package definition ...)

(operating-system
  ... other bits ...
  (users (cons (user-account
                ... other bits ...
                (shell (file-append xonsh "/bin/xonsh")))
               %base-user-accounts))
  ... other bits ...)

Another way to do it would be to submit a patch updating xonsh to 
be included in Guix, which would also benefit all other Guix 
users.

Carlo

On Wed, May 20 2020, Edison Ibáñez wrote:
>    Regards,
>
>    I currently use xonsh as my user's shell, but the default 
>    version in
>    GuixSD is 0.6.2 and the latest available is 0.9.18.
>
>    I wrote a file to install the latest version of this package 
>    but I
>    cannot set this version as my user's default shell.
>
>    There is a way to update xonsh in the config.scm file to the 
>    latest
>    available version.
>
>    Thank you
>
>    – Edison Ibáñez
>    One Emacs to rule them all



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Update Xonsh
  2020-05-20  5:45 ` Carlo Zancanaro
@ 2020-05-20 19:34   ` Edison Ibáñez
  2020-05-20 20:17     ` Tobias Geerinckx-Rice
  0 siblings, 1 reply; 8+ messages in thread
From: Edison Ibáñez @ 2020-05-20 19:34 UTC (permalink / raw)
  To: Carlo Zancanaro; +Cc: help-guix


Thanks for the help, I just saw that they updated xonsh to the 
latest version

El miércoles 20 de mayo del 2020 a las 0045 horas, Carlo Zancanaro 
escribió:

> Hey Edison,
>
> One easy way to do this is to just put your package definition 
> in
> config.scm, above your operating system definition. I haven't
> tried it with a shell, but the basic idea would be to have 
> something
> like this:
>
> (define-public xonsh
>  ... your package definition ...)
>
> (operating-system
>  ... other bits ...
>  (users (cons (user-account
>                ... other bits ...
>                (shell (file-append xonsh "/bin/xonsh")))
>               %base-user-accounts))
>  ... other bits ...)
>
> Another way to do it would be to submit a patch updating xonsh 
> to be
> included in Guix, which would also benefit all other Guix users.
>
> Carlo
>
> On Wed, May 20 2020, Edison Ibáñez wrote:
>>    Regards,
>>
>>    I currently use xonsh as my user's shell, but the default
>> version in
>>    GuixSD is 0.6.2 and the latest available is 0.9.18.
>>
>>    I wrote a file to install the latest version of this package
>> but I
>>    cannot set this version as my user's default shell.
>>
>>    There is a way to update xonsh in the config.scm file to the
>> latest
>>    available version.
>>
>>    Thank you
>>
>>    – Edison Ibáñez
>>    One Emacs to rule them all


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Update Xonsh
  2020-05-20 19:34   ` Edison Ibáñez
@ 2020-05-20 20:17     ` Tobias Geerinckx-Rice
  2020-05-21 20:39       ` Edison Ibáñez
  0 siblings, 1 reply; 8+ messages in thread
From: Tobias Geerinckx-Rice @ 2020-05-20 20:17 UTC (permalink / raw)
  To: Edison Ibáñez; +Cc: help-guix

[-- Attachment #1: Type: text/plain, Size: 634 bytes --]

Edison,

Edison Ibáñez 写道:
> Thanks for the help, I just saw that they updated xonsh to the 
> latest
> version

Hi, they here :-)

> I wrote a file to install the latest version of this package but 
> I
> cannot set this version as my user's default shell.

I do a quick mail search before updating most packages.  It looks 
like yours arrived just too late.  Feel free to compare my bump[0] 
against yours & let me know if there are any interesting 
differences between them!

Kind regards,

T G-R

[0]: 
https://git.savannah.gnu.org/cgit/guix.git/commit/?id=72faca2c50d1e8a1a39ee334a24333fe09352a6c

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Update Xonsh
  2020-05-20 20:17     ` Tobias Geerinckx-Rice
@ 2020-05-21 20:39       ` Edison Ibáñez
  0 siblings, 0 replies; 8+ messages in thread
From: Edison Ibáñez @ 2020-05-21 20:39 UTC (permalink / raw)
  To: Tobias Geerinckx-Rice; +Cc: help-guix


Thanks Tobias,

The only part that I would change is in the "inputs" to add 
python-prompt-toolkit since it will add more complete 
functionality  when presenting predictions or suggestions 
something similar to what fish shell and zsh do.

(inputs
     `(("python-ply" ,python-ply)
       ("python-prompt-toolkit@2.0.7" ,python-prompt-toolkit)))

regards

El miércoles 20 de mayo del 2020 a las 1517 horas, Tobias 
Geerinckx-Rice escribió:

> Edison,
>
> Edison Ibáñez 写道:
>> Thanks for the help, I just saw that they updated xonsh to the
>> latest
>> version
>
> Hi, they here :-)
>
>> I wrote a file to install the latest version of this package 
>> but I
>> cannot set this version as my user's default shell.
>
> I do a quick mail search before updating most packages.  It 
> looks like
> yours arrived just too late.  Feel free to compare my bump[0] 
> against
> yours & let me know if there are any interesting differences 
> between
> them!
>
> Kind regards,
>
> T G-R
>
> [0]:
> https://git.savannah.gnu.org/cgit/guix.git/commit/?id=72faca2c50d1e8a1a39ee334a24333fe09352a6c


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re:
  2020-05-20  0:31 Edison Ibáñez
  2020-05-20  3:03 ` Update Xonsh Edison Ibáñez
  2020-05-20  5:45 ` Carlo Zancanaro
@ 2020-05-24 16:41 ` Josh Marshall
  2 siblings, 0 replies; 8+ messages in thread
From: Josh Marshall @ 2020-05-24 16:41 UTC (permalink / raw)
  To: Edison Ibáñez; +Cc: help-guix

I think the standard advice is to submit a patch to update the version
of xonsh, then use profiles to run the version desired.

On Tue, May 19, 2020 at 8:32 PM Edison Ibáñez <arkhan@disroot.org> wrote:
>
>    Regards,
>
>    I currently use xonsh as my user's shell, but the default version in
>    GuixSD is 0.6.2 and the latest available is 0.9.18.
>
>    I wrote a file to install the latest version of this package but I
>    cannot set this version as my user's default shell.
>
>    There is a way to update xonsh in the config.scm file to the latest
>    available version.
>
>    Thank you
>
>    – Edison Ibáñez
>    One Emacs to rule them all


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re:
  2023-07-18 10:13 Dr. Ibrahim Y. EL-Nahhal
@ 2023-07-18 15:27 ` Wojtek Kosior via
  0 siblings, 0 replies; 8+ messages in thread
From: Wojtek Kosior via @ 2023-07-18 15:27 UTC (permalink / raw)
  To: Dr. Ibrahim Y. EL-Nahhal; +Cc: help-guix

[-- Attachment #1: Type: text/plain, Size: 3221 bytes --]

Hi there,

AFAIK there's no stable branch of Guix.

Please share the code of your Guix system configuration and the exact
error message you received.

I'd normally expect efibootmgr errors when trying to install a UEFI
variant of GRUB while being booted in legacy mode. So you can first
make sure your USB is booted in UEFI mode before trying to install a
UEFI GRUB. Alternatively, you can install the OS in legacy mode (i.e.
without using ESP) and then set your laptop to boot from disk in legacy
mode. Please look into Guix documentation to find information on how to
perform both types of installation

Best,
wojtek

-- (sig_start)
website: https://koszko.org/koszko.html
fingerprint: E972 7060 E3C5 637C 8A4F  4B42 4BC5 221C 5A79 FD1A
follow me on Fediverse: https://friendica.me/profile/koszko/profile

♥ R29kIGlzIHRoZXJlIGFuZCBsb3ZlcyBtZQ== | ÷ c2luIHNlcGFyYXRlZCBtZSBmcm9tIEhpbQ==
✝ YnV0IEplc3VzIGRpZWQgdG8gc2F2ZSBtZQ== | ? U2hhbGwgSSBiZWNvbWUgSGlzIGZyaWVuZD8=
-- (sig_end)


On Tue, 18 Jul 2023 13:13:18 +0300 Dr. Ibrahim Y. EL-Nahhal <elnahhal.i@gmail.com> wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA256
> 
> Dear Guix Community,
> 
> I am writing to report an issue that I encountered while updating my GNU Guix System Distribution. I was able to successfully install it on my laptop, but when I ran "guix pull" and "guix system reconfigure", the updating process failed to install the bootloader on my ESP partition. As a result, when I rebooted my laptop, I couldn't boot normally to my GNU Guix System and no GRUB bootloader was found.
> 
> I tried to create a new USB stick for the installation of GNU Guix, and the installation proceeded well except for the last step which was the installation of the bootloader. I received a message about efibootmgr. Eventually, I switched to the installation of my NixOS Linux and successfully installed it on my HP laptop from which I am reporting this issue to the Guix community.
> 
> I would like to know if there is a stable branch for Guix in the same way as there is a stable branch of NixOS Linux. Also, I would appreciate any help or guidance on how to solve the above issue.
> 
> Thank you for your time and assistance.
> 
> Best regards,
> 
> - -- 
> Dr. Ibrahim Y. EL-Nahhal
> -----BEGIN PGP SIGNATURE-----
> 
> iQJJBAEBCAAzFiEEyz6U+Z8D5ICywdWs+5Wblsm+zXQFAmS2ZcsVHGVsbmFoaGFs
> LmlAZ21haWwuY29tAAoJEPuVm5bJvs10eA8P/Aro7Mf3BCBXYHDL4IeL7q9pY/KB
> UdZqCtCU5hm1vCx1lfyvqZjLKOj2ylySaUIywKARgKwL1P31QZ5y5h/b2IqzoZcQ
> 2hY/YAWHWWC9bsIB7zd8EAUWGsYe4NcuPmcTUp4oP77cXdd79wZK3cwfR+/4+8vE
> 8Q0QqmuSaYnKsY9XqK1hsIqpO6Rh6PKo22XQOvuSbYCRYJtEesMsXZeKOa39I4q+
> +gFFiRBWzH79PQjPJM53yCyDFzxGZGZP/9/qRUiw1hE2nlKX5uj/iIROm7W/7GGU
> NX0x9cgzkrMJzwj/V0t8Z1StGYB5AZgopsUxz60NCE4SS0izy/Gav3oPHkuhKGm4
> ICLEGrkoMEnmqlQ4eM2X3hnM6dc5rjpr8lQfrbXsy0N0NW+qDoGy3/nm+7tNEIBm
> n8Z21g67wnYn7d+oIDzHkgwYVh4Ij7RYM9UStMjgcfnoqizuGyXMHbojfbuhUlKL
> NID0FSExXbM2pZq/Gfap3gz33A2k9Cgy1E8/kqxorVokzVFu+kTaQW9KL2XtCYIN
> a4m7FIJbGhtix5RsPOODMMZnbeszyjuCzvVnlMJPc8xOZsb3SUcdd+dcPQnK9f49
> bv2pEmJMGqK8/TtTlJW9nyDFTJbw8sO/m+eiML5trl5YgkJ79GfoANhNN0b4yHzW
> 2kSfFVnrsMKVYph9
> =WiXQ
> -----END PGP SIGNATURE-----
> 

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2023-07-18 15:28 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-20  0:31 Edison Ibáñez
2020-05-20  3:03 ` Update Xonsh Edison Ibáñez
2020-05-20  5:45 ` Carlo Zancanaro
2020-05-20 19:34   ` Edison Ibáñez
2020-05-20 20:17     ` Tobias Geerinckx-Rice
2020-05-21 20:39       ` Edison Ibáñez
2020-05-24 16:41 ` Josh Marshall
  -- strict thread matches above, loose matches on Subject: below --
2023-07-18 10:13 Dr. Ibrahim Y. EL-Nahhal
2023-07-18 15:27 ` Wojtek Kosior via

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).