unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#33647: First `guix pull' behaves unexpectedly
@ 2018-12-06 14:56 Diego Nicola Barbato
  2018-12-06 15:42 ` Ricardo Wurmus
  0 siblings, 1 reply; 14+ messages in thread
From: Diego Nicola Barbato @ 2018-12-06 14:56 UTC (permalink / raw)
  To: 33647

Hello Guix,

The first time a user runs ‘guix pull’ after a fresh install it does not
seem to update guix.  ‘guix --version’ reports that guix is still
version 0.15.0 after running ‘guix pull’, instead of showing the hash of
the latest commit.
This can be mitigated by logging out and back in, after which
‘guix --version’ returns the expected version.

Greetings

Diego

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

* bug#33647: First `guix pull' behaves unexpectedly
  2018-12-06 14:56 bug#33647: First `guix pull' behaves unexpectedly Diego Nicola Barbato
@ 2018-12-06 15:42 ` Ricardo Wurmus
  2018-12-06 17:03   ` Diego Nicola Barbato
  2018-12-06 23:06   ` Ludovic Courtès
  0 siblings, 2 replies; 14+ messages in thread
From: Ricardo Wurmus @ 2018-12-06 15:42 UTC (permalink / raw)
  To: Diego Nicola Barbato; +Cc: 33647


Hi Diego,

> Hello Guix,
>
> The first time a user runs ‘guix pull’ after a fresh install it does not
> seem to update guix.  ‘guix --version’ reports that guix is still
> version 0.15.0 after running ‘guix pull’, instead of showing the hash of
> the latest commit.

“guix pull” should have reminded you to add ~/.config/guix/current/bin
to the front of your PATH environment variable.  When you do that you
will be using the new version of Guix.

-- 
Ricardo

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

* bug#33647: First `guix pull' behaves unexpectedly
  2018-12-06 15:42 ` Ricardo Wurmus
@ 2018-12-06 17:03   ` Diego Nicola Barbato
  2018-12-06 23:06   ` Ludovic Courtès
  1 sibling, 0 replies; 14+ messages in thread
From: Diego Nicola Barbato @ 2018-12-06 17:03 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: 33647

Hello Ricardo,

Thank you for the prompt reply.

Ricardo Wurmus <rekado@elephly.net> writes:

> Hi Diego,
>
>> Hello Guix,
>>
>> The first time a user runs ‘guix pull’ after a fresh install it does not
>> seem to update guix.  ‘guix --version’ reports that guix is still
>> version 0.15.0 after running ‘guix pull’, instead of showing the hash of
>> the latest commit.
>
> “guix pull” should have reminded you to add ~/.config/guix/current/bin
> to the front of your PATH environment variable.

I just checked the output and there was nothing after
“1 package in profile”, which is where the
“The following environment variable definitions may be needed:” lines
are usually printed.  If ‘guix pull’ is indeed supposed to print a
reminder this is probably the bug.

Greetings

Diego

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

* bug#33647: First `guix pull' behaves unexpectedly
  2018-12-06 15:42 ` Ricardo Wurmus
  2018-12-06 17:03   ` Diego Nicola Barbato
@ 2018-12-06 23:06   ` Ludovic Courtès
  2018-12-07  8:36     ` Diego Nicola Barbato
  1 sibling, 1 reply; 14+ messages in thread
From: Ludovic Courtès @ 2018-12-06 23:06 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: 33647, Diego Nicola Barbato

Hello,

Ricardo Wurmus <rekado@elephly.net> skribis:

>> Hello Guix,
>>
>> The first time a user runs ‘guix pull’ after a fresh install it does not
>> seem to update guix.  ‘guix --version’ reports that guix is still
>> version 0.15.0 after running ‘guix pull’, instead of showing the hash of
>> the latest commit.
>
> “guix pull” should have reminded you to add ~/.config/guix/current/bin
> to the front of your PATH environment variable.  When you do that you
> will be using the new version of Guix.

In addition, be aware that Bash maintains a cache of commands it looked
up in $PATH.  Thus it may be that, say, it had cached that ‘guix’ is
really /run/current-system/profile/bin/guix.  When you pulled, it didn’t
invalidate its cache thus you kept using that old version.

The solution is to run “hash guix” at the Bash prompt to force cache
invalidation (info "(bash) Bourne Shell Builtins").

HTH!

Ludo’.

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

* bug#33647: First `guix pull' behaves unexpectedly
  2018-12-06 23:06   ` Ludovic Courtès
@ 2018-12-07  8:36     ` Diego Nicola Barbato
  2018-12-07  9:41       ` Björn Höfling
  2018-12-07 13:30       ` Ludovic Courtès
  0 siblings, 2 replies; 14+ messages in thread
From: Diego Nicola Barbato @ 2018-12-07  8:36 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 33647

Hello,

Ludovic Courtès <ludo@gnu.org> writes:

> Hello,
>
> Ricardo Wurmus <rekado@elephly.net> skribis:
>
>>> Hello Guix,
>>>
>>> The first time a user runs ‘guix pull’ after a fresh install it does not
>>> seem to update guix.  ‘guix --version’ reports that guix is still
>>> version 0.15.0 after running ‘guix pull’, instead of showing the hash of
>>> the latest commit.
>>
>> “guix pull” should have reminded you to add ~/.config/guix/current/bin
>> to the front of your PATH environment variable.  When you do that you
>> will be using the new version of Guix.

I forgot to mention that this is on GuixSD, where
~/.config/guix/currend/bin is already in PATH, which maybe explains why
I did not get a reminder.

> In addition, be aware that Bash maintains a cache of commands it looked
> up in $PATH.  Thus it may be that, say, it had cached that ‘guix’ is
> really /run/current-system/profile/bin/guix.  When you pulled, it didn’t
> invalidate its cache thus you kept using that old version.
>
> The solution is to run “hash guix” at the Bash prompt to force cache
> invalidation (info "(bash) Bourne Shell Builtins").

I believe this is it.  This also explains why ‘which guix’ returned the
updated guix while ‘guix --version’ claimed it was still the older
version, which I found rather confusing.
I am afraid being unaware of this has led me to inadvertently downgrade
GuixSD whenever I reconfigured for the first time after a fresh install.

Thanks!

Diego

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

* bug#33647: First `guix pull' behaves unexpectedly
  2018-12-07  8:36     ` Diego Nicola Barbato
@ 2018-12-07  9:41       ` Björn Höfling
  2018-12-07 13:30       ` Ludovic Courtès
  1 sibling, 0 replies; 14+ messages in thread
From: Björn Höfling @ 2018-12-07  9:41 UTC (permalink / raw)
  To: Diego Nicola Barbato; +Cc: 33647-done

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

On Fri, 07 Dec 2018 09:36:31 +0100
Diego Nicola Barbato <dnbarbato@posteo.de> wrote:

> I believe this is it.  This also explains why ‘which guix’ returned
> the updated guix while ‘guix --version’ claimed it was still the older
> version, which I found rather confusing.
> I am afraid being unaware of this has led me to inadvertently
> downgrade GuixSD whenever I reconfigured for the first time after a
> fresh install.

OK, then I'm closing this issue.

Björn

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

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

* bug#33647: First `guix pull' behaves unexpectedly
  2018-12-07  8:36     ` Diego Nicola Barbato
  2018-12-07  9:41       ` Björn Höfling
@ 2018-12-07 13:30       ` Ludovic Courtès
  2018-12-19 12:49         ` Diego Nicola Barbato
  1 sibling, 1 reply; 14+ messages in thread
From: Ludovic Courtès @ 2018-12-07 13:30 UTC (permalink / raw)
  To: Diego Nicola Barbato; +Cc: 33647

Hi,

Diego Nicola Barbato <dnbarbato@posteo.de> skribis:

> Ludovic Courtès <ludo@gnu.org> writes:

[...]

>> In addition, be aware that Bash maintains a cache of commands it looked
>> up in $PATH.  Thus it may be that, say, it had cached that ‘guix’ is
>> really /run/current-system/profile/bin/guix.  When you pulled, it didn’t
>> invalidate its cache thus you kept using that old version.
>>
>> The solution is to run “hash guix” at the Bash prompt to force cache
>> invalidation (info "(bash) Bourne Shell Builtins").
>
> I believe this is it.  This also explains why ‘which guix’ returned the
> updated guix while ‘guix --version’ claimed it was still the older
> version, which I found rather confusing.
> I am afraid being unaware of this has led me to inadvertently downgrade
> GuixSD whenever I reconfigured for the first time after a fresh install.

