unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
From: Sergiu Ivanov <sivanov@colimite.fr>
To: Leo Famulari <leo@famulari.name>
Cc: help-guix@gnu.org
Subject: Re: cannot "guix pull"
Date: Mon, 22 Mar 2021 21:03:51 +0100	[thread overview]
Message-ID: <87ft0nufa0.fsf@colimite.fr> (raw)
In-Reply-To: <YFfgr1MiJyy3yNP4@jasmine.lan>

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

Thus quoth  Leo Famulari  on Mon Mar 22 2021 at 01:11 (+0100):
> I'm happy to help, but unfortunately, the paste that included the error
> messages is no longer online:
>
> https://lists.gnu.org/archive/html/help-guix/2021-03/msg00184.html
>
> This illustrates why it is important to include all relevant details of
> a problem in the email, rather than linking to external sites.
>
> Can any of you share the error messages, to refresh my memory?

I attach the complete error log as the plain text file
original-error-message.  It's the message I got today, but I think I got
the same or a very similar message a couple of days ago.  (And I didn't
save it because I thought it was transient.)

> I was hoping to use the following info to see if you were using a
> version of Guix that preceded a bug fix, but now I can't tell. I do
> think your bug has been fixed recently, and that `guix pull && sudo guix
> system reconfigure ...` will fix your problem, but I wanted to be sure.

Yaay!  It worked!

Not directly though: I did a `guix gc` first, because I seemed stuck on
the same error message all the time, then I had to run `guix pull`
multiple times, because I was getting different error messages.
I attach the files transient-error-1 and transient-error-2 to give some
examples, but I got about 5 or 6 of them in total.

guix pull did manage to finish successfully though, so I'm quite happy,
and I can live with occasional transient network issues.

`sudo guix system reconfigure /etc/config.scm` has showed some download
errors, but they consistently went away when I retried the command, so
that's fine.

Thank you the Guix team for working hard!

> Here are some general observations and advice:

Thank you very much for taking your time!

> On Sun, Mar 21, 2021 at 09:27:12AM +0100, Sergiu Ivanov wrote:
>> Thus quoth  Leo Famulari  on Sat Mar 20 2021 at 23:10 (+0100):
>> > $ guix describe
>> 
>> Generation 5    Mar 16 2021 10:31:09    (current)
>>   [blurred]
>>   guix db87d6d
>>     repository URL: https://git.savannah.gnu.org/git/guix.git
>>     branch: master
>>     commit: db87d6ddafd26c5ad657178cf7fdab524d05c522
>
> Okay. This is a recent version of Guix.
>
>> > $ sudo --login guix describe
>> 
>> Generation 1	Feb 02 2021 10:36:19	(current)
>>   [blurred]
>>   guix 625708b
>>     repository URL: https://git.savannah.gnu.org/git/guix.git
>>     branch: master
>>     commit: 625708b03a37fc2a33c437b8e27856ca76965f43
>
> This is probably the Guix at '/root/.config/guix/current/bin/guix'. That
> is the root user's Guix command, created and updated with `guix pull` as
> root. It's from early February.

Ah, just reading this paragraph fixed things in my brain.  I moved the
directory /root/.config/guix to some temporary place from where I will
delete it soon.

>>   $ sudo su
>>   $ guix describe
>> 
>> which gave me
>> 
>>     guix c8887a5
>>     repository URL: https://git.savannah.gnu.org/git/guix.git
>>     branch: master
>>     commit: c8887a5c6e8f6a19d54ffa428c6fe88a797b867a
>
> This is probably the system's Guix command, at
> '/run/current-system/profile/bin/guix'. It's recent.

Yes!  After moving /root/.config/guix away, both `sudo --login guix
describe` and first doing `sudo su` and then `guix describe` give me the
same results, probably because both are running the same system's
Guix command.

I was quite confused by getting different results in these two cases,
and I really happy to have sorted this out.  (Also, later in this
message I learnt something about sudo and su :-))

> Based on this, I guess you are updating the system by `guix pull` as
> your regular user and then `sudo guix system reconfigure ...`. Is that
> correct?

Yes, exactly.

I once accidentally did `sudo guix pull`, which brought in that extra
Guix in /root/.config/guix, but I don't normally do that.

> The different results between those two sudo commands shows an important
> and confusing issue with privilege elevation on Linux:
>
> There is a difference between plain `sudo` and `sudo --login`.
>
> `su` is an entirely different command, and it also does something
> different than `su --login`.
>
> Basically, plain `sudo` and `su` put the user into an incomplete and
> typically unexpected environment, as compared to using the "--login"
> options. One could say they turn you into "nobody", but with privileges.
>
> In general, I recommend to learn the difference between them and use
> them accordingly.
>
> On old-school distros, there is not usually a big problem, but on Guix
> it really matters, because we use the login shell initialization to
> export some environment variables, and the resulting environment is what
> provides the per-user view of installed packages. 
>
> So, if you don't login when elevating privileges, you get a weird
> environment and your view of Guix will be unexpected. As you noticed,
> the environment you got from `sudo su` lacked any user's packages or
> channels.

Thank you very much for the explanation!  I have just checked out the
manpages for sudo, su, and their corresponding --login options.

I knew that there was a difference between sudo and su, but I actually
thought su was doing what `sudo --login` does!  That doesn't seem true.

As you say, it has never really mattered for me, and I didn't feel any
difference even in 4 years of using NixOS.  I'm happy to learn that
I have to pay attention to those differences with Guix.

>> I think I did guix pull as root once at the beginning of the
>> installation of this machine 3 months ago.  I ran sudo guix pull
>> a couple of times, before I managed to remember that guix pull should be
>> run as normal user (I think?).
>
> `guix pull` should be run as any user that you use. So, if you ever use
> the root user, we highly recommend you update root's packages sometimes,
> too. If you never login as root, and do not run any programs as root,
> then it doesn't matter very much.

Nah, I don't ever login as root, so I stick to running `guix pull` as my
normal user.

I realize from what you are saying that users on a system may all have
different versions of Guix, and they will peacefully co-exist.  Not my
use case, but quite impressive!

>> The blurred parts of the output are due to the fact that Linux Libre
>> does not detect all my devices.
>> 
>> By the way, please tell me if there is anything inappropriate in my
>> message: I'm still not sure how to talk about certain things, as you can
>> see :-)
>
> No worries :) I don't think those other channels are relevant to your
> problem.

They were not indeed.

Thanks again!

-
Sergiu

