all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* i18n guix module error when opening shell after guix home reconfigure
@ 2022-01-05 10:00 Roland Everaert via
  2022-01-07 21:38 ` Jelle Licht
  2022-01-29 13:19 ` bug#53621: " Holger Peters
  0 siblings, 2 replies; 8+ messages in thread
From: Roland Everaert via @ 2022-01-05 10:00 UTC (permalink / raw)
  To: help-guix@gnu.org

Hello,

First, happy new year and best wishes for this year.

I have updated my guix home configuration to use my zsh config instead of a blank bash configuration.

Unfortunatelly, when I logout and login again, I face the following errors:
-----------------------------------------------------------------------------------------
Backtrace:
9 (primitive-load "/home/roland/.guix-home/on-first-login")
In ice-9/eval.scm:
721:20 8 (primitive-eval (begin (use-modules (guix i18n)) (# …) …))
In ice-9/psyntax.scm:
1230:36 7 (expand-top-sequence ((begin (use-modules (guix …)) …)) …)
1090:25 6 (parse _ (("placeholder" placeholder)) ((top) #(# # …)) …)
1222:19 5 (parse _ (("placeholder" placeholder)) ((top) #(# # …)) …)
259:10 4 (parse _ (("placeholder" placeholder)) (()) _ c&e (eval) …)
In ice-9/boot-9.scm:
3927:20 3 (process-use-modules _)
222:17 2 (map1 (((guix i18n))))
3928:31 1 (_ ((guix i18n)))
3329:6 0 (resolve-interface (guix i18n) #:select _ #:hide _ # _ # …)

ice-9/boot-9.scm:3329:6: In procedure resolve-interface:
no code for module (guix i18n)
-----------------------------------------------------------------------------------------

However, the command guix home reconfigure home-config.scm does not generate any error, so I don't understand why guix complain about a missing module related to internationalization.

I am using guix, the package manager, on a Fedora 34 distribution.

Below is my home-config.scm file content:

-----------------------------------------------------------------------------------------
(use-modules (gnu home)
(gnu home services)
(gnu home services shells)
(gnu services)
(gnu packages admin)
(gnu packages python-xyz)
(gnu packages password-utils)
(gnu packages dunst)
(gnu packages disk)
(gnu packages backup)
(gnu packages libreoffice)
(gnu packages guile)
(gnu packages xdisorg)
(gnu packages tls)
(gnu packages vpn)
(gnu packages terminals)
(guix gexp))

(home-environment
(packages (list htop glances password-store dunst ranger restic hunspell
;; hunspell-dict-fr hunspell-dict-en
;; guile
neofetch xdotool openssl openvpn xscreensaver alacritty))
(services
(list
(service home-zsh-service-type
(home-zsh-configuration
(xdg-flavor? #t)
(zshrc (list (local-file "zshrc"))))))))
-----------------------------------------------------------------------------------------

Any idea what might cause such trouble?

Roland Everaert
---
Use the F.O.S.S., Luke

Sent with [ProtonMail](https://protonmail.com/) Secure Email.

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

* Re: i18n guix module error when opening shell after guix home reconfigure
  2022-01-05 10:00 i18n guix module error when opening shell after guix home reconfigure Roland Everaert via
@ 2022-01-07 21:38 ` Jelle Licht
  2022-01-17  6:55   ` Fredrik Salomonsson
  2022-01-20 23:21   ` Holger Peters
  2022-01-29 13:19 ` bug#53621: " Holger Peters
  1 sibling, 2 replies; 8+ messages in thread
From: Jelle Licht @ 2022-01-07 21:38 UTC (permalink / raw)
  To: Roland Everaert, help-guix@gnu.org


Hello Roland,

Sad prefix: I don't have a solution for you, nor am I a guix home
expert, but I can confirm that I also run into the issue. 

On my VM, I actually used an almost-default bash configuration, but run
into the very same issue.

Roland Everaert via <help-guix@gnu.org> writes:

> Hello,
>
> First, happy new year and best wishes for this year.
>
> I have updated my guix home configuration to use my zsh config instead of a blank bash configuration.
>
> Unfortunatelly, when I logout and login again, I face the following errors:
> -----------------------------------------------------------------------------------------
> Backtrace:
> 9 (primitive-load "/home/roland/.guix-home/on-first-login")
> In ice-9/eval.scm:
> 721:20 8 (primitive-eval (begin (use-modules (guix i18n)) (# …) …))
> In ice-9/psyntax.scm:
> 1230:36 7 (expand-top-sequence ((begin (use-modules (guix …)) …)) …)
> 1090:25 6 (parse _ (("placeholder" placeholder)) ((top) #(# # …)) …)
> 1222:19 5 (parse _ (("placeholder" placeholder)) ((top) #(# # …)) …)
> 259:10 4 (parse _ (("placeholder" placeholder)) (()) _ c&e (eval) …)
> In ice-9/boot-9.scm:
> 3927:20 3 (process-use-modules _)
> 222:17 2 (map1 (((guix i18n))))
> 3928:31 1 (_ ((guix i18n)))
> 3329:6 0 (resolve-interface (guix i18n) #:select _ #:hide _ # _ # …)
>
> ice-9/boot-9.scm:3329:6: In procedure resolve-interface:
> no code for module (guix i18n)

It seems that my $HOME/.guix-home/on-first-login assumes that guix's
guile modules are available to the guile interpreter that is listed in
the shebang;

> -----------------------------------------------------------------------------------------
>
> However, the command guix home reconfigure home-config.scm does not generate any error, so I don't understand why guix complain about a missing module related to internationalization.

>
> I am using guix, the package manager, on a Fedora 34 distribution.
>
> Below is my home-config.scm file content:
>
> -----------------------------------------------------------------------------------------
> (use-modules (gnu home)
> (gnu home services)
> (gnu home services shells)
> (gnu services)
> (gnu packages admin)
> (gnu packages python-xyz)
> (gnu packages password-utils)
> (gnu packages dunst)
> (gnu packages disk)
> (gnu packages backup)
> (gnu packages libreoffice)
> (gnu packages guile)
> (gnu packages xdisorg)
> (gnu packages tls)
> (gnu packages vpn)
> (gnu packages terminals)
> (guix gexp))
>
> (home-environment
> (packages (list htop glances password-store dunst ranger restic hunspell
> ;; hunspell-dict-fr hunspell-dict-en
> ;; guile
> neofetch xdotool openssl openvpn xscreensaver alacritty))
> (services
> (list
> (service home-zsh-service-type
> (home-zsh-configuration
> (xdg-flavor? #t)
> (zshrc (list (local-file "zshrc"))))))))
> -----------------------------------------------------------------------------------------
>
> Any idea what might cause such trouble?


If you are not worried about temporarily running some older software,
could you try and see if running:

--8<---------------cut here---------------start------------->8---
guix time-machine --commit=2719dfa631 -- home reconfigure your-home-config.scm
--8<---------------cut here---------------end--------------->8---

works for you? This will get guix to use an older copy of itself to
build and 'install' your home environment.

Thanks!
 - Jelle


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

* Re: i18n guix module error when opening shell after guix home reconfigure
  2022-01-07 21:38 ` Jelle Licht
@ 2022-01-17  6:55   ` Fredrik Salomonsson
  2022-01-20 23:21   ` Holger Peters
  1 sibling, 0 replies; 8+ messages in thread
From: Fredrik Salomonsson @ 2022-01-17  6:55 UTC (permalink / raw)
  To: Jelle Licht, Roland Everaert, help-guix@gnu.org

Hi,

Jelle Licht <jlicht@fsfe.org> writes:

> Hello Roland,
>
> Sad prefix: I don't have a solution for you, nor am I a guix home
> expert, but I can confirm that I also run into the issue. 
>
> On my VM, I actually used an almost-default bash configuration, but run
> into the very same issue.
>
> Roland Everaert via <help-guix@gnu.org> writes:
>
>> Hello,
>>
>> First, happy new year and best wishes for this year.
>>
>> I have updated my guix home configuration to use my zsh config instead of a blank bash configuration.
>>
>> Unfortunatelly, when I logout and login again, I face the following errors:
>> -----------------------------------------------------------------------------------------
>> Backtrace:
>> 9 (primitive-load "/home/roland/.guix-home/on-first-login")
>> In ice-9/eval.scm:
>> 721:20 8 (primitive-eval (begin (use-modules (guix i18n)) (# …) …))
>> In ice-9/psyntax.scm:
>> 1230:36 7 (expand-top-sequence ((begin (use-modules (guix …)) …)) …)
>> 1090:25 6 (parse _ (("placeholder" placeholder)) ((top) #(# # …)) …)
>> 1222:19 5 (parse _ (("placeholder" placeholder)) ((top) #(# # …)) …)
>> 259:10 4 (parse _ (("placeholder" placeholder)) (()) _ c&e (eval) …)
>> In ice-9/boot-9.scm:
>> 3927:20 3 (process-use-modules _)
>> 222:17 2 (map1 (((guix i18n))))
>> 3928:31 1 (_ ((guix i18n)))
>> 3329:6 0 (resolve-interface (guix i18n) #:select _ #:hide _ # _ # …)
>>
>> ice-9/boot-9.scm:3329:6: In procedure resolve-interface:
>> no code for module (guix i18n)
>
> It seems that my $HOME/.guix-home/on-first-login assumes that guix's
> guile modules are available to the guile interpreter that is listed in
> the shebang;
>
>> Any idea what might cause such trouble?
>
> If you are not worried about temporarily running some older software,
> could you try and see if running:
>
> --8<---------------cut here---------------start------------->8---
> guix time-machine --commit=2719dfa631 -- home reconfigure your-home-config.scm
> --8<---------------cut here---------------end--------------->8---
>
> works for you? This will get guix to use an older copy of itself to
> build and 'install' your home environment.

I'm also encountering this issue running guix on a foreign distro. Not
sure which commit it stopped working, but it's broken in:

172bd0b5cde2609389fd16d18862b5b612c4b000

works when I use the guix time-machine command above.

-- 
s/Fred[re]+i[ck]+/Fredrik/g


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

* Re: i18n guix module error when opening shell after guix home reconfigure
  2022-01-07 21:38 ` Jelle Licht
  2022-01-17  6:55   ` Fredrik Salomonsson
@ 2022-01-20 23:21   ` Holger Peters
  1 sibling, 0 replies; 8+ messages in thread
From: Holger Peters @ 2022-01-20 23:21 UTC (permalink / raw)
  To: Jelle Licht; +Cc: public, help-guix@gnu.org, Roland Everaert

Hi,

I think this commit is the one introducing the imports which give the error message

https://git.savannah.gnu.org/cgit/guix.git/commit/?id=cde3376b35222f46f8a82e7668a1a6fd42c08754 <https://git.savannah.gnu.org/cgit/guix.git/commit/?id=cde3376b35222f46f8a82e7668a1a6fd42c08754>




> Am 07.01.2022 um 22:38 schrieb Jelle Licht <jlicht@fsfe.org>:
> 
> 2719dfa631


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

* bug#53621: i18n guix module error when opening shell after guix home reconfigure
  2022-01-05 10:00 i18n guix module error when opening shell after guix home reconfigure Roland Everaert via
  2022-01-07 21:38 ` Jelle Licht
@ 2022-01-29 13:19 ` Holger Peters
  2022-02-01 15:32   ` bug#53701: Re : " Roland Everaert via Bug reports for GNU Guix
  1 sibling, 1 reply; 8+ messages in thread
From: Holger Peters @ 2022-01-29 13:19 UTC (permalink / raw)
  To: 53621; +Cc: r.everaert

Hi,

An error message about guix i18n has appeared for a while now when using guix with guix home:

Backtrace:
           9 (primitive-load "/home/holger/.guix-home/on-first-login")
In ice-9/eval.scm:
   721:20  8 (primitive-eval (begin (use-modules (guix i18n)) (# …) …))
In ice-9/psyntax.scm:
  1230:36  7 (expand-top-sequence ((begin (use-modules (guix …)) …)) …)
  1090:25  6 (parse _ (("placeholder" placeholder)) ((top) #(# # …)) …)
  1222:19  5 (parse _ (("placeholder" placeholder)) ((top) #(# # …)) …)
   259:10  4 (parse _ (("placeholder" placeholder)) (()) _ c&e (eval) …)
In ice-9/boot-9.scm:
  3927:20  3 (process-use-modules _)
   222:17  2 (map1 (((guix i18n))))
  3928:31  1 (_ ((guix i18n)))
   3329:6  0 (resolve-interface (guix i18n) #:select _ #:hide _ # _ # …)


The same error message has also appeared on other people’s machines. I think this commit is the one introducing the imports which give the error message: https://git.savannah.gnu.org/cgit/guix.git/commit/?id=cde3376b35222f46f8a82e7668a1a6fd42c08754 



> Anfang der weitergeleiteten Nachricht:
> 
> Von: Roland Everaert via <help-guix@gnu.org>
> Betreff: i18n guix module error when opening shell after guix home reconfigure
> Datum: 5. Januar 2022 um 11:00:38 MEZ
> An: "help-guix@gnu.org" <help-guix@gnu.org>
> Antwort an: Roland Everaert <r.everaert@protonmail.com>
> 
> Hello,
> 
> First, happy new year and best wishes for this year.
> 
> I have updated my guix home configuration to use my zsh config instead of a blank bash configuration.
> 
> Unfortunatelly, when I logout and login again, I face the following errors:
> -----------------------------------------------------------------------------------------
> Backtrace:
> 9 (primitive-load "/home/roland/.guix-home/on-first-login")
> In ice-9/eval.scm:
> 721:20 8 (primitive-eval (begin (use-modules (guix i18n)) (# …) …))
> In ice-9/psyntax.scm:
> 1230:36 7 (expand-top-sequence ((begin (use-modules (guix …)) …)) …)
> 1090:25 6 (parse _ (("placeholder" placeholder)) ((top) #(# # …)) …)
> 1222:19 5 (parse _ (("placeholder" placeholder)) ((top) #(# # …)) …)
> 259:10 4 (parse _ (("placeholder" placeholder)) (()) _ c&e (eval) …)
> In ice-9/boot-9.scm:
> 3927:20 3 (process-use-modules _)
> 222:17 2 (map1 (((guix i18n))))
> 3928:31 1 (_ ((guix i18n)))
> 3329:6 0 (resolve-interface (guix i18n) #:select _ #:hide _ # _ # …)
> 
> ice-9/boot-9.scm:3329:6: In procedure resolve-interface:
> no code for module (guix i18n)
> -----------------------------------------------------------------------------------------
> 
> However, the command guix home reconfigure home-config.scm does not generate any error, so I don't understand why guix complain about a missing module related to internationalization.
> 
> I am using guix, the package manager, on a Fedora 34 distribution.
> 
> Below is my home-config.scm file content:
> 
> -----------------------------------------------------------------------------------------
> (use-modules (gnu home)
> (gnu home services)
> (gnu home services shells)
> (gnu services)
> (gnu packages admin)
> (gnu packages python-xyz)
> (gnu packages password-utils)
> (gnu packages dunst)
> (gnu packages disk)
> (gnu packages backup)
> (gnu packages libreoffice)
> (gnu packages guile)
> (gnu packages xdisorg)
> (gnu packages tls)
> (gnu packages vpn)
> (gnu packages terminals)
> (guix gexp))
> 
> (home-environment
> (packages (list htop glances password-store dunst ranger restic hunspell
> ;; hunspell-dict-fr hunspell-dict-en
> ;; guile
> neofetch xdotool openssl openvpn xscreensaver alacritty))
> (services
> (list
> (service home-zsh-service-type
> (home-zsh-configuration
> (xdg-flavor? #t)
> (zshrc (list (local-file "zshrc"))))))))
> -----------------------------------------------------------------------------------------
> 
> Any idea what might cause such trouble?
> 
> Roland Everaert
> ---
> Use the F.O.S.S., Luke
> 
> Sent with [ProtonMail](https://protonmail.com/) Secure Email.





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

* bug#53701: Re : i18n guix module error when opening shell after guix home reconfigure
  2022-01-29 13:19 ` bug#53621: " Holger Peters
@ 2022-02-01 15:32   ` Roland Everaert via Bug reports for GNU Guix
  2022-02-05  0:01     ` bug#53621: " Ludovic Courtès
  0 siblings, 1 reply; 8+ messages in thread
From: Roland Everaert via Bug reports for GNU Guix @ 2022-02-01 15:32 UTC (permalink / raw)
  To: Holger Peters; +Cc: 53701

Ok, how to revert to the commit before that one, are you aware of any plan for a fix in a not so distant future?

Thanks for delving into the abyss for us ;)

Roland Everaert
---
Use the F.O.S.S., Luke

Sent with ProtonMail Secure Email.

------- Original Message -------

Le samedi 29 janvier 2022 à 14:19, Holger Peters <holger.peters@posteo.de> a écrit :

> Hi,
>
> An error message about guix i18n has appeared for a while now when using guix with guix home:
>
> Backtrace:
>
> 9 (primitive-load "/home/holger/.guix-home/on-first-login")
>
> In ice-9/eval.scm:
>
> 721:20 8 (primitive-eval (begin (use-modules (guix i18n)) (# …) …))
>
> In ice-9/psyntax.scm:
>
> 1230:36 7 (expand-top-sequence ((begin (use-modules (guix …)) …)) …)
>
> 1090:25 6 (parse _ (("placeholder" placeholder)) ((top) #(# # …)) …)
>
> 1222:19 5 (parse _ (("placeholder" placeholder)) ((top) #(# # …)) …)
>
> 259:10 4 (parse _ (("placeholder" placeholder)) (()) _ c&e (eval) …)
>
> In ice-9/boot-9.scm:
>
> 3927:20 3 (process-use-modules )
>
> 222:17 2 (map1 (((guix i18n))))
>
> 3928:31 1 ( ((guix i18n)))
>
> 3329:6 0 (resolve-interface (guix i18n) #:select _ #:hide _ # _ # …)
>
> The same error message has also appeared on other people’s machines. I think this commit is the one introducing the imports which give the error message: https://git.savannah.gnu.org/cgit/guix.git/commit/?id=cde3376b35222f46f8a82e7668a1a6fd42c08754
>
> > Anfang der weitergeleiteten Nachricht:
> >
> > Von: Roland Everaert via help-guix@gnu.org
> >
> > Betreff: i18n guix module error when opening shell after guix home reconfigure
> >
> > Datum: 5. Januar 2022 um 11:00:38 MEZ
> >
> > An: "help-guix@gnu.org" help-guix@gnu.org
> >
> > Antwort an: Roland Everaert r.everaert@protonmail.com
> >
> > Hello,
> >
> > First, happy new year and best wishes for this year.
> >
> > I have updated my guix home configuration to use my zsh config instead of a blank bash configuration.
> >
> > Unfortunatelly, when I logout and login again, I face the following errors:
> > ---------------------------------------------------------------------------
> >
> > Backtrace:
> >
> > 9 (primitive-load "/home/roland/.guix-home/on-first-login")
> >
> > In ice-9/eval.scm:
> >
> > 721:20 8 (primitive-eval (begin (use-modules (guix i18n)) (# …) …))
> >
> > In ice-9/psyntax.scm:
> >
> > 1230:36 7 (expand-top-sequence ((begin (use-modules (guix …)) …)) …)
> >
> > 1090:25 6 (parse _ (("placeholder" placeholder)) ((top) #(# # …)) …)
> >
> > 1222:19 5 (parse _ (("placeholder" placeholder)) ((top) #(# # …)) …)
> >
> > 259:10 4 (parse _ (("placeholder" placeholder)) (()) _ c&e (eval) …)
> >
> > In ice-9/boot-9.scm:
> >
> > 3927:20 3 (process-use-modules )
> >
> > 222:17 2 (map1 (((guix i18n))))
> >
> > 3928:31 1 ( ((guix i18n)))
> >
> > 3329:6 0 (resolve-interface (guix i18n) #:select _ #:hide _ # _ # …)
> >
> > ice-9/boot-9.scm:3329:6: In procedure resolve-interface:
> >
> > no code for module (guix i18n)
> > ----------------------------------------------------------------------------------------
> >
> > However, the command guix home reconfigure home-config.scm does not generate any error, so I don't understand why guix complain about a missing module related to internationalization.
> >
> > I am using guix, the package manager, on a Fedora 34 distribution.
> >
> > Below is my home-config.scm file content:
> >
> > (use-modules (gnu home)
> >
> > (gnu home services)
> >
> > (gnu home services shells)
> >
> > (gnu services)
> >
> > (gnu packages admin)
> >
> > (gnu packages python-xyz)
> >
> > (gnu packages password-utils)
> >
> > (gnu packages dunst)
> >
> > (gnu packages disk)
> >
> > (gnu packages backup)
> >
> > (gnu packages libreoffice)
> >
> > (gnu packages guile)
> >
> > (gnu packages xdisorg)
> >
> > (gnu packages tls)
> >
> > (gnu packages vpn)
> >
> > (gnu packages terminals)
> >
> > (guix gexp))
> >
> > (home-environment
> >
> > (packages (list htop glances password-store dunst ranger restic hunspell
> >
> > ;; hunspell-dict-fr hunspell-dict-en
> >
> > ;; guile
> >
> > neofetch xdotool openssl openvpn xscreensaver alacritty))
> >
> > (services
> >
> > (list
> >
> > (service home-zsh-service-type
> >
> > (home-zsh-configuration
> >
> > (xdg-flavor? #t)
> >
> > (zshrc (list (local-file "zshrc"))))))))
> > ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
> >
> > Any idea what might cause such trouble?
> >
> > Roland Everaert
> > ---------------
> >
> > Use the F.O.S.S., Luke
> >
> > Sent with ProtonMail Secure Email.




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

* bug#53621: i18n guix module error when opening shell after guix home reconfigure
  2022-02-01 15:32   ` bug#53701: Re : " Roland Everaert via Bug reports for GNU Guix
@ 2022-02-05  0:01     ` Ludovic Courtès
  2022-02-08 15:00       ` bug#53701: Re : " Roland Everaert via Bug reports for GNU Guix
  0 siblings, 1 reply; 8+ messages in thread
From: Ludovic Courtès @ 2022-02-05  0:01 UTC (permalink / raw)
  To: Roland Everaert; +Cc: 53621-done, Holger Peters, 53701-done

Hi,

Fixed in 41efa45508b292d947371dd6b9df943c33727c3d, thanks!

Ludo’.




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

* bug#53701: Re : Re: bug#53621: i18n guix module error when opening shell after guix home reconfigure
  2022-02-05  0:01     ` bug#53621: " Ludovic Courtès
@ 2022-02-08 15:00       ` Roland Everaert via Bug reports for GNU Guix
  0 siblings, 0 replies; 8+ messages in thread
From: Roland Everaert via Bug reports for GNU Guix @ 2022-02-08 15:00 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 53621-done, Holger Peters, 53701-done

Hello,

I performed an update today and I can confirm that the reported error has disappeared.

Thank you for the follow-up and fix.


Regards,

Roland Everaert
---
Use the F.O.S.S., Luke

Sent with ProtonMail Secure Email.

------- Original Message -------

Le samedi 5 février 2022 à 01:01, Ludovic Courtès <ludo@gnu.org> a écrit :

> Hi,
>
> Fixed in 41efa45508b292d947371dd6b9df943c33727c3d, thanks!
>
> Ludo’.




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

end of thread, other threads:[~2022-02-08 15:54 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-05 10:00 i18n guix module error when opening shell after guix home reconfigure Roland Everaert via
2022-01-07 21:38 ` Jelle Licht
2022-01-17  6:55   ` Fredrik Salomonsson
2022-01-20 23:21   ` Holger Peters
2022-01-29 13:19 ` bug#53621: " Holger Peters
2022-02-01 15:32   ` bug#53701: Re : " Roland Everaert via Bug reports for GNU Guix
2022-02-05  0:01     ` bug#53621: " Ludovic Courtès
2022-02-08 15:00       ` bug#53701: Re : " Roland Everaert via Bug reports for GNU Guix

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.