Yeah.  This is not strictly speaking a Guix bug, but clearly it’s a
common pitfall.  Perhaps we should print a hint upon completion?

Ludo’.

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

* bug#33647: First `guix pull' behaves unexpectedly
  2018-12-07 13:30       ` Ludovic Courtès
@ 2018-12-19 12:49         ` Diego Nicola Barbato
  2018-12-19 17:37           ` swedebugia
  2019-01-18 16:54           ` Ludovic Courtès
  0 siblings, 2 replies; 14+ messages in thread
From: Diego Nicola Barbato @ 2018-12-19 12:49 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 33647

Hello,

Ludovic Courtès <ludo@gnu.org> writes:

> Diego Nicola Barbato <dnbarbato@posteo.de> skribis:
>
>> Ludovic Courtès <ludo@gnu.org> writes:
>
> [...]
>
>>> In addition, be aware that Bash maintains a cache of commands it looked
>>> up in $PATH.  Thus it may be that, say, it had cached that ‘guix’ is
>>> really /run/current-system/profile/bin/guix.  When you pulled, it didn’t
>>> invalidate its cache thus you kept using that old version.
>>>
>>> The solution is to run “hash guix” at the Bash prompt to force cache
>>> invalidation (info "(bash) Bourne Shell Builtins").
>>
>> I believe this is it.  This also explains why ‘which guix’ returned the
>> updated guix while ‘guix --version’ claimed it was still the older
>> version, which I found rather confusing.
>> I am afraid being unaware of this has led me to inadvertently downgrade
>> GuixSD whenever I reconfigured for the first time after a fresh install.
>
> Yeah.  This is not strictly speaking a Guix bug, but clearly it’s a
> common pitfall.  Perhaps we should print a hint upon completion?

While I think it would be nice for Guix (or strictly speaking Bash) to
just do what a noob like me would expect it to do in this situation, a
hint would have certainly saved me some trouble.  If it is unreasonably
cumbersome to make Guix tell Bash to invalidate its cache upon
completion of ‘guix pull’, I believe a hint would be good enough.

Greetings,

Diego

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

* bug#33647: First `guix pull' behaves unexpectedly
  2018-12-19 12:49         ` Diego Nicola Barbato
@ 2018-12-19 17:37           ` swedebugia
  2018-12-19 19:27             ` Tobias Geerinckx-Rice
  2019-01-18 16:54           ` Ludovic Courtès
  1 sibling, 1 reply; 14+ messages in thread
From: swedebugia @ 2018-12-19 17:37 UTC (permalink / raw)
  To: 33647

On 2018-12-19 13:49, Diego Nicola Barbato wrote:
> Hello,
> 
> Ludovic Courtès <ludo@gnu.org> writes:
> 
>> Diego Nicola Barbato <dnbarbato@posteo.de> skribis:
>>
>>> Ludovic Courtès <ludo@gnu.org> writes:
>>
>> [...]
>>
>>>> In addition, be aware that Bash maintains a cache of commands it looked
>>>> up in $PATH.  Thus it may be that, say, it had cached that ‘guix’ is
>>>> really /run/current-system/profile/bin/guix.  When you pulled, it didn’t
>>>> invalidate its cache thus you kept using that old version.
>>>>
>>>> The solution is to run “hash guix” at the Bash prompt to force cache
>>>> invalidation (info "(bash) Bourne Shell Builtins").
>>>
>>> I believe this is it.  This also explains why ‘which guix’ returned the
>>> updated guix while ‘guix --version’ claimed it was still the older
>>> version, which I found rather confusing.
>>> I am afraid being unaware of this has led me to inadvertently downgrade
>>> GuixSD whenever I reconfigured for the first time after a fresh install.
>>
>> Yeah.  This is not strictly speaking a Guix bug, but clearly it’s a
>> common pitfall.  Perhaps we should print a hint upon completion?
> 
> While I think it would be nice for Guix (or strictly speaking Bash) to
> just do what a noob like me would expect it to do in this situation, a
> hint would have certainly saved me some trouble.  If it is unreasonably
> cumbersome to make Guix tell Bash to invalidate its cache upon
> completion of ‘guix pull’, I believe a hint would be good enough.

I wholeheartedly agree with Diego.

Either we fix it (preferably, even if we have to patch bash in order to 
archive what we want) or we tell the users what to do (this is bad 
because we already tell the users a lot of env variables and this just 
adds clutter and one more cumbersome thing to remember).

FWW I just ran "hash pacman" on parabola and the result was this:
egil@parabola:~$ time hash pacman

real	0m0,000s
user	0m0,000s
sys	0m0,000s

So it won't and any measuable overhead to just call this in the end of 
guix package after updating the symlinks to the new profile generation.

-- 
Cheers Swedebugia

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

* bug#33647: First `guix pull' behaves unexpectedly
  2018-12-19 17:37           ` swedebugia
@ 2018-12-19 19:27             ` Tobias Geerinckx-Rice
  2018-12-20  5:24               ` swedebugia
  0 siblings, 1 reply; 14+ messages in thread
From: Tobias Geerinckx-Rice @ 2018-12-19 19:27 UTC (permalink / raw)
  To: swedebugia; +Cc: 33647

swedebugia wrote:
> egil@parabola:~$ time hash pacman
>
> real	0m0,000s
> user	0m0,000s
> sys	0m0,000s
>
> So it won't and any measuable overhead to just call this in the 
> end of
> guix package after updating the symlinks to the new profile
> generation.

Do you mean to put something like

  guix() {
    command "$1" "$@"
    hash "$1"
  }

in the default /etc/profile (or wherever such things belong)?

I think this is far too intrusive and magical to do by default, 
considering its limited one-time-only usefulness.  The same goes 
for patching shells.

Kind regards,

T G-R

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

* bug#33647: First `guix pull' behaves unexpectedly
  2018-12-19 19:27             ` Tobias Geerinckx-Rice
@ 2018-12-20  5:24               ` swedebugia
  0 siblings, 0 replies; 14+ messages in thread
From: swedebugia @ 2018-12-20  5:24 UTC (permalink / raw)
  To: Tobias Geerinckx-Rice; +Cc: 33647

On 2018-12-19 20:27, Tobias Geerinckx-Rice wrote:
> swedebugia wrote:
>> egil@parabola:~$ time hash pacman
>>
>> real    0m0,000s
>> user    0m0,000s
>> sys    0m0,000s
>>
>> So it won't and any measuable overhead to just call this in the end of
>> guix package after updating the symlinks to the new profile
>> generation.
> 
> Do you mean to put something like
> 
>   guix() {
>     command "$1" "$@"
>     hash "$1"
>   }
> 
> in the default /etc/profile (or wherever such things belong)?
> 
> I think this is far too intrusive and magical to do by default, 
> considering its limited one-time-only usefulness.  The same goes for 
> patching shells.

That sounds like it could work even though it look like an ugly hack. :)

-- 
Cheers Swedebugia

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

* bug#33647: First `guix pull' behaves unexpectedly
  2018-12-19 12:49         ` Diego Nicola Barbato
  2018-12-19 17:37           ` swedebugia
@ 2019-01-18 16:54           ` Ludovic Courtès
  2019-01-22 22:07             ` Diego Nicola Barbato
  1 sibling, 1 reply; 14+ messages in thread
From: Ludovic Courtès @ 2019-01-18 16:54 UTC (permalink / raw)
  To: Diego Nicola Barbato; +Cc: 33647-done

Hi Diego,

Diego Nicola Barbato <dnbarbato@posteo.de> skribis:

> Ludovic Courtès <ludo@gnu.org> writes:
>
>> Diego Nicola Barbato <dnbarbato@posteo.de> skribis:
>>
>>> Ludovic Courtès <ludo@gnu.org> writes:
>>
>> [...]
>>
>>>> In addition, be aware that Bash maintains a cache of commands it looked
>>>> up in $PATH.  Thus it may be that, say, it had cached that ‘guix’ is
>>>> really /run/current-system/profile/bin/guix.  When you pulled, it didn’t
>>>> invalidate its cache thus you kept using that old version.
>>>>
>>>> The solution is to run “hash guix” at the Bash prompt to force cache
>>>> invalidation (info "(bash) Bourne Shell Builtins").
>>>
>>> I believe this is it.  This also explains why ‘which guix’ returned the
>>> updated guix while ‘guix --version’ claimed it was still the older
>>> version, which I found rather confusing.
>>> I am afraid being unaware of this has led me to inadvertently downgrade
>>> GuixSD whenever I reconfigured for the first time after a fresh install.
>>
>> Yeah.  This is not strictly speaking a Guix bug, but clearly it’s a
>> common pitfall.  Perhaps we should print a hint upon completion?
>
> While I think it would be nice for Guix (or strictly speaking Bash) to
> just do what a noob like me would expect it to do in this situation, a
> hint would have certainly saved me some trouble.  If it is unreasonably
> cumbersome to make Guix tell Bash to invalidate its cache upon
> completion of ‘guix pull’, I believe a hint would be good enough.