[-- Attachment #2: original-error-message --]
[-- Type: application/octet-stream, Size: 11019 bytes --]

scolobb@quark ~$ guix pull
[blurred]
Updating channel 'guix' from Git repository at 'https://git.savannah.gnu.org/git/guix.git'...
Building from these channels:
  guix      https://git.savannah.gnu.org/git/guix.git   ce995d5
  [blurred]
downloading from https://ci.guix.gnu.org/nar/lzip/brwsb87wvf72j741sdq2y8387fw2p7fm-module-import-compiled ...
 module-import-compiled                                                                                                    5.9MiB/s 00:00 | 1.9MiB transferred

building /gnu/store/12asd2d2zcdzpn9dic6rq2qhi7dkl018-compute-guix-derivation.drv...
substitute: updating substitutes from 'https://ci.guix.gnu.org'... 100.0%
@ substituter-started /gnu/store/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 substitute
@ download-started /gnu/store/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 https://ci.guix.gnu.org/nar/lzip/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 -
@ download-progress /gnu/store/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 https://ci.guix.gnu.org/nar/lzip/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 - 65546
@ download-progress /gnu/store/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 https://ci.guix.gnu.org/nar/lzip/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 - 1900592
@ download-progress /gnu/store/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 https://ci.guix.gnu.org/nar/lzip/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 - 4456556
-@ download-progress /gnu/store/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 https://ci.guix.gnu.org/nar/lzip/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 - 7078056
@ download-progress /gnu/store/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 https://ci.guix.gnu.org/nar/lzip/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 - 9634025
@ download-progress /gnu/store/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 https://ci.guix.gnu.org/nar/lzip/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 - 11600154
@ download-progress /gnu/store/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 https://ci.guix.gnu.org/nar/lzip/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 - 12525750
@ download-succeeded /gnu/store/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 https://ci.guix.gnu.org/nar/lzip/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0 12525750


@ substituter-succeeded /gnu/store/h2p6r0baprvhaq1907gil6wnpycpxm7q-git-minimal-2.31.0
/@ substituter-started /gnu/store/khcvfzmjpzcz4b846b13wdzf9ni5bda1-guile-ssh-0.13.1-debug substitute
@ download-started /gnu/store/khcvfzmjpzcz4b846b13wdzf9ni5bda1-guile-ssh-0.13.1-debug https://ci.guix.gnu.org/nar/lzip/khcvfzmjpzcz4b846b13wdzf9ni5bda1-guile-ssh-0.13.1-debug 206201
@ download-progress /gnu/store/khcvfzmjpzcz4b846b13wdzf9ni5bda1-guile-ssh-0.13.1-debug https://ci.guix.gnu.org/nar/lzip/khcvfzmjpzcz4b846b13wdzf9ni5bda1-guile-ssh-0.13.1-debug 206201 65546
@ download-progress /gnu/store/khcvfzmjpzcz4b846b13wdzf9ni5bda1-guile-ssh-0.13.1-debug https://ci.guix.gnu.org/nar/lzip/khcvfzmjpzcz4b846b13wdzf9ni5bda1-guile-ssh-0.13.1-debug 206201 206201
@ download-succeeded /gnu/store/khcvfzmjpzcz4b846b13wdzf9ni5bda1-guile-ssh-0.13.1-debug https://ci.guix.gnu.org/nar/lzip/khcvfzmjpzcz4b846b13wdzf9ni5bda1-guile-ssh-0.13.1-debug 206201


@ substituter-succeeded /gnu/store/khcvfzmjpzcz4b846b13wdzf9ni5bda1-guile-ssh-0.13.1-debug
@ substituter-started /gnu/store/9jznxb2f5s46yr8fmppigiad0fyh4b4p-tcl-8.6.10 substitute
-@ download-started /gnu/store/9jznxb2f5s46yr8fmppigiad0fyh4b4p-tcl-8.6.10 https://ci.guix.gnu.org/nar/lzip/9jznxb2f5s46yr8fmppigiad0fyh4b4p-tcl-8.6.10 2390744
@ download-progress /gnu/store/9jznxb2f5s46yr8fmppigiad0fyh4b4p-tcl-8.6.10 https://ci.guix.gnu.org/nar/lzip/9jznxb2f5s46yr8fmppigiad0fyh4b4p-tcl-8.6.10 2390744 65546
@ download-progress /gnu/store/9jznxb2f5s46yr8fmppigiad0fyh4b4p-tcl-8.6.10 https://ci.guix.gnu.org/nar/lzip/9jznxb2f5s46yr8fmppigiad0fyh4b4p-tcl-8.6.10 2390744 1835064
@ download-progress /gnu/store/9jznxb2f5s46yr8fmppigiad0fyh4b4p-tcl-8.6.10 https://ci.guix.gnu.org/nar/lzip/9jznxb2f5s46yr8fmppigiad0fyh4b4p-tcl-8.6.10 2390744 2162749
@ download-progress /gnu/store/9jznxb2f5s46yr8fmppigiad0fyh4b4p-tcl-8.6.10 https://ci.guix.gnu.org/nar/lzip/9jznxb2f5s46yr8fmppigiad0fyh4b4p-tcl-8.6.10 2390744 2390744
@ download-succeeded /gnu/store/9jznxb2f5s46yr8fmppigiad0fyh4b4p-tcl-8.6.10 https://ci.guix.gnu.org/nar/lzip/9jznxb2f5s46yr8fmppigiad0fyh4b4p-tcl-8.6.10 2390744


@ substituter-succeeded /gnu/store/9jznxb2f5s46yr8fmppigiad0fyh4b4p-tcl-8.6.10
@ substituter-started /gnu/store/fh35rs84xhri8wmawr1ypb8wfjhi0x4n-tk-8.6.10 substitute
@ download-started /gnu/store/fh35rs84xhri8wmawr1ypb8wfjhi0x4n-tk-8.6.10 https://ci.guix.gnu.org/nar/lzip/fh35rs84xhri8wmawr1ypb8wfjhi0x4n-tk-8.6.10 1330285
@ download-progress /gnu/store/fh35rs84xhri8wmawr1ypb8wfjhi0x4n-tk-8.6.10 https://ci.guix.gnu.org/nar/lzip/fh35rs84xhri8wmawr1ypb8wfjhi0x4n-tk-8.6.10 1330285 65546
@ download-progress /gnu/store/fh35rs84xhri8wmawr1ypb8wfjhi0x4n-tk-8.6.10 https://ci.guix.gnu.org/nar/lzip/fh35rs84xhri8wmawr1ypb8wfjhi0x4n-tk-8.6.10 1330285 1245222
@ download-progress /gnu/store/fh35rs84xhri8wmawr1ypb8wfjhi0x4n-tk-8.6.10 https://ci.guix.gnu.org/nar/lzip/fh35rs84xhri8wmawr1ypb8wfjhi0x4n-tk-8.6.10 1330285 1330285
@ download-succeeded /gnu/store/fh35rs84xhri8wmawr1ypb8wfjhi0x4n-tk-8.6.10 https://ci.guix.gnu.org/nar/lzip/fh35rs84xhri8wmawr1ypb8wfjhi0x4n-tk-8.6.10 1330285


@ substituter-succeeded /gnu/store/fh35rs84xhri8wmawr1ypb8wfjhi0x4n-tk-8.6.10
@ substituter-started /gnu/store/qlyzqdx6i50d3rfz6hapf53gpjc43n7c-python-3.8.2-tk substitute
\@ download-started /gnu/store/qlyzqdx6i50d3rfz6hapf53gpjc43n7c-python-3.8.2-tk https://ci.guix.gnu.org/nar/lzip/qlyzqdx6i50d3rfz6hapf53gpjc43n7c-python-3.8.2-tk 30232
@ download-progress /gnu/store/qlyzqdx6i50d3rfz6hapf53gpjc43n7c-python-3.8.2-tk https://ci.guix.gnu.org/nar/lzip/qlyzqdx6i50d3rfz6hapf53gpjc43n7c-python-3.8.2-tk 30232 30232
@ download-progress /gnu/store/qlyzqdx6i50d3rfz6hapf53gpjc43n7c-python-3.8.2-tk https://ci.guix.gnu.org/nar/lzip/qlyzqdx6i50d3rfz6hapf53gpjc43n7c-python-3.8.2-tk 30232 30232
@ download-succeeded /gnu/store/qlyzqdx6i50d3rfz6hapf53gpjc43n7c-python-3.8.2-tk https://ci.guix.gnu.org/nar/lzip/qlyzqdx6i50d3rfz6hapf53gpjc43n7c-python-3.8.2-tk 30232


@ substituter-succeeded /gnu/store/qlyzqdx6i50d3rfz6hapf53gpjc43n7c-python-3.8.2-tk
-@ substituter-started /gnu/store/v2kdcv8d5dxsbb7s73nj020jry78mcvw-glib-2.62.6 substitute
@ download-started /gnu/store/v2kdcv8d5dxsbb7s73nj020jry78mcvw-glib-2.62.6 https://ci.guix.gnu.org/nar/lzip/v2kdcv8d5dxsbb7s73nj020jry78mcvw-glib-2.62.6 -
@ download-progress /gnu/store/v2kdcv8d5dxsbb7s73nj020jry78mcvw-glib-2.62.6 https://ci.guix.gnu.org/nar/lzip/v2kdcv8d5dxsbb7s73nj020jry78mcvw-glib-2.62.6 - 65546
@ download-progress /gnu/store/v2kdcv8d5dxsbb7s73nj020jry78mcvw-glib-2.62.6 https://ci.guix.gnu.org/nar/lzip/v2kdcv8d5dxsbb7s73nj020jry78mcvw-glib-2.62.6 - 1703985
@ download-progress /gnu/store/v2kdcv8d5dxsbb7s73nj020jry78mcvw-glib-2.62.6 https://ci.guix.gnu.org/nar/lzip/v2kdcv8d5dxsbb7s73nj020jry78mcvw-glib-2.62.6 - 3157518
@ download-succeeded /gnu/store/v2kdcv8d5dxsbb7s73nj020jry78mcvw-glib-2.62.6 https://ci.guix.gnu.org/nar/lzip/v2kdcv8d5dxsbb7s73nj020jry78mcvw-glib-2.62.6 3157518


@ substituter-succeeded /gnu/store/v2kdcv8d5dxsbb7s73nj020jry78mcvw-glib-2.62.6
@ substituter-started /gnu/store/hwcky7446s952w0mwchhmm211ll07zrq-glibc-utf8-locales-2.31 substitute
Backtrace:
In guix/ui.scm:
  2164:12 19 (run-guix-command _ . _)
In guix/scripts/substitute.scm:
    652:2 18 (guix-substitute . _)
In unknown file:
          17 (with-continuation-barrier #<procedure thunk ()>)
In ice-9/boot-9.scm:
  1736:10 16 (with-exception-handler _ _ #:unwind? _ # _)
In unknown file:
          15 (apply-smob/0 #<thunk 7fb03cf9f3e0>)
In ice-9/boot-9.scm:
  1736:10 14 (with-exception-handler _ _ #:unwind? _ # _)
  1736:10 13 (with-exception-handler _ _ #:unwind? _ # _)
  1731:15 12 (with-exception-handler #<procedure 7fb03c43c000 at ic?> ?)
In guix/scripts/substitute.scm:
   701:17 11 (_)
    410:7 10 (process-substitution _ "/gnu/store/hwcky7446s952w0mwc?" ?)
In ice-9/boot-9.scm:
  1736:10  9 (with-exception-handler _ _ #:unwind? _ # _)
In guix/scripts/substitute.scm:
    419:9  8 (_)
In ice-9/boot-9.scm:
  1731:15  7 (with-exception-handler #<procedure 7fb03b7f9f90 at ic?> ?)
  1669:16  6 (raise-exception _ #:continuable? _)
  1667:16  5 (raise-exception _ #:continuable? _)
  1669:16  4 (raise-exception _ #:continuable? _)
  1764:13  3 (_ #<&compound-exception components: (#<&error> #<&irri?>)
  1669:16  2 (raise-exception _ #:continuable? _)
  1667:16  1 (raise-exception _ #:continuable? _)
  1669:16  0 (raise-exception _ #:continuable? _)

ice-9/boot-9.scm:1669:16: In procedure raise-exception:
Throw to key `bad-response' with args `("Bad Response-Line: ~s" (""))'.
Backtrace:
In ice-9/boot-9.scm:
  1736:10  4 (with-exception-handler _ _ #:unwind? _ # _)
In unknown file:
           3 (apply-smob/0 #<thunk 7fb03eaf5520>)
In ice-9/boot-9.scm:
    718:2  2 (call-with-prompt _ _ #<procedure default-prompt-handle?>)
In ice-9/eval.scm:
    619:8  1 (_ #(#(#<directory (guile-user) 7fb03eaf8c80>)))
In guix/ui.scm:
  2164:12  0 (run-guix-command _ . _)

guix/ui.scm:2164:12: In procedure run-guix-command:
Throw to key `bad-response' with args `("Bad Response-Line: ~s" (""))'.
@ substituter-failed /gnu/store/hwcky7446s952w0mwchhmm211ll07zrq-glibc-utf8-locales-2.31  fetching path `/gnu/store/hwcky7446s952w0mwchhmm211ll07zrq-glibc-utf8-locales-2.31' (empty status: '')
Backtrace:
          14 (primitive-load "/gnu/store/nn0a37hg8alla0493i1n626jssgzp4d2-compute-guix-derivation")
In ice-9/eval.scm:
    155:9 13 (_ _)
    159:9 12 (_ #(#(#(#(#(#(#(#(#(#(#(#(#(#<directory (guile-user) 7fd3bef02f?> ?) ?) ?) ?) ?) ?) ?) ?) ?) ?) ?) ?) ?))
In ice-9/boot-9.scm:
    152:2 11 (with-fluid* _ _ _)
In ./guix/store.scm:
  2066:24 10 (run-with-store #<store-connection 256.99 7fd3bd0f1e60> _ #:guile-for-build _ #:system _ #:target _)
   1900:8  9 (_ _)
In ./guix/gexp.scm:
   256:18  8 (_ _)
   1136:2  7 (_ _)
   1002:2  6 (_ _)
    849:4  5 (_ _)
In ./guix/store.scm:
  1948:12  4 (_ #<store-connection 256.99 7fd3bd0f1e60>)
   1362:5  3 (map/accumulate-builds #<store-connection 256.99 7fd3bd0f1e60> _ _)
  1373:15  2 (_ #<store-connection 256.99 7fd3bd0f1e60> _ _)
   719:11  1 (process-stderr #<store-connection 256.99 7fd3bd0f1e60> _)
In ./guix/serialization.scm:
     80:6  0 (read-int #<input-output: file 10>)

./guix/serialization.scm:80:6: In procedure read-int:
ERROR:
  1. &nar-error:
      file: #f
      port: #<input-output: file 10>
guix pull: error: You found a bug: the program '/gnu/store/nn0a37hg8alla0493i1n626jssgzp4d2-compute-guix-derivation'
failed to compute the derivation for Guix (version: "ce995d520694c4898028415b9118d711f5bcf125"; system: "x86_64-linux";
host version: "db87d6ddafd26c5ad657178cf7fdab524d05c522"; pull-version: 1).
Please report it by email to <bug-guix@gnu.org>.

[-- Attachment #3: transient-error-1 --]
[-- Type: application/octet-stream, Size: 11913 bytes --]

scolobb@quark ~$ guix pull
[blurred]
Updating channel 'guix' from Git repository at 'https://git.savannah.gnu.org/git/guix.git'...
Building from these channels:
  guix      https://git.savannah.gnu.org/git/guix.git   ce995d5
  [blurred]
Computing Guix derivation for 'x86_64-linux'... \@ substituter-started /gnu/store/d1n7p65d3k8ddj0pmydgrsbk26xv5808-glib-2.62.6-bin substitute
@ download-started /gnu/store/d1n7p65d3k8ddj0pmydgrsbk26xv5808-glib-2.62.6-bin https://ci.guix.gnu.org/nar/lzip/d1n7p65d3k8ddj0pmydgrsbk26xv5808-glib-2.62.6-bin 107586
@ download-progress /gnu/store/d1n7p65d3k8ddj0pmydgrsbk26xv5808-glib-2.62.6-bin https://ci.guix.gnu.org/nar/lzip/d1n7p65d3k8ddj0pmydgrsbk26xv5808-glib-2.62.6-bin 107586 65546
@ download-progress /gnu/store/d1n7p65d3k8ddj0pmydgrsbk26xv5808-glib-2.62.6-bin https://ci.guix.gnu.org/nar/lzip/d1n7p65d3k8ddj0pmydgrsbk26xv5808-glib-2.62.6-bin 107586 107586
@ download-succeeded /gnu/store/d1n7p65d3k8ddj0pmydgrsbk26xv5808-glib-2.62.6-bin https://ci.guix.gnu.org/nar/lzip/d1n7p65d3k8ddj0pmydgrsbk26xv5808-glib-2.62.6-bin 107586


@ substituter-succeeded /gnu/store/d1n7p65d3k8ddj0pmydgrsbk26xv5808-glib-2.62.6-bin
@ substituter-started /gnu/store/hwcky7446s952w0mwchhmm211ll07zrq-glibc-utf8-locales-2.31 substitute
@ download-started /gnu/store/hwcky7446s952w0mwchhmm211ll07zrq-glibc-utf8-locales-2.31 https://ci.guix.gnu.org/nar/lzip/hwcky7446s952w0mwchhmm211ll07zrq-glibc-utf8-locales-2.31 385080
@ download-progress /gnu/store/hwcky7446s952w0mwchhmm211ll07zrq-glibc-utf8-locales-2.31 https://ci.guix.gnu.org/nar/lzip/hwcky7446s952w0mwchhmm211ll07zrq-glibc-utf8-locales-2.31 385080 65546
|@ download-progress /gnu/store/hwcky7446s952w0mwchhmm211ll07zrq-glibc-utf8-locales-2.31 https://ci.guix.gnu.org/nar/lzip/hwcky7446s952w0mwchhmm211ll07zrq-glibc-utf8-locales-2.31 385080 385080
@ download-succeeded /gnu/store/hwcky7446s952w0mwchhmm211ll07zrq-glibc-utf8-locales-2.31 https://ci.guix.gnu.org/nar/lzip/hwcky7446s952w0mwchhmm211ll07zrq-glibc-utf8-locales-2.31 385080


@ substituter-succeeded /gnu/store/hwcky7446s952w0mwchhmm211ll07zrq-glibc-utf8-locales-2.31
@ substituter-started /gnu/store/xjaigcq739p7jql9ibnfk5h6sv74181f-guile-git-0.4.0 substitute
@ download-started /gnu/store/xjaigcq739p7jql9ibnfk5h6sv74181f-guile-git-0.4.0 https://ci.guix.gnu.org/nar/lzip/xjaigcq739p7jql9ibnfk5h6sv74181f-guile-git-0.4.0 388450
@ download-progress /gnu/store/xjaigcq739p7jql9ibnfk5h6sv74181f-guile-git-0.4.0 https://ci.guix.gnu.org/nar/lzip/xjaigcq739p7jql9ibnfk5h6sv74181f-guile-git-0.4.0 388450 65546
@ download-progress /gnu/store/xjaigcq739p7jql9ibnfk5h6sv74181f-guile-git-0.4.0 https://ci.guix.gnu.org/nar/lzip/xjaigcq739p7jql9ibnfk5h6sv74181f-guile-git-0.4.0 388450 388450
@ download-succeeded /gnu/store/xjaigcq739p7jql9ibnfk5h6sv74181f-guile-git-0.4.0 https://ci.guix.gnu.org/nar/lzip/xjaigcq739p7jql9ibnfk5h6sv74181f-guile-git-0.4.0 388450


@ substituter-succeeded /gnu/store/xjaigcq739p7jql9ibnfk5h6sv74181f-guile-git-0.4.0
@ substituter-started /gnu/store/gxq63qb00yn11vv875n7l9fffs2gmgxp-apr-1.6.5 substitute
@ download-started /gnu/store/gxq63qb00yn11vv875n7l9fffs2gmgxp-apr-1.6.5 https://ci.guix.gnu.org/nar/lzip/gxq63qb00yn11vv875n7l9fffs2gmgxp-apr-1.6.5 306240
@ download-progress /gnu/store/gxq63qb00yn11vv875n7l9fffs2gmgxp-apr-1.6.5 https://ci.guix.gnu.org/nar/lzip/gxq63qb00yn11vv875n7l9fffs2gmgxp-apr-1.6.5 306240 65546
@ download-progress /gnu/store/gxq63qb00yn11vv875n7l9fffs2gmgxp-apr-1.6.5 https://ci.guix.gnu.org/nar/lzip/gxq63qb00yn11vv875n7l9fffs2gmgxp-apr-1.6.5 306240 306240
@ download-succeeded /gnu/store/gxq63qb00yn11vv875n7l9fffs2gmgxp-apr-1.6.5 https://ci.guix.gnu.org/nar/lzip/gxq63qb00yn11vv875n7l9fffs2gmgxp-apr-1.6.5 306240


@ substituter-succeeded /gnu/store/gxq63qb00yn11vv875n7l9fffs2gmgxp-apr-1.6.5
@ substituter-started /gnu/store/0x4dm8pdg7176i39y3rv00gs3qsi5bpi-utf8proc-2.5.0 substitute
@ download-started /gnu/store/0x4dm8pdg7176i39y3rv00gs3qsi5bpi-utf8proc-2.5.0 https://ci.guix.gnu.org/nar/lzip/0x4dm8pdg7176i39y3rv00gs3qsi5bpi-utf8proc-2.5.0 54597
@ download-progress /gnu/store/0x4dm8pdg7176i39y3rv00gs3qsi5bpi-utf8proc-2.5.0 https://ci.guix.gnu.org/nar/lzip/0x4dm8pdg7176i39y3rv00gs3qsi5bpi-utf8proc-2.5.0 54597 54597
@ download-progress /gnu/store/0x4dm8pdg7176i39y3rv00gs3qsi5bpi-utf8proc-2.5.0 https://ci.guix.gnu.org/nar/lzip/0x4dm8pdg7176i39y3rv00gs3qsi5bpi-utf8proc-2.5.0 54597 54597
@ download-succeeded /gnu/store/0x4dm8pdg7176i39y3rv00gs3qsi5bpi-utf8proc-2.5.0 https://ci.guix.gnu.org/nar/lzip/0x4dm8pdg7176i39y3rv00gs3qsi5bpi-utf8proc-2.5.0 54597


@ substituter-succeeded /gnu/store/0x4dm8pdg7176i39y3rv00gs3qsi5bpi-utf8proc-2.5.0
@ substituter-started /gnu/store/gl2wzkld26ry7xainbbbwgrz493925xn-apr-util-1.6.1 substitute
@ download-started /gnu/store/gl2wzkld26ry7xainbbbwgrz493925xn-apr-util-1.6.1 https://ci.guix.gnu.org/nar/lzip/gl2wzkld26ry7xainbbbwgrz493925xn-apr-util-1.6.1 164530
@ download-progress /gnu/store/gl2wzkld26ry7xainbbbwgrz493925xn-apr-util-1.6.1 https://ci.guix.gnu.org/nar/lzip/gl2wzkld26ry7xainbbbwgrz493925xn-apr-util-1.6.1 164530 65546
@ download-progress /gnu/store/gl2wzkld26ry7xainbbbwgrz493925xn-apr-util-1.6.1 https://ci.guix.gnu.org/nar/lzip/gl2wzkld26ry7xainbbbwgrz493925xn-apr-util-1.6.1 164530 164530
@ download-succeeded /gnu/store/gl2wzkld26ry7xainbbbwgrz493925xn-apr-util-1.6.1 https://ci.guix.gnu.org/nar/lzip/gl2wzkld26ry7xainbbbwgrz493925xn-apr-util-1.6.1 164530


@ substituter-succeeded /gnu/store/gl2wzkld26ry7xainbbbwgrz493925xn-apr-util-1.6.1
@ substituter-started /gnu/store/rhwgqqg43jhwb4hzpzljp4b1ax9i0786-serf-1.3.9 substitute
@ download-started /gnu/store/rhwgqqg43jhwb4hzpzljp4b1ax9i0786-serf-1.3.9 https://ci.guix.gnu.org/nar/lzip/rhwgqqg43jhwb4hzpzljp4b1ax9i0786-serf-1.3.9 79655
@ download-progress /gnu/store/rhwgqqg43jhwb4hzpzljp4b1ax9i0786-serf-1.3.9 https://ci.guix.gnu.org/nar/lzip/rhwgqqg43jhwb4hzpzljp4b1ax9i0786-serf-1.3.9 79655 65546
@ download-progress /gnu/store/rhwgqqg43jhwb4hzpzljp4b1ax9i0786-serf-1.3.9 https://ci.guix.gnu.org/nar/lzip/rhwgqqg43jhwb4hzpzljp4b1ax9i0786-serf-1.3.9 79655 79655
@ download-succeeded /gnu/store/rhwgqqg43jhwb4hzpzljp4b1ax9i0786-serf-1.3.9 https://ci.guix.gnu.org/nar/lzip/rhwgqqg43jhwb4hzpzljp4b1ax9i0786-serf-1.3.9 79655


@ substituter-succeeded /gnu/store/rhwgqqg43jhwb4hzpzljp4b1ax9i0786-serf-1.3.9
@ substituter-started /gnu/store/9y6v4zy10pcanivd05chfryc2nsxnian-subversion-1.14.1 substitute
@ download-started /gnu/store/9y6v4zy10pcanivd05chfryc2nsxnian-subversion-1.14.1 https://ci.guix.gnu.org/nar/lzip/9y6v4zy10pcanivd05chfryc2nsxnian-subversion-1.14.1 2620882
@ download-progress /gnu/store/9y6v4zy10pcanivd05chfryc2nsxnian-subversion-1.14.1 https://ci.guix.gnu.org/nar/lzip/9y6v4zy10pcanivd05chfryc2nsxnian-subversion-1.14.1 2620882 65546
@ download-progress /gnu/store/9y6v4zy10pcanivd05chfryc2nsxnian-subversion-1.14.1 https://ci.guix.gnu.org/nar/lzip/9y6v4zy10pcanivd05chfryc2nsxnian-subversion-1.14.1 2620882 2097213
/@ download-progress /gnu/store/9y6v4zy10pcanivd05chfryc2nsxnian-subversion-1.14.1 https://ci.guix.gnu.org/nar/lzip/9y6v4zy10pcanivd05chfryc2nsxnian-subversion-1.14.1 2620882 2620882
@ download-succeeded /gnu/store/9y6v4zy10pcanivd05chfryc2nsxnian-subversion-1.14.1 https://ci.guix.gnu.org/nar/lzip/9y6v4zy10pcanivd05chfryc2nsxnian-subversion-1.14.1 2620882


@ substituter-succeeded /gnu/store/9y6v4zy10pcanivd05chfryc2nsxnian-subversion-1.14.1
\@ substituter-started /gnu/store/xrmj7w73s1v4bvxln0l4b85pvp07in67-cairo-1.16.0 substitute
|@ download-started /gnu/store/xrmj7w73s1v4bvxln0l4b85pvp07in67-cairo-1.16.0 https://ci.guix.gnu.org/nar/lzip/xrmj7w73s1v4bvxln0l4b85pvp07in67-cairo-1.16.0 -
@ download-progress /gnu/store/xrmj7w73s1v4bvxln0l4b85pvp07in67-cairo-1.16.0 https://ci.guix.gnu.org/nar/lzip/xrmj7w73s1v4bvxln0l4b85pvp07in67-cairo-1.16.0 - 65546
@ download-progress /gnu/store/xrmj7w73s1v4bvxln0l4b85pvp07in67-cairo-1.16.0 https://ci.guix.gnu.org/nar/lzip/xrmj7w73s1v4bvxln0l4b85pvp07in67-cairo-1.16.0 - 914568
@ download-succeeded /gnu/store/xrmj7w73s1v4bvxln0l4b85pvp07in67-cairo-1.16.0 https://ci.guix.gnu.org/nar/lzip/xrmj7w73s1v4bvxln0l4b85pvp07in67-cairo-1.16.0 914568


@ substituter-succeeded /gnu/store/xrmj7w73s1v4bvxln0l4b85pvp07in67-cairo-1.16.0
@ substituter-started /gnu/store/w7ilyzvlzlv0mqjrv89bb5nhr8ajf27h-guix-daemon-1.2.0-17.ec7fb66 substitute
Backtrace:
In guix/ui.scm:
  2164:12 19 (run-guix-command _ . _)
In guix/scripts/substitute.scm:
    652:2 18 (guix-substitute . _)
In unknown file:
          17 (with-continuation-barrier #<procedure thunk ()>)
In ice-9/boot-9.scm:
  1736:10 16 (with-exception-handler _ _ #:unwind? _ # _)
In unknown file:
          15 (apply-smob/0 #<thunk 7f8366ddbb60>)
In ice-9/boot-9.scm:
  1736:10 14 (with-exception-handler _ _ #:unwind? _ # _)
  1736:10 13 (with-exception-handler _ _ #:unwind? _ # _)
  1731:15 12 (with-exception-handler #<procedure 7f8366289e70 at ic?> ?)
In guix/scripts/substitute.scm:
   701:17 11 (_)
    410:7 10 (process-substitution _ "/gnu/store/w7ilyzvlzlv0mqjrv8?" ?)
In ice-9/boot-9.scm:
  1736:10  9 (with-exception-handler _ _ #:unwind? _ # _)
In guix/scripts/substitute.scm:
    419:9  8 (_)
In ice-9/boot-9.scm:
  1731:15  7 (with-exception-handler #<procedure 7f836501c960 at ic?> ?)
  1669:16  6 (raise-exception _ #:continuable? _)
  1667:16  5 (raise-exception _ #:continuable? _)
  1669:16  4 (raise-exception _ #:continuable? _)
  1764:13  3 (_ #<&compound-exception components: (#<&error> #<&irri?>)
  1669:16  2 (raise-exception _ #:continuable? _)
  1667:16  1 (raise-exception _ #:continuable? _)
  1669:16  0 (raise-exception _ #:continuable? _)

ice-9/boot-9.scm:1669:16: In procedure raise-exception:
Throw to key `bad-response' with args `("Bad Response-Line: ~s" (""))'.
Backtrace:
In ice-9/boot-9.scm:
  1736:10  4 (with-exception-handler _ _ #:unwind? _ # _)
In unknown file:
           3 (apply-smob/0 #<thunk 7f8368927520>)
In ice-9/boot-9.scm:
    718:2  2 (call-with-prompt _ _ #<procedure default-prompt-handle?>)
In ice-9/eval.scm:
    619:8  1 (_ #(#(#<directory (guile-user) 7f836892ac80>)))
In guix/ui.scm:
  2164:12  0 (run-guix-command _ . _)

guix/ui.scm:2164:12: In procedure run-guix-command:
Throw to key `bad-response' with args `("Bad Response-Line: ~s" (""))'.
@ substituter-failed /gnu/store/w7ilyzvlzlv0mqjrv89bb5nhr8ajf27h-guix-daemon-1.2.0-17.ec7fb66  fetching path `/gnu/store/w7ilyzvlzlv0mqjrv89bb5nhr8ajf27h-guix-daemon-1.2.0-17.ec7fb66' (empty status: '')
Backtrace:
          12 (primitive-load "/gnu/store/nn0a37hg8alla0493i1n626jssgzp4d2-compute-guix-derivation")
In ice-9/eval.scm:
    155:9 11 (_ _)
    159:9 10 (_ #(#(#(#(#(#(#(#(#(#(#(#(#(#<directory (guile-user) 7fd67ebfbf?> ?) ?) ?) ?) ?) ?) ?) ?) ?) ?) ?) ?) ?))
In ice-9/boot-9.scm:
    152:2  9 (with-fluid* _ _ _)
In ./guix/store.scm:
  2066:24  8 (run-with-store #<store-connection 256.99 7fd67cde8e60> _ #:guile-for-build _ #:system _ #:target _)
   1900:8  7 (_ _)
In ./guix/gexp.scm:
   256:18  6 (_ _)
   1136:2  5 (_ _)
   1002:2  4 (_ _)
    849:4  3 (_ _)
In ./guix/store.scm:
  1948:12  2 (_ #<store-connection 256.99 7fd67cde8e60>)
   1362:5  1 (map/accumulate-builds #<store-connection 256.99 7fd67cde8e60> _ _)
  1373:15  0 (_ #<store-connection 256.99 7fd67cde8e60> _ _)

./guix/store.scm:1373:15: ERROR:
  1. &store-protocol-error:
      message: "some substitutes for the outputs of derivation `/gnu/store/lf7v83sq5j2p66nhl6jy3qsmzfbya3qx-guix-daemon-1.2.0-17.ec7fb66.drv' failed (usually happens due to networking issues); try `--fallback' to build derivation from source "
      status: 1
guix pull: error: You found a bug: the program '/gnu/store/nn0a37hg8alla0493i1n626jssgzp4d2-compute-guix-derivation'
failed to compute the derivation for Guix (version: "ce995d520694c4898028415b9118d711f5bcf125"; system: "x86_64-linux";
host version: "db87d6ddafd26c5ad657178cf7fdab524d05c522"; pull-version: 1).
Please report it by email to <bug-guix@gnu.org>.

[-- Attachment #4: transient-error-2 --]
[-- Type: application/octet-stream, Size: 9520 bytes --]

scolobb@quark ~$ guix pull
[blurred]
Updating channel 'guix' from Git repository at 'https://git.savannah.gnu.org/git/guix.git'...
Building from these channels:
  guix      https://git.savannah.gnu.org/git/guix.git   ce995d5
  [blurred]
Computing Guix derivation for 'x86_64-linux'... |@ substituter-started /gnu/store/a2j5znslnafdydcrx9jqpr6n25a3k6vf-graphviz-2.42.3-doc substitute
@ download-started /gnu/store/a2j5znslnafdydcrx9jqpr6n25a3k6vf-graphviz-2.42.3-doc https://ci.guix.gnu.org/nar/lzip/a2j5znslnafdydcrx9jqpr6n25a3k6vf-graphviz-2.42.3-doc 3989787
@ download-progress /gnu/store/a2j5znslnafdydcrx9jqpr6n25a3k6vf-graphviz-2.42.3-doc https://ci.guix.gnu.org/nar/lzip/a2j5znslnafdydcrx9jqpr6n25a3k6vf-graphviz-2.42.3-doc 3989787 65546
/@ download-progress /gnu/store/a2j5znslnafdydcrx9jqpr6n25a3k6vf-graphviz-2.42.3-doc https://ci.guix.gnu.org/nar/lzip/a2j5znslnafdydcrx9jqpr6n25a3k6vf-graphviz-2.42.3-doc 3989787 1703978
@ download-progress /gnu/store/a2j5znslnafdydcrx9jqpr6n25a3k6vf-graphviz-2.42.3-doc https://ci.guix.gnu.org/nar/lzip/a2j5znslnafdydcrx9jqpr6n25a3k6vf-graphviz-2.42.3-doc 3989787 3989787
@ download-progress /gnu/store/a2j5znslnafdydcrx9jqpr6n25a3k6vf-graphviz-2.42.3-doc https://ci.guix.gnu.org/nar/lzip/a2j5znslnafdydcrx9jqpr6n25a3k6vf-graphviz-2.42.3-doc 3989787 3989787
@ download-succeeded /gnu/store/a2j5znslnafdydcrx9jqpr6n25a3k6vf-graphviz-2.42.3-doc https://ci.guix.gnu.org/nar/lzip/a2j5znslnafdydcrx9jqpr6n25a3k6vf-graphviz-2.42.3-doc 3989787


@ substituter-succeeded /gnu/store/a2j5znslnafdydcrx9jqpr6n25a3k6vf-graphviz-2.42.3-doc
@ substituter-started /gnu/store/w7ilyzvlzlv0mqjrv89bb5nhr8ajf27h-guix-daemon-1.2.0-17.ec7fb66 substitute
@ download-started /gnu/store/w7ilyzvlzlv0mqjrv89bb5nhr8ajf27h-guix-daemon-1.2.0-17.ec7fb66 https://ci.guix.gnu.org/nar/lzip/w7ilyzvlzlv0mqjrv89bb5nhr8ajf27h-guix-daemon-1.2.0-17.ec7fb66 263024
@ download-progress /gnu/store/w7ilyzvlzlv0mqjrv89bb5nhr8ajf27h-guix-daemon-1.2.0-17.ec7fb66 https://ci.guix.gnu.org/nar/lzip/w7ilyzvlzlv0mqjrv89bb5nhr8ajf27h-guix-daemon-1.2.0-17.ec7fb66 263024 65546
@ download-progress /gnu/store/w7ilyzvlzlv0mqjrv89bb5nhr8ajf27h-guix-daemon-1.2.0-17.ec7fb66 https://ci.guix.gnu.org/nar/lzip/w7ilyzvlzlv0mqjrv89bb5nhr8ajf27h-guix-daemon-1.2.0-17.ec7fb66 263024 263024
@ download-succeeded /gnu/store/w7ilyzvlzlv0mqjrv89bb5nhr8ajf27h-guix-daemon-1.2.0-17.ec7fb66 https://ci.guix.gnu.org/nar/lzip/w7ilyzvlzlv0mqjrv89bb5nhr8ajf27h-guix-daemon-1.2.0-17.ec7fb66 263024


@ substituter-succeeded /gnu/store/w7ilyzvlzlv0mqjrv89bb5nhr8ajf27h-guix-daemon-1.2.0-17.ec7fb66
@ substituter-started /gnu/store/wk4k3cnygif6is42iq5wgp1yihr5abv5-python2-2.7.17-tk substitute
@ download-started /gnu/store/wk4k3cnygif6is42iq5wgp1yihr5abv5-python2-2.7.17-tk https://ci.guix.gnu.org/nar/lzip/wk4k3cnygif6is42iq5wgp1yihr5abv5-python2-2.7.17-tk 28250
@ download-progress /gnu/store/wk4k3cnygif6is42iq5wgp1yihr5abv5-python2-2.7.17-tk https://ci.guix.gnu.org/nar/lzip/wk4k3cnygif6is42iq5wgp1yihr5abv5-python2-2.7.17-tk 28250 28250
@ download-progress /gnu/store/wk4k3cnygif6is42iq5wgp1yihr5abv5-python2-2.7.17-tk https://ci.guix.gnu.org/nar/lzip/wk4k3cnygif6is42iq5wgp1yihr5abv5-python2-2.7.17-tk 28250 28250
@ download-succeeded /gnu/store/wk4k3cnygif6is42iq5wgp1yihr5abv5-python2-2.7.17-tk https://ci.guix.gnu.org/nar/lzip/wk4k3cnygif6is42iq5wgp1yihr5abv5-python2-2.7.17-tk 28250


@ substituter-succeeded /gnu/store/wk4k3cnygif6is42iq5wgp1yihr5abv5-python2-2.7.17-tk
@ substituter-started /gnu/store/3zvd53r16q9ib9x4bz336bha355s9zml-po4a-0.61 substitute
@ download-started /gnu/store/3zvd53r16q9ib9x4bz336bha355s9zml-po4a-0.61 https://ci.guix.gnu.org/nar/lzip/3zvd53r16q9ib9x4bz336bha355s9zml-po4a-0.61 1639177
@ download-progress /gnu/store/3zvd53r16q9ib9x4bz336bha355s9zml-po4a-0.61 https://ci.guix.gnu.org/nar/lzip/3zvd53r16q9ib9x4bz336bha355s9zml-po4a-0.61 1639177 65546
-@ download-progress /gnu/store/3zvd53r16q9ib9x4bz336bha355s9zml-po4a-0.61 https://ci.guix.gnu.org/nar/lzip/3zvd53r16q9ib9x4bz336bha355s9zml-po4a-0.61 1639177 1441826
@ download-progress /gnu/store/3zvd53r16q9ib9x4bz336bha355s9zml-po4a-0.61 https://ci.guix.gnu.org/nar/lzip/3zvd53r16q9ib9x4bz336bha355s9zml-po4a-0.61 1639177 1639177
@ download-succeeded /gnu/store/3zvd53r16q9ib9x4bz336bha355s9zml-po4a-0.61 https://ci.guix.gnu.org/nar/lzip/3zvd53r16q9ib9x4bz336bha355s9zml-po4a-0.61 1639177


@ substituter-succeeded /gnu/store/3zvd53r16q9ib9x4bz336bha355s9zml-po4a-0.61

substitute: updating substitutes from 'https://ci.guix.gnu.org'... 100.0%
The following derivations will be built:
   /gnu/store/gw2s9ranwdr4hcaybccl4d9s12j2h0ck-profile.drv
   [blurred]
   /gnu/store/fbm0gx6hgxi7iny3lljzgllmspi872zk-guix-ce995d520.drv
   /gnu/store/89bkazp3fncdb2wd264hi95w5yw9gy9q-guix-daemon.drv
   /gnu/store/iw5ss2dd9m4k2m74flwk3z2rpjm72d7y-guix-command.drv
   /gnu/store/ys0jggg4bmcf9yc29rdxq5bm5b3kgm6b-guix-module-union.drv
   /gnu/store/a0mc8lvw9d90hxpvgkzcpfbaa8mbyyvm-guix-ce995d520-modules.drv
   /gnu/store/0jdy6cqhgpxna180mnh9mq8nxk823yc6-guix-system-tests-modules.drv
   /gnu/store/8ajcy2kvv01ajyd25r0q2p6va29a4xig-guix-extra-modules.drv
   /gnu/store/bm3r2128cfmlqfb34yqrxx6ffy65a85k-guix-packages-base-modules.drv
   /gnu/store/gf482r5z280dy5092pvn94kmwnhgw8k3-guix-config-modules.drv
   /gnu/store/5jybqdwpq3za4scz7rwv8m9kvrsn582x-guix-config.drv
   /gnu/store/g18vg41i6ikvi1r2divk66i9gzcxg2pa-guix-config-source.drv
   /gnu/store/n6zpnghn9ydbr6yq2vzn7j12yjh9x6q0-config.scm.drv
   /gnu/store/k9c85s7nqgrj8v49wv6qmmjp5xn8pzn0-guix-system-modules.drv
   /gnu/store/kg8lpbjk252z91vh4j9y9dhs7ky7hkq0-guix-packages-modules.drv
   /gnu/store/kvcs5alx6sipg2n1cc3qcra74sckrnww-guix-cli-modules.drv
   /gnu/store/pwx23gkwjgm6dcfvl38y3wi4sfvamgv5-guix-core-modules.drv
   /gnu/store/80p1mlbskypp66ank641xh1ly3k3464w-guix-core-source.drv
   /gnu/store/q3g69sf55if9xjbm9pqwiidyfx7xdz9h-config.scm.drv
   /gnu/store/qrwrqdiry9vqzsblf420pkgp9dlyjg64-inferior-script.scm.drv
   /gnu/store/hzdvhk8rvn7b6n14r682631cyiig8alv-profile.drv
   /gnu/store/jr560m0a2di6d7mza69y4y6sbrllssrm-inferior-script.scm.drv

30,0 MB will be downloaded
downloading from https://ci.guix.gnu.org/nar/lzip/mk5f94dvzyql18gl12yf0pg4qxshz42d-module-import-compiled ...
 module-import-compiled  115KiB                                                                                     1.7MiB/s 00:00 [##################] 100.0%

downloading from https://ci.guix.gnu.org/nar/lzip/978b6d0pn5d5frn4wcps9syhwvj6z1z5-guile-gdbm-ffi-20120209.fa1d5b6 ...
 guile-gdbm-ffi-20120209.fa1d5b6  42KiB                                                                             6.7MiB/s 00:00 [##################] 100.0%

downloading from https://ci.guix.gnu.org/nar/lzip/0by44hplsmf03g28m2sdz72y85n3p4hn-guile-lib-0.2.7 ...
 guile-lib-0.2.7  381KiB                                                                                            4.6MiB/s 00:00 [##################] 100.0%

downloading from https://ci.guix.gnu.org/nar/lzip/fjc9vkbqbjqdci2y8wyf3d3ipjwi7wia-guix-cli ...
 guix-cli  797KiB                                                                                                   6.4MiB/s 00:00 [##################] 100.0%

downloading from https://ci.guix.gnu.org/nar/lzip/x49ap4f67xmmp3vx92j1fnczwzxhm01y-guix-core ...
 guix-core                                                                                                                 8.6MiB/s 00:00 | 1.7MiB transferred

Backtrace:
In guix/ui.scm:
  2164:12 19 (run-guix-command _ . _)
In guix/scripts/substitute.scm:
    652:2 18 (guix-substitute . _)
In unknown file:
          17 (with-continuation-barrier #<procedure thunk ()>)
In ice-9/boot-9.scm:
  1736:10 16 (with-exception-handler _ _ #:unwind? _ # _)
In unknown file:
          15 (apply-smob/0 #<thunk 7fcd416b48c0>)
In ice-9/boot-9.scm:
  1736:10 14 (with-exception-handler _ _ #:unwind? _ # _)
  1736:10 13 (with-exception-handler _ _ #:unwind? _ # _)
  1731:15 12 (with-exception-handler #<procedure 7fcd40b5ba20 at ic…> …)
In guix/scripts/substitute.scm:
   701:17 11 (_)
    410:7 10 (process-substitution _ "/gnu/store/awniy9yssy1jm9z7qh…" …)
In ice-9/boot-9.scm:
  1736:10  9 (with-exception-handler _ _ #:unwind? _ # _)
In guix/scripts/substitute.scm:
    419:9  8 (_)
In ice-9/boot-9.scm:
  1731:15  7 (with-exception-handler #<procedure 7fcd3dcd5690 at ic…> …)
  1669:16  6 (raise-exception _ #:continuable? _)
  1667:16  5 (raise-exception _ #:continuable? _)
  1669:16  4 (raise-exception _ #:continuable? _)
  1764:13  3 (_ #<&compound-exception components: (#<&error> #<&irri…>)
  1669:16  2 (raise-exception _ #:continuable? _)
  1667:16  1 (raise-exception _ #:continuable? _)
  1669:16  0 (raise-exception _ #:continuable? _)

ice-9/boot-9.scm:1669:16: In procedure raise-exception:
Throw to key `bad-response' with args `("Bad Response-Line: ~s" (""))'.
Backtrace:
In ice-9/boot-9.scm:
  1736:10  4 (with-exception-handler _ _ #:unwind? _ # _)
In unknown file:
           3 (apply-smob/0 #<thunk 7fcd43200520>)
In ice-9/boot-9.scm:
    718:2  2 (call-with-prompt _ _ #<procedure default-prompt-handle…>)
In ice-9/eval.scm:
    619:8  1 (_ #(#(#<directory (guile-user) 7fcd43203c80>)))
In guix/ui.scm:
  2164:12  0 (run-guix-command _ . _)

guix/ui.scm:2164:12: In procedure run-guix-command:
Throw to key `bad-response' with args `("Bad Response-Line: ~s" (""))'.
substitution of /gnu/store/awniy9yssy1jm9z7qhzzgx4lmyhmq09i-guix-extra failed
guix pull: error: corrupt input while restoring archive from #<closed: file 7f785f6bcc40>

  reply	other threads:[~2021-03-22 20:04 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-20 17:14 cannot "guix pull" Adam Kandur via
2021-03-20 17:47 ` Andreas Enge
2021-03-20 19:00   ` Patricio Martínez
2021-03-20 20:37     ` Sergiu Ivanov
2021-03-20 22:10       ` Leo Famulari
2021-03-21  8:27         ` Sergiu Ivanov
2021-03-22  0:11           ` Leo Famulari
2021-03-22 20:03             ` Sergiu Ivanov [this message]
2021-03-22  2:02         ` Adam Kandur via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87ft0nufa0.fsf@colimite.fr \
    --to=sivanov@colimite.fr \
    --cc=help-guix@gnu.org \
    --cc=leo@famulari.name \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).