Thanks for the heads-up.  Commit
3bbd6919bd84b76686d1aa626ba861faf3fc8ceb changes ‘guix pull’ to display
a hint in this case.

Ludo’.

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

* bug#33647: First `guix pull' behaves unexpectedly
  2019-01-18 16:54           ` Ludovic Courtès
@ 2019-01-22 22:07             ` Diego Nicola Barbato
  2019-01-23  9:51               ` Ludovic Courtès
  0 siblings, 1 reply; 14+ messages in thread
From: Diego Nicola Barbato @ 2019-01-22 22:07 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 33647

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

Hello Ludo,

Sorry to bother you with this again.

Ludovic Courtès <ludo@gnu.org> writes:


[...]


>
> Thanks for the heads-up.  Commit
> 3bbd6919bd84b76686d1aa626ba861faf3fc8ceb changes ‘guix pull’ to display
> a hint in this case.
>
> Ludo’.

I just tried to check if this worked.  I installed GuixSD in a VM (with
the 0.16.0 installer), rebooted, and ran ‘guix pull’
(commit d1dfcc7c1b38d816dddc2868917ba490db7e7c3b).  It did not print any
hint (I have attached the bash session).
Will this change only take effect once the installer is updated?

Regards,

Diego


[-- Attachment #2: Bash session --]
[-- Type: application/octet-stream, Size: 35223 bytes --]

bob@antelope ~$ which guix
/run/current-system/profile/bin/guix
bob@antelope ~$ guix --version
guix (GNU Guix) 0.16.0
Copyright (C) 2018 the Guix authors
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
bob@antelope ~$ guix pull
Migrating profile generations to '/var/guix/profiles/per-user/bob'...
Updating channel 'guix' from Git repository at 'https://git.savannah.gnu.org/git/guix.git'...
Building from this channel:
  guix      https://git.savannah.gnu.org/git/guix.git   d1dfcc7
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
10.5 MB will be downloaded:
   /gnu/store/qxaw7hp87n0scjk8waj225lbnj4vlsr8-compute-guix-derivation
   /gnu/store/hz7n96fmmw97ncdnv6hcqfnvaf6n8gyk-module-import-compiled
   /gnu/store/kq4a2gyz06vywrg94w6006rpcrkly4rv-module-import
   /gnu/store/r658y3cgpnf99nxjxqgjiaizx20ac4k0-guile-2.2.4
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substituting /gnu/store/84h05fiji9kxv9h6a3l8xdmbd9b13fyj-config.scm...
downloading from https://ci.guix.info/nar/gzip/84h05fiji9kxv9h6a3l8xdmbd9b13fyj-config.scm...
 config.scm  503B                          19KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/7aw8rli88rhhvgfga9j6bv4fg70aq498-git.scm...
downloading from https://ci.guix.info/nar/gzip/7aw8rli88rhhvgfga9j6bv4fg70aq498-git.scm...
 git.scm  101B                              4KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/wsq5x6sizjq8ggyfydccv1hcsciy40wi-gmp-6.1.2...
downloading from https://ci.guix.info/nar/gzip/wsq5x6sizjq8ggyfydccv1hcsciy40wi-gmp-6.1.2...
 gmp-6.1.2  873KiB                        1.6MiB/s 00:01 [##################] 100.0%

substituting /gnu/store/qc2q3yfm6z282igf4nh5hl2pv18jscrk-hash.scm...
downloading from https://ci.guix.info/nar/gzip/qc2q3yfm6z282igf4nh5hl2pv18jscrk-hash.scm...
 hash.scm  132B                             4KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/4jh61hq9b4pv1bjqimafcv2w1c20cqrc-libatomic-ops-7.6.6...
downloading from https://ci.guix.info/nar/gzip/4jh61hq9b4pv1bjqimafcv2w1c20cqrc-libatomic-ops-7.6.6...
 libatomic-ops-7.6.6  90KiB               1.0MiB/s 00:00 [##################] 100.0%

substituting /gnu/store/b7pbksdw7f1x4faimd2xmgpcipsrp9ns-libffi-3.2.1...
downloading from https://ci.guix.info/nar/gzip/b7pbksdw7f1x4faimd2xmgpcipsrp9ns-libffi-3.2.1...
 libffi-3.2.1  59KiB                      1.6MiB/s 00:00 [##################] 100.0%

substituting /gnu/store/0h9x3hqqh4fx52735a7mykqm7mdkqnf4-libgc-7.6.6...
downloading from https://ci.guix.info/nar/gzip/0h9x3hqqh4fx52735a7mykqm7mdkqnf4-libgc-7.6.6...
 libgc-7.6.6  398KiB                      1.2MiB/s 00:00 [##################] 100.0%

substituting /gnu/store/w967m83560ik61vqv0v8aw3b0avb0hng-libltdl-2.4.6...
downloading from https://ci.guix.info/nar/gzip/w967m83560ik61vqv0v8aw3b0avb0hng-libltdl-2.4.6...
 libltdl-2.4.6  52KiB                     1.3MiB/s 00:00 [##################] 100.0%

substituting /gnu/store/g3az3q22hmlqwwzqjv4vqfrhcfl88a2s-libunistring-0.9.10...
downloading from https://ci.guix.info/nar/gzip/g3az3q22hmlqwwzqjv4vqfrhcfl88a2s-libunistring-0.9.10...
 libunistring-0.9.10  791KiB              1.3MiB/s 00:01 [##################] 100.0%

substituting /gnu/store/kq4a2gyz06vywrg94w6006rpcrkly4rv-module-import...
downloading from https://ci.guix.info/nar/gzip/kq4a2gyz06vywrg94w6006rpcrkly4rv-module-import...
 module-import  2KiB                       52KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/y249ycgfvg0p83hwpwf5nbn1aghjcc9n-pkg-config-0.29.2...
downloading from https://ci.guix.info/nar/gzip/y249ycgfvg0p83hwpwf5nbn1aghjcc9n-pkg-config-0.29.2...
 pkg-config-0.29.2  500KiB                1.0MiB/s 00:00 [##################] 100.0%

substituting /gnu/store/hz7n96fmmw97ncdnv6hcqfnvaf6n8gyk-module-import-compiled...
downloading from https://ci.guix.info/nar/gzip/hz7n96fmmw97ncdnv6hcqfnvaf6n8gyk-module-import-compiled...
 module-import-compiled  1.7MiB           1.4MiB/s 00:01 [##################] 100.0%

substituting /gnu/store/r658y3cgpnf99nxjxqgjiaizx20ac4k0-guile-2.2.4...
downloading from https://ci.guix.info/nar/gzip/r658y3cgpnf99nxjxqgjiaizx20ac4k0-guile-2.2.4...
 guile-2.2.4  8.3MiB                      2.5MiB/s 00:03 [##################] 100.0%

substituting /gnu/store/qxaw7hp87n0scjk8waj225lbnj4vlsr8-compute-guix-derivation...
downloading from https://ci.guix.info/nar/gzip/qxaw7hp87n0scjk8waj225lbnj4vlsr8-compute-guix-derivation...
 compute-guix-derivation  836B             24KiB/s 00:00 [##################] 100.0%

substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%

The following derivations will be built:
   /gnu/store/1sn9fj5wqzdf4wnnhgmqf65wwb18r4qg-profile.drv
   /gnu/store/x9nk3ww0ggk38j9mvyyh379zahgvqb5n-ca-certificate-bundle.drv
   /gnu/store/qxsm0snwnkdq1yzkrmlcmaklnc9vrab2-info-dir.drv
   /gnu/store/2czil76yzj53qv7pppw0q2srwh0z5ips-mkfontdir-1.0.7.tar.bz2.drv
   /gnu/store/5da4kfwxxpzi3pzndjafarb7hva6xah3-mkfontscale-1.1.3.tar.bz2.drv
   /gnu/store/1vsggny36dfc5shp360phmvv08pagv7l-mkfontscale-1.1.3.drv
   /gnu/store/865f1dl2sg6y75kdkf8njl2bzs74bbby-module-import-compiled.drv
   /gnu/store/d6xh41b33qcbm52p58ihmciv0h9iimkx-mkfontdir-1.0.7.drv
   /gnu/store/m7fz8riw1zikbqmaqrfqgq2lmfpprv9i-fonts-dir.drv
   /gnu/store/bkz1zmwflrldivkdp65h5zswdg6qpzy4-git-2.19.2.tar.xz.drv
   /gnu/store/nxkgw731d9f0zv6rmr39gh5gjmi3w4y4-git-minimal-2.19.2.drv
   /gnu/store/ac3gh64jks5dprdgdkwkmp23zrjrrqa8-module-import.drv
   /gnu/store/f53qbl4ljcnwidq08a7k4sng44m0bsa4-module-import-compiled.drv
   /gnu/store/xd5gl7qsnwhmdd9b2f2jr6f8jb0mhhi3-guile-gdbm-ffi-20120209.fa1d5b6-checkout.drv
   /gnu/store/7cmqrjbxbz1adcs56kj5lx8bl8kvwsbd-module-import.drv
   /gnu/store/7npvgdk0ip3yfvb14ras6wsxlhvkkkm6-module-import-compiled.drv
   /gnu/store/pmnj3axdrsmf4sm6gv5wj3gblhnjdbmj-guile-gdbm-ffi-20120209.tar.xz.drv
   /gnu/store/7n96zy99b5fjja3qawgmqr64gismnwcf-guile-gdbm-ffi-20120209.fa1d5b6.drv
   /gnu/store/nc847qyffb81jb6n99nwqnz92xqbza08-module-import.drv
   /gnu/store/sdazqb6b9xhp5clgpdpsadqr1m3vfrig-module-import-compiled.drv
   /gnu/store/n1429lmn9sg7nxj3vv2npaipv0d7b03y-guix-cli.drv
   /gnu/store/f3fkpiq3yjx6lkfgkn22ssnrqbjkj8v1-guix-system-tests.drv
   /gnu/store/zbbyz6jrh4bd0wlyb2x5wyx58b96v9hm-config.scm.drv
   /gnu/store/afavivi6sggnja3x2r0375f54lq5vhvm-guix-extra.drv
   /gnu/store/d3gabiv6nf9gfqcw3hh3mqmrkyar6zz9-guix-packages.drv
   /gnu/store/jqfja5c01634hp3ch44ss7w6qf4cslkk-guix-packages-base.drv
   /gnu/store/pdjz20s0hjm0gqcjaqijzrm64ca7zliy-guix-core-source.drv
   /gnu/store/rxx273f09jcxk72rjgl990k8191di0jw-guix-core.drv
   /gnu/store/v1k0i7rra09gydky86pg2mb6mv1qns75-guix-system.drv
   /gnu/store/f853fswvsvc5z2nbq561cazqlrbfg7vb-module-import-compiled.drv
   /gnu/store/ry9v3ggm7w4f8yg8vdgag70mzzvhr7sb-xz-5.2.4.tar.gz.drv
   /gnu/store/n916hx1hb2b19fypa34q6874kfs3h63z-xz-5.2.4.drv
   /gnu/store/5vq2q62z5fwlcs4f548gy3256iq25vfh-config.scm.drv
   /gnu/store/7f1jg22yqzqk12p93ra4nbkkgvy52g60-guix-config-source.drv
   /gnu/store/wi6mmivyiaiiayqj9xl7zgid2bm15knp-guix-config.drv
   /gnu/store/15640wnlq2rqxr5kc8gxd7hsm5q1ywlf-guix-config-modules.drv
   /gnu/store/3015hc50fj59n8my0633z4wqpzkng3qp-guix-system-modules.drv
   /gnu/store/40mnx92pcrky8yhi1a1fyanzjhq59942-guix-extra-modules.drv
   /gnu/store/da3830b49685zy4s1gb5vhjavakb96rg-guix-core-modules.drv
   /gnu/store/f6hcwj60fj31mbnxrg0pnx5li1h2gh0v-guix-system-tests-modules.drv
   /gnu/store/gwwss2vga79vqwhqsrn5kvw0b2jzj28v-guix-packages-modules.drv
   /gnu/store/n0nwcjzzx0jbn1dzml2mq8lwxql7bkry-guix-cli-modules.drv
   /gnu/store/zh481ha8vvi0wbgbl89yvs0yczm0jnkv-guix-packages-base-modules.drv
   /gnu/store/w1xf59jz2d0gnzv9yf2gf5hf6n3wa420-guix-0.16.0-8.7ba2b27-checkout.drv
   /gnu/store/syhkl5dmjv0d4yinn7fg0lk5fxh6w974-guix-daemon-0.16.0-8.7ba2b27.drv
   /gnu/store/h5rz67i3x2fark8rjl0zaii8d7g1vlh9-guile-ssh-0.11.3.tar.gz.drv
   /gnu/store/2aljdc6w2m4pi871gir2iqqsc43wj09c-libssh-0.8.6-checkout.drv
   /gnu/store/kfm8rwvgyxdrxsqsfg26sfixmqripvmx-libssh-0.8.6.drv
   /gnu/store/qdnk79vwayjkn5bg0lkr594v125c4s8h-guile-ssh-0.11.3.tar.xz.drv
   /gnu/store/hj2cqh9yiiqv1nqwa1panpsa7ij1f7h9-texinfo-6.5.tar.xz.drv
   /gnu/store/kd39hq3f0bpwbjjlcwwszqx73j1w89g7-texinfo-6.5.tar.xz.drv
   /gnu/store/kgssam62cmpp8f3akhw4rz4jvblvwzv5-automake-1.16.1.tar.xz.drv
   /gnu/store/6flbjfff9cr6lhkmmw99rlsvvnfpvqax-automake-1.16.1.tar.xz.drv
   /gnu/store/xifq3f33cp043hxd49blbfiq714mb8nb-Python-3.7.0.tar.xz.drv
   /gnu/store/p146dgwypj346v0gxkk4611vy322w80x-Python-3.7.0.tar.xz.drv
   /gnu/store/p30kxkxn9v88fhbi3igacqypg02kjiby-cmake-3.12.2.tar.gz.drv
   /gnu/store/7v5gjdaip07h21cz7hg37hcqka93i09j-rhash-1.3.6.tar.gz.drv
   /gnu/store/wm2fba6dli2nxirn2pdxwdz8hz40ybdv-autoconf-2.69.tar.xz.drv
   /gnu/store/n46imfn8iry57v5fl9qpbkjsjywmw878-libtool-2.4.6.tar.xz.drv
   /gnu/store/jryryndvwrr5v5scr3wi7c3j8mp1iiv0-libtool-2.4.6.tar.xz.drv
   /gnu/store/flkb725a8w0lvnyaaqs3ssvgq55cwvl1-libtool-2.4.6.drv
   /gnu/store/hqgl3vi175zmmmdy69vglkclnyj71hfb-libuv-v1.23.0.tar.gz.drv
   /gnu/store/s61ac8kiw8k42mf8n5liiq60n5aj807a-autoconf-wrapper-2.69.drv
   /gnu/store/40gl1386d0aj7yi3rb0insqwa9cnxnh3-libuv-1.23.0.drv
   /gnu/store/9lqprdi54h8f7yp5jyfjrc49xf3v8cdq-rhash-1.3.6.drv
   /gnu/store/9piay4gh4ndrhrmw4vsal135hjhia8pp-file-5.33.drv
   /gnu/store/c3fds53n71gf2icqrw1h426rgqrg9cc6-cmake-3.12.2.tar.xz.drv
   /gnu/store/0vjiclwgkgmdl86kkz2w5fnf2qqkijnk-libgit2-0.27.7.tar.gz.drv
   /gnu/store/mwdhcpn0wjwfkcypv2gygmg8b2dl1jrc-config.scm.drv
   /gnu/store/6j6p78qvhlqdfj9b6dipsypdshk7lc3x-tar-1.30.tar.xz.drv
   /gnu/store/r5qalqqr2bhm52qiiqz15wraglm6jlrw-tar-1.30.tar.xz.drv
   /gnu/store/zsv2aapgd4s903xv7n23f7q5kwlgc43y-git-2.20.1.tar.xz.drv
   /gnu/store/nq9a7ibg97j5g3jl5iswii7ina1gvfs2-tk8.6.8-src.tar.gz.drv
   /gnu/store/n3lbvxq5dk88flsr6a7rp2mrql4zlw5v-tk8.6.8-src.tar.xz.drv
   /gnu/store/zmcp0q34c4gznaj2gdarljcakc1j3q5r-bzip2-1.0.6.tar.gz.drv
   /gnu/store/3q2an90ivnb2p9a95pxf0hliaxkfkcqk-tcl8.6.8-src.tar.gz.drv
   /gnu/store/jv9h45cpyic2dsmbdz1gvy4qndg6xf4j-libpthread-stubs-0.4.tar.bz2.drv
   /gnu/store/m7wznzi150l1xmzd4q3spakjfd45bgvf-xorgproto-2018.4.tar.bz2.drv
   /gnu/store/54vrbwjqlc24z7ppw54y9ly0sczm5bkx-Python-2.7.15.tar.xz.drv
   /gnu/store/vm171sqh8872sa5d3w09bbf4dgzbciqs-util-macros-1.19.2.tar.bz2.drv
   /gnu/store/3fhgy83diq5gb1cd26pysy4v2a1xcrj6-util-macros-1.19.2.drv
   /gnu/store/3in32j5icr2qmx7rzparqqwjnxp410li-Python-2.7.15.tar.xz.drv
   /gnu/store/7s8mbaw3qrwldilcjm2ixw3ziacsjbb0-xorgproto-2018.4.drv
   /gnu/store/d5mzkzz7n1q9g71x8qzk30x698dhvgvp-libpthread-stubs-0.4.drv
   /gnu/store/dam9vx59xa6vvyzv60d9iv7vkm4nrcrn-tcl-8.6.8.drv
   /gnu/store/g6hiaarba14arm7b8d8b824fdmrnsn6s-bzip2-1.0.6.drv
   /gnu/store/ikvkgar6yscbrg0n1nhiri305xk9qq48-tk-8.6.8.drv
   /gnu/store/7lxnp65qpljj12mp78drla2lgbp5gmfw-indent-2.2.10.tar.gz.drv
   /gnu/store/70a855frbg8zwa86ns9r6vyxp096zzll-help2man-1.47.6.tar.xz.drv
   /gnu/store/43q7981i8jj6p1gl05pv0a545irbxddh-help2man-1.47.6.drv
   /gnu/store/am4l053g2gb22s6rb3li3kk7rimk0j1w-indent-2.2.10.drv
   /gnu/store/g9n5wfkd08rsrncwjmwaalkni1mal4f6-flex-2.6.4.tar.gz.drv
   /gnu/store/zx4m8sskfazas8h87dlhfrwly2hr8x9n-bison-3.0.5.drv
   /gnu/store/gmqwnp61lixmwyg2k963icrz81wmc2sx-flex-2.6.4.drv
   /gnu/store/n1mi8kakfv58xjnd41immiyr8ddrj1d4-bison-3.0.5.tar.xz.drv
   /gnu/store/y9jzd0qlhfdjcvqzgcpkdqy6q4fvf4f6-psutils.tar.gz.drv
   /gnu/store/md0f7zp42kljiacy8n21j6z8bd8kk12b-m4-1.4.18.tar.xz.drv
   /gnu/store/33ahg07dvfcvyq3b39vplymv25jsr2gl-m4-1.4.18.tar.xz.drv
   /gnu/store/80ifa6rsqdgza8yi6j3fp60bjqp3kmxd-groff-1.22.3.tar.gz.drv
   /gnu/store/4aichv1cja4ycfyyvmgi8zv8lvcng1ik-groff-1.22.3.tar.xz.drv
   /gnu/store/7ibzy5z04r390g0nm9s64vypmlf0f0h4-m4-1.4.18.drv
   /gnu/store/py8xjcgkz0i6v9mmivzrz1hs0876xj1r-psutils-17.drv
   /gnu/store/qhr0fc0rgw42za96ddhvz4xfazh49919-bison-3.0.5.drv
   /gnu/store/d077q0lpmlc0j78mgkrv89jyadbl7288-groff-1.22.3.drv
   /gnu/store/ls2gzc9dls3mfii18xx79cangf25v1gn-python2-2.7.15.drv
   /gnu/store/s56smlnz92s7aw6mh79s13drcy6j25dw-curl-7.61.1.tar.xz.drv
   /gnu/store/2vfygywid2i0r1ry3ssq92c24hhwlbcr-curl-7.61.1.drv
   /gnu/store/6b84mh6l6gs520vd06rd8dsczz5qpxx3-git-minimal-2.20.1.drv
   /gnu/store/3gbsp0glbz3s7b6pvhqmhyvb8csz2gnc-module-import-compiled.drv
   /gnu/store/jbnidakwvhr84rp8p8icdg1lnczjvi6w-gzip-1.9.drv
   /gnu/store/njbrqkirhklq4c7vdj5fk6x1x1pgpi8m-tar-1.30.drv
   /gnu/store/zgav8ng0h1948xrgkyw9v0i0l1l4qw5z-module-import.drv
   /gnu/store/sk3njkxrzgg1cppyhnpvs78990wfa8m1-http-parser-2.9.0-checkout.drv
   /gnu/store/0kd34wxjng7vzar2p2kxkkf05pxxcab8-http-parser-2.9.0.drv
   /gnu/store/0r4vmf2gv1h1627lixj8qxgnc25d00dx-python-wrapper-3.7.0.drv
   /gnu/store/6dnl5axljzs0xym3m4m45hh62byybnxy-libgit2-0.27.7.tar.xz.drv
   /gnu/store/88zxymzihp1h2d5yxn10px64rbfazdn5-module-import-compiled.drv
   /gnu/store/dg6hklzgpwcvad96y3wc117wi9h035w7-cmake-3.12.2.drv
   /gnu/store/h9m9pzcycbqik310fkfs947j8fcjiach-python-3.7.0.drv
   /gnu/store/wmigrbbsbpf9maimh0p63rq0yj1wj33j-module-import.drv
   /gnu/store/blqf4cgzy3bqgk0qc9f469pskmknm914-libgit2-0.27.7.drv
   /gnu/store/mnd5rcxla475wkl2bxw5yl2by7h07qry-automake-1.16.1.drv
   /gnu/store/s9m71b75chl3h56i9lsll6f1vz03653l-autoconf-2.69.drv
   /gnu/store/w6vz8dxl1495pi9d64990lilfkp8nd1a-guile-git-0.1.0-checkout.drv
   /gnu/store/x62102cgam20b3g8vfdvw06snvznx12k-texinfo-6.5.drv
   /gnu/store/f9i9r6kji8pg12vb8lqb8daqnsxlxcw3-bytestructures-1.0.5.tar.gz.drv
   /gnu/store/fgqprnj5f90yvd2m3hd17rgl01ywny8f-sqlite-autoconf-3260000.tar.gz.drv
   /gnu/store/8zgdmd8kcmlc4d2a2av4jicax5yspr3m-module-import-compiled.drv
   /gnu/store/c8yw323ys54viyzlxv2x5fmq5gd7ysn2-sqlite-3.26.0.drv
   /gnu/store/jqp8g5anxc2zqisb2hv4gd8rrih0z4mj-module-import.drv
   /gnu/store/9srrvll3bh73nvn64lvdi1gx01ggblpq-guile-bytestructures-1.0.5.drv
   /gnu/store/dcslddlp3vn4iajlxfq4h53klyq574h3-guile-git-0.1.0.drv
   /gnu/store/mn6642pl3jm0xpn3gbn4x3f8c5inpi9f-module-import-compiled.drv
   /gnu/store/v52hc1ja4bzbpd2jdw5mcikxr3kqbf18-guile-ssh-0.11.3.drv
   /gnu/store/dyw59i3xi8j7xszrdxcl1zzmg3qmx4ly-gcc-4.9.4.tar.bz2.drv
   /gnu/store/avv4fiasf05y67x8as36s95mcn9p3412-gcc-4.9.4.tar.xz.drv
   /gnu/store/qvnd4g7maw20jb2gv1x9w3rnf3bsm0hx-gcc-5.5.0.tar.xz.drv
   /gnu/store/94c3izpg3f3wf044h609hirpwaxyfkys-gmp-6.0.0a.tar.xz.drv
   /gnu/store/8rlw0ffvky5mmawqfgfxz0zc8dbx6xp5-mpfr-4.0.1.tar.xz.drv
   /gnu/store/j7kpsqwhzw7m9b94gg63gnzk8sgsjgkr-mpc-1.1.0.tar.gz.drv
   /gnu/store/r9jgy4rcxdka7b8rvdghxb3cap0xh7kg-gmp-6.0.0a.tar.xz.drv
   /gnu/store/wax5743988zb7qbwhs1nxvk82xizjbmb-gcc-5.5.0.tar.xz.drv
   /gnu/store/yiz5xwkyxj2isigk4ahhf6nh82vdy72j-libstdc++-boot0-4.9.4.drv
   /gnu/store/awmnbnb0bnwgkb3kabf05z7c11mfhxhd-gcc-cross-boot0-5.5.0.drv
   /gnu/store/qhwr5smc6nsr0j8nh3hfa0h73xydc9ck-gcc-cross-boot0-wrapped-5.5.0.drv
   /gnu/store/4f3kcflj89c4yak97xgmqzv29jnhrnrp-gettext-0.19.8.1.tar.gz.drv
   /gnu/store/rnndv2jc7qh80y6gknzaqi73x125zbn0-module-import-compiled.drv
   /gnu/store/2bqmy64sjlniypbwp3pcr491g8s1y6pp-perl-5.28.0.tar.gz.drv
   /gnu/store/fsgw20yypgrvyik6mkb39kpxbsvagdad-perl-5.28.0.tar.xz.drv
   /gnu/store/4hkzw70jgp7yjj1grx9lk5d6k3vfwjbl-linux-libre-4.14.67-gnu.tar.xz.drv
   /gnu/store/8qsid2pqlav3454pzw783j6zy2n0j2l6-perl-boot0-5.28.0.drv
   /gnu/store/wj45plk94gvagxivaax4wjzbrhbrw9iz-gzip-1.9.tar.xz.drv
   /gnu/store/933fsyxpzx3g89h6hismc6ynmsq90pr0-gzip-1.9.drv
   /gnu/store/8x5s1vg6c5d6696vz18m6kmmlfp56h7h-module-import-compiled.drv
   /gnu/store/kr2b2v97d2vm9j7b669bxm78mbaikmi1-module-import.drv
   /gnu/store/07jyncy3xscvc43psdpyv71z9xv8w1yp-diffutils-3.6.tar.xz.drv
   /gnu/store/qfa8jl74wdk60hawd1hrfh81h9bx25jn-diffutils-3.6.tar.xz.drv
   /gnu/store/zjbxnh6cr1nqpm3c1v6kidy7qkq83977-binutils-2.31.1.tar.bz2.drv
   /gnu/store/v3kvz96nf69xf784il16166fkmfym5pc-binutils-2.31.1.tar.xz.drv
   /gnu/store/a3m9lsv0vg9minq1qshd3bsjij9di9y5-make-4.2.1.tar.bz2.drv
   /gnu/store/6ai2328gibyzlyshn7w0fjlzafxggwnc-file-5.33.tar.gz.drv
   /gnu/store/8kv1nhirg3fw74kqxrbs892mpj76lswp-static-binaries.tar.xz.drv
   /gnu/store/xpdqapcrh3hmkl4b0miyhmi8p9f2vyxg-pkg-config-0.29.2.tar.gz.drv
   /gnu/store/qp28giys3sd3ibwfyi7g1pnzv05ca4kf-glibc-2.18.tar.xz.drv
   /gnu/store/cymn70r31qnvs72r26aj10nn5s0aj28a-gcc-4.8.2.tar.xz.drv
   /gnu/store/899abbvm2sqacx5rcpk2i8crrbhqyvls-findutils-4.6.0.tar.gz.drv
   /gnu/store/hp0pl71xcxqamk1pp34kcrqipz8a77g3-module-import-compiled.drv
   /gnu/store/qrjxkbas3jb4gwsv39ni2zzilbwwpck4-binutils-2.23.2.tar.xz.drv
   /gnu/store/2rd601ja6in7ydbc0wznx3hd0wr981a5-module-import-compiled.drv
   /gnu/store/3fqcs46wp163szw3yk5z7q7zbgj110dr-binutils-bootstrap-0.drv
   /gnu/store/a05jgmzcqqq6rb06s5n6mg4zbr12xpgf-findutils-4.6.0.tar.xz.drv
   /gnu/store/dy88w4n006k01c42lkx0w5n44bpi7xai-gcc-bootstrap-0.drv
   /gnu/store/kh19g1rq91spipx76zc99j6i77xc5cwv-glibc-bootstrap-0.drv
   /gnu/store/vw9kxagr117zdnqbxv6xm50jnibz5nin-module-import.drv
   /gnu/store/rnfrcrwlf7vkc0jn4553ri0m9gikk42z-guile-2.0.9.tar.xz.drv
   /gnu/store/1svqbyp3nxjh29smy3samziddjq1r0ng-module-import-compiled.drv
   /gnu/store/8fs9c8a2gixlybgb1fghvcsvcb87b9g0-guile-bootstrap-2.0.drv
   /gnu/store/fz6kjp89js3024pxlqh5kk2hyjk02lhy-module-import.drv
   /gnu/store/1fsiq8gaar1sx3rzvaw09rd30fmkj0cz-ld-wrapper-boot3-0.drv
   /gnu/store/8alzb38hg4cv6s2hs3higmqb34b42xyc-findutils-boot0-4.6.0.drv
   /gnu/store/957zrib08a8hwks66pw7825kzn5ph3w8-ld-wrapper-boot0-0.drv
   /gnu/store/9x509n687j79rc9phyrmc1rjv5qbfxz7-make-boot0-4.2.1.drv
   /gnu/store/a5jfqx9yycf7wq5cnyvwmxbcnf26q8py-pkg-config-0.29.2.drv
   /gnu/store/cq0a6m2z6q2nyik0arnacmjdd7h2v0ma-bootstrap-binaries-0.drv
   /gnu/store/d1kh73dcsrvi2c5jrdhj5cx18cpp238y-file-boot0-5.33.drv
   /gnu/store/i1vnamvnk27wb8a4w2pw6sc8k01jd3pi-make-4.2.1.tar.xz.drv
   /gnu/store/is8jni2qwf5ppcrfm2yi8217b57l5fl5-binutils-cross-boot0-2.31.1.drv
   /gnu/store/mg84n8a03hjlnqjkfwnmq8b4cfzii34x-diffutils-boot0-3.6.drv
   /gnu/store/2hyz5y319hxzazz19r1g07r87dh7x262-module-import.drv
   /gnu/store/2pzj5gc4m53klgi7f7vpj7p4z976yk7v-make-4.2.1.drv
   /gnu/store/2vxcgzr9hjli9swxz4pdribwzfc5b3va-ld-wrapper-0.drv
   /gnu/store/dz7y6fn2b3dvh542czvvapwk1gbr5idj-glibc-utf8-locales-2.28.drv
   /gnu/store/f8zjpyfczz7b0bzbh9kzd7c52wcahjq3-linux-libre-headers-4.14.67.drv
   /gnu/store/p9zc03ww8w7072p1kkjg6ps9ibr9ksqk-gettext-0.19.8.1.tar.xz.drv
   /gnu/store/q2ls28rg73d8xxnf5krswv03fvxncj8g-binutils-2.31.1.drv
   /gnu/store/s40rny70hilx3bywr3vx4bazkagl02d6-module-import-compiled.drv
   /gnu/store/v1pvc6cp0yqq8l7v3bjh75nnqd34851v-gettext-minimal-0.19.8.1.drv
   /gnu/store/ah3b9iv31bv8vf67p2gycq2j9zh187qk-guix-locale-guix-packages.drv
   /gnu/store/izkaarccd31nn9zd4y52rxnfg1qdmv14-guix-module-union.drv
   /gnu/store/y6r427z1bzj46hzy606a9cvv6asswckj-guix-locale-guix.drv
   /gnu/store/gp95wpjc3yaiw4rgfgyvzyiyxzhqf2zk-guix-command.drv
   /gnu/store/izmgqjj1zfii4bjfjjfpcw2n9w7chy73-guix-d1dfcc7c1-modules.drv
   /gnu/store/vcciw7k6p1dpxn5yil3h15a0lm2d60iz-guix-manual.drv
   /gnu/store/5kylgdvbc9yfbwvpp401rj1imn895q39-guix-d1dfcc7c1.drv
   /gnu/store/fn412m11kgxscbj37ckgjly3g4n500z5-manual-database.drv
   /gnu/store/r5haxz220rs4241vj0q0zxb8wmw5z68f-module-import-compiled.drv
The following grafts will be made:
   /gnu/store/67iczw7qjx79vgjhxv2j8vrhdqijkp2h-git-minimal-2.19.2.drv
   /gnu/store/iz2sgi2hc4rsas2ak6pfzixh3ayjz0y8-guix-daemon-0.16.0-8.7ba2b27.drv
   /gnu/store/khbdn4vrkbh21d1q8vxz9xb7bd5c00gs-git-minimal-2.20.1.drv
   /gnu/store/3wyk5qvyw7166qr4xfhzby8zaclmv52y-guile-sqlite3-0.1.0.drv
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substituting /gnu/store/cfbv248vh4n0pd8fgf9pay7rg77sr6my-module-import-compiled...
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
substitute: updating substitutes from 'https://ci.guix.info'... 100.0%
downloading from https://ci.guix.info/nar/gzip/cfbv248vh4n0pd8fgf9pay7rg77sr6my-module-import-compiled...
 module-import-compiled  117KiB         108.1MiB/s 00:00 [##################] 100.0%

substituting /gnu/store/83grv6n2110hc9qbqc6k6ma470rzmmjw-bzip2-1.0.6...
downloading from https://ci.guix.info/nar/gzip/83grv6n2110hc9qbqc6k6ma470rzmmjw-bzip2-1.0.6...
 bzip2-1.0.6  173KiB                      968KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/q6h2h60bxfrriq58ivgxxd9zix5b3ryg-config.scm...
downloading from https://ci.guix.info/nar/gzip/q6h2h60bxfrriq58ivgxxd9zix5b3ryg-config.scm...
 config.scm  190B                           6KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/nk89rpr30x4m7qh7rk6cwx8dx8295s8p-guile-bytestructures-1.0.5...
downloading from https://ci.guix.info/nar/gzip/nk89rpr30x4m7qh7rk6cwx8dx8295s8p-guile-bytestructures-1.0.5...
 guile-bytestructures-1.0.5  277KiB       1.4MiB/s 00:00 [##################] 100.0%

substituting /gnu/store/6rcv66c9jfv2l9klp44l3q4drnwx956j-guile-gdbm-ffi-20120209.fa1d5b6...
downloading from https://ci.guix.info/nar/gzip/6rcv66c9jfv2l9klp44l3q4drnwx956j-guile-gdbm-ffi-20120209.fa1d5b6...
 guile-gdbm-ffi-20120209.fa1d5b6  48KiB   1.3MiB/s 00:00 [##################] 100.0%

substituting /gnu/store/vrac3mz7mzsbngrjyk0f2i0lf6s9q1ij-guix-cli...
downloading from https://ci.guix.info/nar/gzip/vrac3mz7mzsbngrjyk0f2i0lf6s9q1ij-guix-cli...
 guix-cli  896KiB                        1002KiB/s 00:01 [##################] 100.0%

substituting /gnu/store/8sc42sh5yvmrx3mslihyfrabana9378c-guix-extra...
downloading from https://ci.guix.info/nar/gzip/8sc42sh5yvmrx3mslihyfrabana9378c-guix-extra...
 guix-extra  2.1MiB                       1.5MiB/s 00:01 [##################] 100.0%

substituting /gnu/store/0q4m9kx4rdv2hhf0h93hbk6x8p8n8j2f-guix-cli-modules...
downloading from https://ci.guix.info/nar/gzip/0q4m9kx4rdv2hhf0h93hbk6x8p8n8j2f-guix-cli-modules...
 guix-cli-modules  268B                     8KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/pv0hpmv2gxix80xqk7skyiy10vfxxc82-guix-extra-modules...
downloading from https://ci.guix.info/nar/gzip/pv0hpmv2gxix80xqk7skyiy10vfxxc82-guix-extra-modules...
 guix-extra-modules  266B                   8KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/wapwmfbirfw4wraz03mwwkrqzrvq6k9s-guix-locale-guix...
downloading from https://ci.guix.info/nar/gzip/wapwmfbirfw4wraz03mwwkrqzrvq6k9s-guix-locale-guix...
 guix-locale-guix  170KiB                 1.7MiB/s 00:00 [##################] 100.0%

substituting /gnu/store/bxyvgymhak9s48y38lhp8s6x8kc68z6k-guix-locale-guix-packages...
downloading from https://ci.guix.info/nar/gzip/bxyvgymhak9s48y38lhp8s6x8kc68z6k-guix-locale-guix-packages...
 guix-locale-guix-packages  141KiB        1.5MiB/s 00:00 [##################] 100.0%

substituting /gnu/store/akqkk5k479026bnhny9i7vslgsdyqf58-guix-manual...
downloading from https://ci.guix.info/nar/gzip/akqkk5k479026bnhny9i7vslgsdyqf58-guix-manual...
 guix-manual  2.5MiB                      1.4MiB/s 00:02 [##################] 100.0%

substituting /gnu/store/cn8jg722718n16pwlz7hj6xc72zd3q76-guix-packages-base...
downloading from https://ci.guix.info/nar/gzip/cn8jg722718n16pwlz7hj6xc72zd3q76-guix-packages-base...
 guix-packages-base  11.9MiB              1.5MiB/s 00:08 [##################] 100.0%

substituting /gnu/store/43vqg3q8z9vh45l97n2zx60m6r1g4b5d-guix-system...
downloading from https://ci.guix.info/nar/gzip/43vqg3q8z9vh45l97n2zx60m6r1g4b5d-guix-system...
 guix-system  6.0MiB                      1.4MiB/s 00:04 [##################] 100.0%

substituting /gnu/store/ns04pnzalxz7dh8h6w0zx9ry097h35qc-guix-packages-base-modules...
downloading from https://ci.guix.info/nar/gzip/ns04pnzalxz7dh8h6w0zx9ry097h35qc-guix-packages-base-modules...
 guix-packages-base-modules  276B           8KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/jdfcz4pdm4yzx45g9z6i9ddg84xl8c1c-guix-system-modules...
downloading from https://ci.guix.info/nar/gzip/jdfcz4pdm4yzx45g9z6i9ddg84xl8c1c-guix-system-modules...
 guix-system-modules  272B                  8KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/j24v9cs6g3rgvsvxjmqn6ir0blah263q-guix-system-tests...
downloading from https://ci.guix.info/nar/gzip/j24v9cs6g3rgvsvxjmqn6ir0blah263q-guix-system-tests...
 guix-system-tests  330KiB                1.1MiB/s 00:00 [##################] 100.0%

substituting /gnu/store/q09sy224qnxrp982z4xfaxi19721mjx8-gzip-1.9...
downloading from https://ci.guix.info/nar/gzip/q09sy224qnxrp982z4xfaxi19721mjx8-gzip-1.9...
 gzip-1.9  93KiB                          1.3MiB/s 00:00 [##################] 100.0%

substituting /gnu/store/nb5px5am11q5vj9hgi7wfbgqsf358xii-guix-system-tests-modules...
downloading from https://ci.guix.info/nar/gzip/nb5px5am11q5vj9hgi7wfbgqsf358xii-guix-system-tests-modules...
 guix-system-tests-modules  272B            7KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/r25ldr8zw2abjg2nvpv1sg26429q5pnd-http-parser-2.9.0...
downloading from https://ci.guix.info/nar/gzip/r25ldr8zw2abjg2nvpv1sg26429q5pnd-http-parser-2.9.0...
 http-parser-2.9.0  23KiB                 614KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/f54zm7vbnb80l48jncyhd7zplpm57ai4-libssh-0.8.6...
downloading from https://ci.guix.info/nar/gzip/f54zm7vbnb80l48jncyhd7zplpm57ai4-libssh-0.8.6...
 libssh-0.8.6  255KiB                     587KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/sh38zdamwlld9i1s3hfignm3gcr0g7r9-libgit2-0.27.7...
downloading from https://ci.guix.info/nar/gzip/sh38zdamwlld9i1s3hfignm3gcr0g7r9-libgit2-0.27.7...
 libgit2-0.27.7  620KiB                   1.5MiB/s 00:00 [##################] 100.0%

substituting /gnu/store/mrsma1rvaf2jz6dz91m742kaggd1r78f-guile-ssh-0.11.3...
downloading from https://ci.guix.info/nar/gzip/mrsma1rvaf2jz6dz91m742kaggd1r78f-guile-ssh-0.11.3...
 guile-ssh-0.11.3  380KiB                 1.4MiB/s 00:00 [##################] 100.0%

substituting /gnu/store/qcr68z2862q4i7k60ydzcjidal39by89-guile-git-0.1.0...
downloading from https://ci.guix.info/nar/gzip/qcr68z2862q4i7k60ydzcjidal39by89-guile-git-0.1.0...
 guile-git-0.1.0  459KiB                  1.1MiB/s 00:00 [##################] 100.0%

substituting /gnu/store/s93rdmx9fs31wyd5avbpvwb74dmf7ma0-mkfontscale-1.1.3...
downloading from https://ci.guix.info/nar/gzip/s93rdmx9fs31wyd5avbpvwb74dmf7ma0-mkfontscale-1.1.3...
 mkfontscale-1.1.3  20KiB                 557KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/4qvhdr4d4wzcdid2hkg5wanw1269nnkx-module-import...
downloading from https://ci.guix.info/nar/gzip/4qvhdr4d4wzcdid2hkg5wanw1269nnkx-module-import...
 module-import  319B                        8KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/127bqkp0k6z0jribfbki729nsxb221fk-mkfontdir-1.0.7...
downloading from https://ci.guix.info/nar/gzip/127bqkp0k6z0jribfbki729nsxb221fk-mkfontdir-1.0.7...
 mkfontdir-1.0.7  4KiB                    125KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/g90lqz2lv9ikb4r7fw0aib9h0nvn6vjs-module-import-compiled...
downloading from https://ci.guix.info/nar/gzip/g90lqz2lv9ikb4r7fw0aib9h0nvn6vjs-module-import-compiled...
 module-import-compiled  60KiB            484KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/i77gw5grp3qjp7s4sqrmz0x1dbcpclqb-module-import-compiled...
downloading from https://ci.guix.info/nar/gzip/i77gw5grp3qjp7s4sqrmz0x1dbcpclqb-module-import-compiled...
 module-import-compiled  92KiB            842KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/kg104rhqzvmnpqxk91ayvwxzsrncr0f4-sqlite-3.26.0...
downloading from https://ci.guix.info/nar/gzip/kg104rhqzvmnpqxk91ayvwxzsrncr0f4-sqlite-3.26.0...
 sqlite-3.26.0  2.0MiB                    1.0MiB/s 00:02 [##################] 100.0%

substituting /gnu/store/r7dmaiczxb4vikn9644hsxmnh0sjyjg1-texinfo-6.5...
downloading from https://ci.guix.info/nar/gzip/r7dmaiczxb4vikn9644hsxmnh0sjyjg1-texinfo-6.5...
 texinfo-6.5  1.9MiB                      1.1MiB/s 00:02 [##################] 100.0%

substituting /gnu/store/hzljn29kqkr0d670y3k1p2b729fn8iik-guile-sqlite3-0.1.0...
downloading from https://ci.guix.info/nar/gzip/hzljn29kqkr0d670y3k1p2b729fn8iik-guile-sqlite3-0.1.0...
 guile-sqlite3-0.1.0  68KiB               638KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/k9mqi037rjd7frhks7f36gk3lmcw82c2-guix-daemon-0.16.0-8.7ba2b27...
downloading from https://ci.guix.info/nar/gzip/k9mqi037rjd7frhks7f36gk3lmcw82c2-guix-daemon-0.16.0-8.7ba2b27...
 guix-daemon-0.16.0-8.7ba2b27  330KiB     794KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/im45w08z43rypxgfkzbf5bmgyxm77sx9-xz-5.2.4...
downloading from https://ci.guix.info/nar/gzip/im45w08z43rypxgfkzbf5bmgyxm77sx9-xz-5.2.4...
 xz-5.2.4  400KiB                         906KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/0xxwm5dby6msh2aygxfm12jwr85lqmab-guix-d1dfcc7c1-modules...
downloading from https://ci.guix.info/nar/gzip/0xxwm5dby6msh2aygxfm12jwr85lqmab-guix-d1dfcc7c1-modules...
 guix-d1dfcc7c1-modules  25.9MiB          1.6MiB/s 00:16 [##################] 100.0%

substituting /gnu/store/m90kk74mshm4nasbd99w75kiz0hkzm49-guix-module-union...
downloading from https://ci.guix.info/nar/gzip/m90kk74mshm4nasbd99w75kiz0hkzm49-guix-module-union...
 guix-module-union  2KiB                   52KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/0nq8j6db51arpl23k4nyl2x7cya45fsj-guix-command...
downloading from https://ci.guix.info/nar/gzip/0nq8j6db51arpl23k4nyl2x7cya45fsj-guix-command...
 guix-command  458B                        14KiB/s 00:00 [##################] 100.0%

substituting /gnu/store/s62cq8w3gpjfxxdjmcx3r6s0q6gx034i-guix-d1dfcc7c1...
downloading from https://ci.guix.info/nar/gzip/s62cq8w3gpjfxxdjmcx3r6s0q6gx034i-guix-d1dfcc7c1...
 guix-d1dfcc7c1  15KiB                    448KiB/s 00:00 [##################] 100.0%

building /gnu/store/x9nk3ww0ggk38j9mvyyh379zahgvqb5n-ca-certificate-bundle.drv...
successfully built /gnu/store/x9nk3ww0ggk38j9mvyyh379zahgvqb5n-ca-certificate-bundle.drv
building /gnu/store/m7fz8riw1zikbqmaqrfqgq2lmfpprv9i-fonts-dir.drv...
successfully built /gnu/store/m7fz8riw1zikbqmaqrfqgq2lmfpprv9i-fonts-dir.drv
building /gnu/store/qxsm0snwnkdq1yzkrmlcmaklnc9vrab2-info-dir.drv...
successfully built /gnu/store/qxsm0snwnkdq1yzkrmlcmaklnc9vrab2-info-dir.drv
building /gnu/store/fn412m11kgxscbj37ckgjly3g4n500z5-manual-database.drv...
Creating manual page database...
0 entries processed in 0.0 s
successfully built /gnu/store/fn412m11kgxscbj37ckgjly3g4n500z5-manual-database.drv
building /gnu/store/1sn9fj5wqzdf4wnnhgmqf65wwb18r4qg-profile.drv...
successfully built /gnu/store/1sn9fj5wqzdf4wnnhgmqf65wwb18r4qg-profile.drv
1 package in profile
bob@antelope ~$ which guix
/home/bob/.config/guix/current/bin/guix
bob@antelope ~$ guix --version
guix (GNU Guix) 0.16.0
Copyright (C) 2018 the Guix authors
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
bob@antelope ~$ $(which guix) --version
guix (GNU Guix) d1dfcc7c1b38d816dddc2868917ba490db7e7c3b
Copyright (C) 2019 the Guix authors
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
bob@antelope ~$ 

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

* bug#33647: First `guix pull' behaves unexpectedly
  2019-01-22 22:07             ` Diego Nicola Barbato
@ 2019-01-23  9:51               ` Ludovic Courtès
  0 siblings, 0 replies; 14+ messages in thread
From: Ludovic Courtès @ 2019-01-23  9:51 UTC (permalink / raw)
  To: Diego Nicola Barbato; +Cc: 33647

Hi Diego,

Diego Nicola Barbato <dnbarbato@posteo.de> skribis:

>> Thanks for the heads-up.  Commit
>> 3bbd6919bd84b76686d1aa626ba861faf3fc8ceb changes ‘guix pull’ to display
>> a hint in this case.
>>
>> Ludo’.
>
> I just tried to check if this worked.  I installed GuixSD in a VM (with
> the 0.16.0 installer), rebooted, and ran ‘guix pull’
> (commit d1dfcc7c1b38d816dddc2868917ba490db7e7c3b).  It did not print any
> hint (I have attached the bash session).
> Will this change only take effect once the installer is updated?

Yes, since the change is in ‘guix pull’ itself, the 0.16.0 ‘guix pull’
won’t display the message.  So you’d have to run the ‘guix pull’ you
just obtained from ‘guix pull’ (ah!) to see the message.

HTH,
Ludo’.

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

end of thread, other threads:[~2019-01-23  9:52 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-06 14:56 bug#33647: First `guix pull' behaves unexpectedly Diego Nicola Barbato
2018-12-06 15:42 ` Ricardo Wurmus
2018-12-06 17:03   ` Diego Nicola Barbato
2018-12-06 23:06   ` Ludovic Courtès
2018-12-07  8:36     ` Diego Nicola Barbato
2018-12-07  9:41       ` Björn Höfling
2018-12-07 13:30       ` Ludovic Courtès
2018-12-19 12:49         ` Diego Nicola Barbato
2018-12-19 17:37           ` swedebugia
2018-12-19 19:27             ` Tobias Geerinckx-Rice
2018-12-20  5:24               ` swedebugia
2019-01-18 16:54           ` Ludovic Courtès
2019-01-22 22:07             ` Diego Nicola Barbato
2019-01-23  9:51               ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

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).