all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* '--load-path' option not working for 'guix system' command
@ 2018-11-13  3:49 Taegil Bae
  2018-11-13  7:25 ` Pierre Neidhardt
  0 siblings, 1 reply; 7+ messages in thread
From: Taegil Bae @ 2018-11-13  3:49 UTC (permalink / raw)
  To: help-guix

Hi,

I have modified a package and tried 'guix system reconfigure
/etc/config.scm --load-path=~/my-guix'. But it did not load the path.
If I do 'export GUIX_PACKAGE_PATH=~/my-guix', 'guix system reconfigure
/etc/config.scm' loads that path. Is this guix's bug?

Regards,

Taegil

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

* Re: '--load-path' option not working for 'guix system' command
  2018-11-13  3:49 '--load-path' option not working for 'guix system' command Taegil Bae
@ 2018-11-13  7:25 ` Pierre Neidhardt
  2018-11-13  7:55   ` Taegil Bae
  0 siblings, 1 reply; 7+ messages in thread
From: Pierre Neidhardt @ 2018-11-13  7:25 UTC (permalink / raw)
  To: Taegil Bae; +Cc: help-guix

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


> 'guix system reconfigure /etc/config.scm --load-path=~/my-guix'

This because the shell only expands '~' to $HOME if it's a starting character.
Here you should either use

    guix system reconfigure /etc/config.scm --load-path=$HOME/my-guix
    
or

    guix system reconfigure /etc/config.scm -L ~/my-guix

-- 
Pierre Neidhardt
https://ambrevar.xyz/

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

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

* Re: '--load-path' option not working for 'guix system' command
  2018-11-13  7:25 ` Pierre Neidhardt
@ 2018-11-13  7:55   ` Taegil Bae
  2018-11-14  9:20     ` Oleg Pykhalov
  0 siblings, 1 reply; 7+ messages in thread
From: Taegil Bae @ 2018-11-13  7:55 UTC (permalink / raw)
  To: mail; +Cc: help-guix

Dear Pierre,

Thank you for the reply.
I didn't know that '~' does not expands to $HOME in the case. But
actually I have used '-L ./my-guix'.
This option is not working with 'guix system', but is working with
'guix build' and 'guix package'.

root@antelope ~# guix build spice-vdagent --load-path=~/my-guix
/gnu/store/5wk50f4zhhmg0s599z3d6v5zraxp72jp-spice-vdagent-0.17.0
root@antelope ~# guix build spice-vdagent --load-path=./my-guix
;;; note: source file ./my-guix/gnu/packages/spice.scm
;;;       newer than compiled
/gnu/store/6gjbbs9d68626j05h1ff3yya3nlizsc0-guix-e740a9022-modules/gnu/packages/spice.go
;;; note: source file ./my-guix/gnu/packages/spice.scm
;;;       newer than compiled
/run/current-system/profile/lib/guile/2.2/site-ccache/gnu/packages/spice.go
/gnu/store/d5l0idaszbb5dbxm072gmaknrhrh4bc9-spice-vdagent-fixed-0.17.0
root@antelope ~# guix system reconfigure /etc/config.scm -L ./my-guix/ -n
The following derivations would be built:
   /gnu/store/14cww1f93h0zh6rylr18wsb8l16j7ipn-system.drv
                     .................
root@antelope ~# guix system reconfigure /etc/config.scm -L ~/my-guix/ -n
The following derivations would be built:
   /gnu/store/14cww1f93h0zh6rylr18wsb8l16j7ipn-system.drv
                    ..................
root@antelope ~# export GUIX_PACKAGE_PATH=~/my-guix
root@antelope ~# guix system reconfigure /etc/config.scm -n
;;; note: source file /root/my-guix/gnu/packages/spice.scm
;;;       newer than compiled
/gnu/store/6gjbbs9d68626j05h1ff3yya3nlizsc0-guix-e740a9022-modules/gnu/packages/spice.go
;;; note: source file /root/my-guix/gnu/packages/spice.scm
;;;       newer than compiled
/run/current-system/profile/lib/guile/2.2/site-ccache/gnu/packages/spice.go
The following derivations would be built:
   /gnu/store/14cww1f93h0zh6rylr18wsb8l16j7ipn-system.drv
                   ....................

Regards,

Taegil
2018년 11월 13일 (화) 오후 4:25, Pierre Neidhardt <mail@ambrevar.xyz>님이 작성:
>
>
> > 'guix system reconfigure /etc/config.scm --load-path=~/my-guix'
>
> This because the shell only expands '~' to $HOME if it's a starting character.
> Here you should either use
>
>     guix system reconfigure /etc/config.scm --load-path=$HOME/my-guix
>
> or
>
>     guix system reconfigure /etc/config.scm -L ~/my-guix
>
> --
> Pierre Neidhardt
> https://ambrevar.xyz/

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

* Re: '--load-path' option not working for 'guix system' command
  2018-11-13  7:55   ` Taegil Bae
@ 2018-11-14  9:20     ` Oleg Pykhalov
  2018-11-14 16:08       ` Taegil Bae
  0 siblings, 1 reply; 7+ messages in thread
From: Oleg Pykhalov @ 2018-11-14  9:20 UTC (permalink / raw)
  To: Taegil Bae; +Cc: help-guix

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

Hello,

Taegil Bae <esrevinu@gmail.com> writes:

[…]

> But actually I have used '-L ./my-guix'.  This option is not working
> with 'guix system', but is working with 'guix build' and 'guix
> package'.

[…]

Could you place a (pk '%load-path %load-path) sexp before the
(operating-system ...) to see what does Guile load?

Thanks,
Oleg.

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

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

* Re: '--load-path' option not working for 'guix system' command
  2018-11-14  9:20     ` Oleg Pykhalov
@ 2018-11-14 16:08       ` Taegil Bae
  2018-11-18 11:08         ` Oleg Pykhalov
  0 siblings, 1 reply; 7+ messages in thread
From: Taegil Bae @ 2018-11-14 16:08 UTC (permalink / raw)
  To: Oleg Pykhalov; +Cc: help-guix

Dear Oleg,

On 11/14/18 6:20 PM, Oleg Pykhalov wrote:
> Could you place a (pk '%load-path %load-path) sexp before the
> (operating-system ...) to see what does Guile load?

Here is the output:

# guix system reconfigure /etc/config.scm -L $HOME/my-guix -n

;;; (%load-path ("/root/my-guix" 
"/gnu/store/xykmv219fysc8rkb0bwqkkw64a37sm58-guix-e740a9022-modules" 
"/gnu/store/qbzw2ygy1nq2h0nq6sl9cgg1c5mq5g8z-guile-gcrypt-0.1.0/share/guile/site/2.2" 
"/gnu/store/c63g5242rs04ipx1zrkma9zxvs8782sj-gnutls-3.5.18/share/guile/site/2.2" 
"/gnu/store/n45hylmwfy6gdkxxdx8qpq55sh8rgml8-guile-git-0.1.0/share/guile/site/2.2" 
"/gnu/store/1aglyrvw57cbw4njc2q4blmbqin3r7k2-guile-bytestructures-1.0.3/share/guile/site/2.2" 
"/gnu/store/sw3wxk3ylxd1kc2z4z4kb5191x9pf17n-guile-json-1.2.0/share/guile/site/2.2" 
"/gnu/store/vni6jwl3hxn97i9sk2a9fdd4b7fhjvlb-guile-ssh-0.11.3/share/guile/site/2.2" 
"/gnu/store/rjp81r0sgvix8cplfgqyhyhmyxxk35a6-guile-sqlite3-0.1.0/share/guile/site/2.2" 
"/gnu/store/9970qxhisnrr8cq4rq25zrc4698b037b-module-import" 
"/gnu/store/9970qxhisnrr8cq4rq25zrc4698b037b-module-import" 
"/run/current-system/profile/share/guile/site/2.2" 
"/gnu/store/p9wm67w3rfw3hlb9iljgvsfn84mz4w9d-guile-2.2.4/share/guile/2.2" 
"/gnu/store/p9wm67w3rfw3hlb9iljgvsfn84mz4w9d-guile-2.2.4/share/guile/site/2.2" 
"/gnu/store/p9wm67w3rfw3hlb9iljgvsfn84mz4w9d-guile-2.2.4/share/guile/site" 
"/gnu/store/p9wm67w3rfw3hlb9iljgvsfn84mz4w9d-guile-2.2.4/share/guile"))
The following derivations would be built:
    /gnu/store/14cww1f93h0zh6rylr18wsb8l16j7ipn-system.drv
/gnu/store/qk1ninhablh8ax7633gppwj447czc04r-grub.cfg.drv
/gnu/store/jk0c7vly17k8azbpzbcpd1lrhpmk7hig-bootloader-installer.drv
/gnu/store/bp735l7fzyv86rwps1ajdap2k9gvyvr1-module-import-compiled.drv
/gnu/store/s04i207w7k22sgl9qfss551cp3d5cgvf-gtk-icon-themes.drv
            .....

# export GUIX_PACKAGE_PATH=~/my-guix
# guix system reconfigure /etc/config.scm -n
;;; note: source file /root/my-guix/gnu/packages/spice.scm
;;;       newer than compiled 
/gnu/store/6gjbbs9d68626j05h1ff3yya3nlizsc0-guix-e740a9022-modules/gnu/packages/spice.go
;;; note: source file /root/my-guix/gnu/packages/spice.scm
;;;       newer than compiled 
/run/current-system/profile/lib/guile/2.2/site-ccache/gnu/packages/spice.go

;;; (%load-path ("/root/my-guix" 
"/gnu/store/xykmv219fysc8rkb0bwqkkw64a37sm58-guix-e740a9022-modules" 
"/gnu/store/qbzw2ygy1nq2h0nq6sl9cgg1c5mq5g8z-guile-gcrypt-0.1.0/share/guile/site/2.2" 
"/gnu/store/c63g5242rs04ipx1zrkma9zxvs8782sj-gnutls-3.5.18/share/guile/site/2.2" 
"/gnu/store/n45hylmwfy6gdkxxdx8qpq55sh8rgml8-guile-git-0.1.0/share/guile/site/2.2" 
"/gnu/store/1aglyrvw57cbw4njc2q4blmbqin3r7k2-guile-bytestructures-1.0.3/share/guile/site/2.2" 
"/gnu/store/sw3wxk3ylxd1kc2z4z4kb5191x9pf17n-guile-json-1.2.0/share/guile/site/2.2" 
"/gnu/store/vni6jwl3hxn97i9sk2a9fdd4b7fhjvlb-guile-ssh-0.11.3/share/guile/site/2.2" 
"/gnu/store/rjp81r0sgvix8cplfgqyhyhmyxxk35a6-guile-sqlite3-0.1.0/share/guile/site/2.2" 
"/gnu/store/9970qxhisnrr8cq4rq25zrc4698b037b-module-import" 
"/gnu/store/9970qxhisnrr8cq4rq25zrc4698b037b-module-import" 
"/run/current-system/profile/share/guile/site/2.2" 
"/gnu/store/p9wm67w3rfw3hlb9iljgvsfn84mz4w9d-guile-2.2.4/share/guile/2.2" 
"/gnu/store/p9wm67w3rfw3hlb9iljgvsfn84mz4w9d-guile-2.2.4/share/guile/site/2.2" 
"/gnu/store/p9wm67w3rfw3hlb9iljgvsfn84mz4w9d-guile-2.2.4/share/guile/site" 
"/gnu/store/p9wm67w3rfw3hlb9iljgvsfn84mz4w9d-guile-2.2.4/share/guile"))
The following derivations would be built:
    /gnu/store/14cww1f93h0zh6rylr18wsb8l16j7ipn-system.drv
    /gnu/store/qk1ninhablh8ax7633gppwj447czc04r-grub.cfg.drv
/gnu/store/jk0c7vly17k8azbpzbcpd1lrhpmk7hig-bootloader-installer.drv

However, I think that load-path of 'guix system' have nothing to do with 
config.scm. If I run 'guix system --help' with GUIX_PACKAGE_PATH 
defined, I have the output below:

# guix system --help
;;; note: source file /root/my-guix/gnu/packages/spice.scm
;;;       newer than compiled 
/gnu/store/6gjbbs9d68626j05h1ff3yya3nlizsc0-guix-e740a9022-modules/gnu/packages/spice.go
;;; note: source file /root/my-guix/gnu/packages/spice.scm
;;;       newer than compiled 
/run/current-system/profile/lib/guile/2.2/site-ccache/gnu/packages/spice.go
Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]
Build the operating system declared in FILE according to ACTION.
Some ACTIONS support additional ARGS.

The valid values for ACTION are:
   ........


Thanks,

Taegil

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

* Re: '--load-path' option not working for 'guix system' command
  2018-11-14 16:08       ` Taegil Bae
@ 2018-11-18 11:08         ` Oleg Pykhalov
  2018-11-18 20:12           ` Taegil Bae
  0 siblings, 1 reply; 7+ messages in thread
From: Oleg Pykhalov @ 2018-11-18 11:08 UTC (permalink / raw)
  To: Taegil Bae; +Cc: help-guix

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

Taegil Bae <esrevinu@gmail.com> writes:

> On 11/14/18 6:20 PM, Oleg Pykhalov wrote:
>> Could you place a (pk '%load-path %load-path) sexp before the
>> (operating-system ...) to see what does Guile load?
>
> Here is the output:
>
> # guix system reconfigure /etc/config.scm -L $HOME/my-guix -n
>
> ;;; (%load-path ("/root/my-guix"
> …
> "/gnu/store/p9wm67w3rfw3hlb9iljgvsfn84mz4w9d-guile-2.2.4/share/guile"))
>
> The following derivations would be built:
>    /gnu/store/14cww1f93h0zh6rylr18wsb8l16j7ipn-system.drv
> /gnu/store/qk1ninhablh8ax7633gppwj447czc04r-grub.cfg.drv
> /gnu/store/jk0c7vly17k8azbpzbcpd1lrhpmk7hig-bootloader-installer.drv
> /gnu/store/bp735l7fzyv86rwps1ajdap2k9gvyvr1-module-import-compiled.drv
> /gnu/store/s04i207w7k22sgl9qfss551cp3d5cgvf-gtk-icon-themes.drv
>            .....
>
> # export GUIX_PACKAGE_PATH=~/my-guix
> # guix system reconfigure /etc/config.scm -n
> ;;; note: source file /root/my-guix/gnu/packages/spice.scm
> ;;;       newer than compiled
> /gnu/store/6gjbbs9d68626j05h1ff3yya3nlizsc0-guix-e740a9022-modules/gnu/packages/spice.go
> ;;; note: source file /root/my-guix/gnu/packages/spice.scm
> ;;;       newer than compiled
> /run/current-system/profile/lib/guile/2.2/site-ccache/gnu/packages/spice.go
>
> ;;; (%load-path ("/root/my-guix"
> "/gnu/store/xykmv219fysc8rkb0bwqkkw64a37sm58-guix-e740a9022-modules"
> …
> "/gnu/store/p9wm67w3rfw3hlb9iljgvsfn84mz4w9d-guile-2.2.4/share/guile"))
> The following derivations would be built:
>    /gnu/store/14cww1f93h0zh6rylr18wsb8l16j7ipn-system.drv
>    /gnu/store/qk1ninhablh8ax7633gppwj447czc04r-grub.cfg.drv
> /gnu/store/jk0c7vly17k8azbpzbcpd1lrhpmk7hig-bootloader-installer.drv

As you could see the %load-path is the same.  So, does Guix build a
system with your modified package?

Also, could you post your modified package?  I'm interested in how did
you name a “package object” (e.g. a ‘my-foo’) and “package name”
(e.g. ‘my-hello’):

(use-modules (gnu packages base))

(define-public my-foo
  (package (inherit hello)
    (name "my-hello")
  ;; …
  ))

> However, I think that load-path of 'guix system' have nothing to do
> with config.scm. If I run 'guix system --help' with GUIX_PACKAGE_PATH
> defined, I have the output below:
>
> # guix system --help
> ;;; note: source file /root/my-guix/gnu/packages/spice.scm
> ;;;       newer than compiled
> /gnu/store/6gjbbs9d68626j05h1ff3yya3nlizsc0-guix-e740a9022-modules/gnu/packages/spice.go
> ;;; note: source file /root/my-guix/gnu/packages/spice.scm
> ;;;       newer than compiled
> /run/current-system/profile/lib/guile/2.2/site-ccache/gnu/packages/spice.go

[…]

Sorry, I don't understand what the example above should tell? From my
experience a Guile module inside %load-path is enough.

It would be helpful if you post your "/root/my-guix" directory content
(directory structure and *.scm files.  To use ‘-L’ or ‘--load-path=DIR’
with ‘guix’ commands the "/root/my-guix" should be prepared accordingly
as in [1].  Also [2] might be helpful.

[1] https://www.gnu.org/software/guix/manual/html_node/Package-Modules.html
[2] https://www.gnu.org/software/guile/manual/html_node/Using-the-Guile-Module-System.html#Using-the-Guile-Module-System

Oleg.

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

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

* Re: '--load-path' option not working for 'guix system' command
  2018-11-18 11:08         ` Oleg Pykhalov
@ 2018-11-18 20:12           ` Taegil Bae
  0 siblings, 0 replies; 7+ messages in thread
From: Taegil Bae @ 2018-11-18 20:12 UTC (permalink / raw)
  To: Oleg Pykhalov; +Cc: help-guix


[-- Attachment #1.1: Type: text/plain, Size: 3237 bytes --]

Dear Oleg,

At that time, spice-vdagent package had a bug. So I modified spice.scm to
fix it. To make it applied to the system, I put that file into
~/my-guix/gnu/packages and ran `guix system reconfigure /etc/config.scm -L
~/my-guix`. But it took long time because there were many packages to be
built without substitutes. So I just did dry-run.

Now, spice-vdagent's bug is fixed. Thus, just for test, I modified the
spice.scm in ~/my-guix/gnu/packages and try reconfiguring the system.
Spice.scm is modified as:

--- spice.scm.orig    2018-11-19 04:05:33.543753567 +0900
+++ spice.scm    2018-11-19 03:09:09.283971057 +0900
@@ -252,7 +252,7 @@
             (substitute* "data/spice-vdagent.desktop"
               (("Exec=/usr/bin/spice-vdagent")
                (string-append "Exec=" (assoc-ref outputs "out")
-                              "/bin/spice-vdagent")))
+                              "/bin/spice-vdagent\n")))
              #t)))))
     (inputs
       `(("alsa-lib" ,alsa-lib)

I have dry-run's.
[1] guix system reconfigure /etc/config.scm -n -L ~/my-guix :
with_spice_with_loadpath.log
(12K)

<https://mail.google.com/mail/u/0?ui=2&ik=f97d85874d&attid=0.1&permmsgid=msg-a:r-8845194847319360722&view=att&disp=safe&realattid=f_jona4yhn0>
[2] export GUIX_PACKAGE_PATH=~/my-guix; guix system reconfigure
/etc/config.scm -n :
with_spice_with_guix_package_path.log
(15K)
<https://mail.google.com/mail/u/0?ui=2&ik=f97d85874d&attid=0.2&permmsgid=msg-a:r-8845194847319360722&view=att&disp=safe&realattid=f_jonahgv11>

I think the two should give the same output. But as you see, those are
different. First, [1] does not have commented lines:
;;; note: source file /root/my-guix/gnu/packages/spice.scm
;;;       newer than compiled
/gnu/store/k7lvym1xl87p156jd459k36ddbb1msvm-guix-a7b7d48cc-modules/gnu/packages/spice.go
;;; note: source file /root/my-guix/gnu/packages/spice.scm
;;;       newer than compiled
/run/current-system/profile/lib/guile/2.2/site-ccache/gnu/packages/spice.go

And derivations to be built and packages to be downloaded are different.
But the same test for 'guix build' is positive.
build_with_spice_with_loadpath.log
(2K)
<https://mail.google.com/mail/u/0?ui=2&ik=f97d85874d&attid=0.4&permmsgid=msg-a:r-8845194847319360722&view=att&disp=safe&realattid=f_jonatz6i3>
build_with_spice_with_guix_package_path.log
(2K)
<https://mail.google.com/mail/u/0?ui=2&ik=f97d85874d&attid=0.3&permmsgid=msg-a:r-8845194847319360722&view=att&disp=safe&realattid=f_jonatz612>

Finally, I have real build run's.
[3] guix system reconfigure /etc/conf.scm -L ~/my-guix :
real_with_spice_with_loadpath.log
(10K)
<https://mail.google.com/mail/u/0?ui=2&ik=f97d85874d&attid=0.6&permmsgid=msg-a:r-8845194847319360722&view=att&disp=safe&realattid=f_jonazfpr5>

[4] export GUIX_PACKAGE_PATH=~/my-guix; guix system reconfigure
/etc/config.scm
real_with_spice_with_guix_package_path.log
(12K)
<https://mail.google.com/mail/u/0?ui=2&ik=f97d85874d&attid=0.5&permmsgid=msg-a:r-8845194847319360722&view=att&disp=safe&realattid=f_jonazfpe4>

Run [3] does not build spice-vdagent, but just grub.cfg. Run [4] does what
I want. Only [4] makes change in
/run/current-system/profile/etc/xdg/autostart/spice-vdagent.desktop .


Regards,

Taegil

[-- Attachment #1.2: Type: text/html, Size: 4863 bytes --]

[-- Attachment #2: with_spice_with_loadpath.log --]
[-- Type: text/x-log, Size: 12015 bytes --]

\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  33.3%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  66.7%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
The following derivations would be built:
   /gnu/store/g5rjmaz09hfx1rq61sf91xnzrx8f571y-system.drv
   /gnu/store/q4cdlqvinr16nwhvy8abnbj2fwgjv5wa-grub.cfg.drv
   /gnu/store/xmc42wbcv3vc1hznp2hca18ahs960xm5-fonts-dir.drv
   /gnu/store/q4p74p9znadsqhl26akhj77ardkhyhvq-gtk-im-modules.drv
   /gnu/store/ij2shvq53jvj6mj9h39i2pmf5yj2qgl7-xdg-desktop-database.drv
   /gnu/store/hmka84xfqllch0v9r3g61rsd0cn83mg9-gtk-icon-themes.drv
   /gnu/store/bx2ara3jcy896y23v83w5mwhkbkkbi79-xdg-mime-database.drv
   /gnu/store/a76aqr3275sc92b6z0si2v9q8v3cdhqn-info-dir.drv
   /gnu/store/7fihyq1j648xlhj06xzv609fbm611dsb-ca-certificate-bundle.drv
   /gnu/store/3drwac89rl5m8pkwqbz98ipp9znb8777-glib-schemas.drv
   /gnu/store/rva7x9v0vcdizznay2vhjabbkv9p6sl9-manual-database.drv
   /gnu/store/wy671ksif5jwg0zmafa8ag2g853vicni-profile.drv
   /gnu/store/r2hnqc5hgcpzkdiqjvmc98fwq8c15jci-geoclue-program-wrapper.drv
   /gnu/store/7lxjrywfk1qp1gd2shv93dha8sn2baiy-dbus-system-services.drv
   /gnu/store/qdl298zg6j29idi9yjrscc0fk8b9x7di-geoclue-wrapper.drv
   /gnu/store/948pxsrj8vqqnxz4apmfisms8bm2b0yb-asound.conf.drv
   /gnu/store/brma56cm1i2hxay3qrrnqx5sj9qkm5sq-dbus-configuration.drv
   /gnu/store/zgkn7ppbi5rhszif4mcqay08fhwmqnkq-etc-polkit-1.drv
   /gnu/store/wjvqpdlfp6n1q44svylnh3i1c9ccpzar-shepherd-dbus-system.scm.drv
   /gnu/store/mg2c7fv9f2pbljil4skfqvg1wzzcdk24-shepherd-wpa-supplicant.scm.drv
   /gnu/store/hgcdc5yfpvjk9jjmaahfxbya1fiy243s-shepherd-guix-daemon.scm.drv
   /gnu/store/drcy90skni9417jyvlrl3fjlvvm11swb-shepherd-ssh-daemon.scm.drv
   /gnu/store/cr7sn3dlj1271qkp2q8vxaif0xlsw35i-shepherd-avahi-daemon.scm.drv
   /gnu/store/bhzgm18q0jzfdfxcwr4ci059h6ka7c4x-shepherd-spice-vdagentd.scm.drv
   /gnu/store/b59xsalqrddzhl3bgl3qll3qh6za19k7-xserver.conf.drv
   /gnu/store/ggldx3v2abh6j615az97k4pi3i6sfs57-xorg.conf.d.drv
   /gnu/store/i08wnxac8clj1381v0rqyhrf9zkd5v4b-X-wrapper.drv
   /gnu/store/9why6szj7ilvhfjq1h8y1qdv9php3mqq-startx.drv
   /gnu/store/f3l2xv6mhwag8y2ph4lkcm2ihz25n1cr-slim.cfg.drv
   /gnu/store/7bh3bw4llm7d5lii0wm44smszjq437bv-shepherd-xorg-server.scm.drv
   /gnu/store/4676k44y20is5bf6q5l512b1l0r8d2vh-udev-rules.drv
   /gnu/store/kxafk4fbys0b0687ggn9sbwv05ykrga4-udev.conf.drv
   /gnu/store/5waa9wpw1lcdazppl74qn1iwdk2vxzsb-shepherd-udev.scm.drv
   /gnu/store/3xx2gwl5kkky420h94891jlgh6wjd75s-shepherd-ntpd.scm.drv
   /gnu/store/2y9qjcdsx2z00248hic0nria5p0087xw-shepherd-networking.scm.drv
   /gnu/store/cn78n78pbm8p6m7qdywqs4psvx8apilc-shepherd.conf.drv
   /gnu/store/v5gd5f63ag1inhfcmqp9pwjigvqyr844-activate-service.drv
   /gnu/store/qc11nms1b0ppzgk27rqchapwpkljycfr-activate-service.drv
   /gnu/store/nnq521fkgy4m42mf5r3pgm1mpnrsplfj-activate-service.drv
   /gnu/store/8zgbl8zjphaqw4mb23h9dak2j2h49v0i-activate-service.drv
   /gnu/store/85b5q3zawg9v8xr966rjayg7mwpqzhcg-activate-service.drv
   /gnu/store/by12aihhr5bpy0k42jhkj0va2c03bfx5-activate.drv
   /gnu/store/apbsjh2y5x8zlqfp5xzv1ny9vd1ks2k4-boot.drv
   /gnu/store/f6kyizyrna5rzbkb6nf5yxdhr36jz0b4-etc.drv
395.9 MB would be downloaded:
   /gnu/store/7g06piw6a3hv9wspxg2byzwkj8xfnfa0-gnome-online-accounts-3.26.2
   /gnu/store/z8g2fl41wf1m0xvjwbwqrll0zsvg0inf-libepoxy-1.5.2
   /gnu/store/sfiaz5hkrm70w3pxgysyshgwbiwa2q6s-gnome-terminal-3.28.2
   /gnu/store/yyh487lnjymii7szc3hhl0j4y9c116g0-gnome-calculator-3.26.0
   /gnu/store/zhndn09mllr78x1p4ds5xfjzacp5yyvb-yelp-3.22.0
   /gnu/store/2d1b6fdkp5pc514gbn0ncw39h0dxnwlc-gnome-control-center-3.24.3
   /gnu/store/8z7cb1rqw98gxrvxa31bmlq2awmwknm0-network-manager-1.8.4
   /gnu/store/r3whw8qrd5m15rz2njjp4nkgh9y9khhc-gnome-shell-3.24.3
   /gnu/store/09why5xdalkan6xnfqk2wfiv1p7a2jr4-gnome-settings-daemon-3.24.3
   /gnu/store/0lb5hsvfrrbx631carwrh49jiw4qfxkb-at-spi2-atk-2.26.1
   /gnu/store/bcksp84yc0rmhh24aa9ggalgyh1kjd4f-udisks-2.7.7
   /gnu/store/6ha7vdi9p5gd7j7vd17a3mjczc534qmk-gvfs-1.32.1
   /gnu/store/xsk73yn4g5pll94wy12r1fi1q77qsbwj-gucharmap-3.18.0
   /gnu/store/b7v972zdgk8vmpppshy5b6rx5kvs49ab-nautilus-3.26.2
   /gnu/store/c2g9lvsyk7askxn2s272qxrgx6xxhx8c-xterm-335
   /gnu/store/c1aw38jpcf0ymnx2wxz0gfiv9rhkyw57-gnome-bluetooth-3.20.1
   /gnu/store/w08whc6w4wpn2clz3sfg50y1prx604kj-gnome-session-3.24.1
   /gnu/store/brg3c8s1qndvhbsf5c3v4x5z4a89bhcg-at-spi2-core-2.26.2
   /gnu/store/v9f4vkl1r3igk8ly8fzam6n50ba52hah-epiphany-3.28.3.1
   /gnu/store/pxy0qcxjm7qzd83ysxykkq4i506gbbwb-gnome-disk-utility-3.28.3
   /gnu/store/8k4hk3c5cayznspvgjgh5hqyi67ygmnk-gnome-themes-standard-3.22.3
   /gnu/store/2ywa3l5vp8fna3jr3i8hn1bp2774v340-gnome-keyring-3.20.1
   /gnu/store/xp2vg90paj43lzwlys2d2p9hpjfjzhvn-pinentry-gnome3-1.1.0
   /gnu/store/x6df79hbwsba1p0x64d6bk4rq92lm1g8-gedit-3.28.1
   /gnu/store/b4vn2a64r7cnjhm5s4grp8552fpp4vyh-spice-vdagent-0.17.0
   /gnu/store/z4y2mjq56mhp5f6ya0ynf6mcw1xjhjx1-guile-git-0.1.0
   /gnu/store/39bl389h08p59yrhcgkk167jrrimwxnh-baobab-3.28.0
   /gnu/store/y0dk4c0fys4l2gl9rpbc095f83xq4015-libvdpau-1.1.1
   /gnu/store/34zfrryjgi13r7kry7xdadjsdpw8dgqb-gnome-system-monitor-3.26.0
   /gnu/store/b5wlz3iqlyalfg6w3wkmccs4mj7jzld8-gst-plugins-good-1.14.2
   /gnu/store/9hycpmdxi91j3njvhd0nwvy1fca2fpdb-file-roller-3.26.2
   /gnu/store/0ng5j7asbsr2rl672h8fi83afhaypn4r-eog-3.26.2
   /gnu/store/rbhn1x10ynr9afwwcgsl6k6sqc1ds1n3-guile-ssh-0.11.3
   /gnu/store/1p9xf28sn4wkq8pd7yiwbi3bljc0198m-totem-3.26.2
   /gnu/store/nz9jqzsby5hjf1bh27xnk04zsglr86my-wpa-supplicant-2.6
   /gnu/store/jdcrw22drwaq0gzs6j49dvq8zx76i648-dconf-0.28.0
   /gnu/store/42kpv3wi0m1skrlc3jkag31r7ca717mb-zenity-3.24.0
   /gnu/store/l5khfqlws53r2vw09vjhlzzcfjvrp81x-guix-0.15.0-7.f5a2724
   /gnu/store/rs4cs6fd8pp8bkcabd02p5ww9zbnsm26-gtk+-3.22.30
   /gnu/store/jpk14hv2qp4wkjki599mdg0cahwik0ny-guile-gcrypt-0.1.0
   /gnu/store/x858q83p059yp8rr37ipz1n74kvy2jp3-evince-3.28.2
   /gnu/store/65ry5hzw7zmid24lic13h3q0rkxxyzkw-gdk-pixbuf+svg-2.36.12
   /gnu/store/2anx40r33axpmis7ajzbw24idqkrs8jf-gtk+-3.22.30-bin
   /gnu/store/1dfhv8fz9qvsa42rp1qrzcfmhkyb6whg-texinfo-6.5
   /gnu/store/6965c7v6zcx9jbq3jq9dva1zs14yp1bk-colord-1.1.8
   /gnu/store/79saf87kmv6jxrmc601k0yz0dq196281-polkit-0.115
   /gnu/store/17gwjynpq8ii1z1nm4jf7w0422bsjd2b-accountsservice-0.6.50
   /gnu/store/w78yjz2q84pkq9gq3q117jqrhyyr7z90-geoclue-2.4.8
   /gnu/store/1cy85cv15wygldplgfsi8ff2rcx13ly7-alsa-plugins-1.1.6-pulseaudio
   /gnu/store/90m4zxb5825ykplhj23zsmpkfv9n9g78-xf86-input-keyboard-1.9.0
   /gnu/store/d2vqn6ww3p5vxwbbhgw97k53k3rkasbg-xf86-input-libinput-0.28.1
   /gnu/store/1qf1g6pdczvayhb0bd9220hka4gzqadl-xf86-video-intel-2.99.917-11.0932a6b
   /gnu/store/hvcrkcc2yxafxdw31xs51w8kj3h9zj43-xf86-video-nouveau-1.0.15
   /gnu/store/lbjs68k69rs0pbi2310499ak9laglqd3-xf86-input-synaptics-1.9.1
   /gnu/store/h4k120qpj56h6l2a0z0q8yd0z9jbmb5d-xf86-video-ati-18.0.1
   /gnu/store/4hnmr9hikg4nv1lgdq54q7gvphya0jm7-xorg-server-1.20.3
   /gnu/store/gi6ik34wlgc59v1n9pl1xbh5yngyba8y-xkbcomp-1.4.2
   /gnu/store/dnzf5lsx0ips0jcpnhljcdxzn8q5sra5-slim-1.3.6
   /gnu/store/k1yv90a22y5pbbls5ajvdk6pfva7rqa6-libmtp-1.1.16
   /gnu/store/sxqh5im602kcpj64jq3sy3zmixpppwjc-ntp-4.2.8p12
   /gnu/store/b51ms1vl108ph9l9s6bkjj1ycn69swzw-slock-1.4
   /gnu/store/hz0xirig5n5hsc0f0arkrgd322gbbini-xlockmore-5.56
   /gnu/store/a83fchxia3kvzx9shig9rrm1jyg6zawb-grub-image.png
   /gnu/store/h0yic8aj1wid5ac7axnzcabkajycyh0f-webkitgtk-2.20.5
   /gnu/store/rdgc0vg1mx22dzdsglmx40ji2487gzh6-libsecret-0.18.6
   /gnu/store/7mm0vpaxqdsg7gb3s6grz4yyifzqyvhf-vte-0.52.2
   /gnu/store/3mj92l34rd2mwgbyb4m6s58k7hi1qsyh-gtksourceview-3.24.8
   /gnu/store/3lnragyxrv7vzzsnpqi7np8yd46xxqik-libxslt-1.1.32
   /gnu/store/046xyh5ap45mrcrsb18l02qrmyfcia2y-libcanberra-0.30
   /gnu/store/2282vf7x8k1f7cb9fql44jlac64dnp1n-clutter-gtk-1.8.4
   /gnu/store/33r8r1bm89z0l6px9y67rj8090f9aaf0-samba-4.8.6
   /gnu/store/8kfqhyk9qgb53n6b2qqy7sh33n6zygn6-colord-gtk-0.1.26
   /gnu/store/alfzkhzlwkk1gbb7jyz6yjry6rjrjk75-network-manager-applet-1.8.4
   /gnu/store/bk14ahi37d51cbcajcghsb92bmjq5rm5-libwacom-0.31
   /gnu/store/crj5wvknd1bcw17x425pvq4i3pahf24b-cogl-1.22.2
   /gnu/store/csw9348avnjczgm3cm5vys8k1nsyzma4-ibus-1.5.19
   /gnu/store/gwd2qaj54prjzwjcx0ljz1cblca0gxb9-grilo-0.3.3
   /gnu/store/iczzdr3a4zb141ayxnaaixbj1kp7qs56-gnome-desktop-3.24.2
   /gnu/store/l1m5camvpfz2wwx5k56js19wbvp9p5r0-clutter-1.26.2
   /gnu/store/n10savb9bjsgq5z61kdmdkjd8cmfzc18-modem-manager-1.4.14
   /gnu/store/qa2r6y8vjnlyyh85plna5dq984i07ziv-libnotify-0.7.7
   /gnu/store/r7k91d7z4w3ahks4y7gg7vgci6xsx2mf-cups-2.2.6
   /gnu/store/2m82y1127n5bx5wd3nbqq0kcgjkhv7zz-dnsmasq-2.80
   /gnu/store/slh44nkdrxyvpif3dpx1h1dsb6frsd0g-dbus-glib-0.108
   /gnu/store/04dr9902qdijkqm41f7vnsggw9cad9vc-gobject-introspection-1.56.0
   /gnu/store/0anyqqmnd174i2i8c1sfqzplj845nnq3-evolution-data-server-3.28.1
   /gnu/store/6snv4v7h69n2zlhxyrr7aph7jlprkcw2-startup-notification-0.12
   /gnu/store/7m22alc0ps4df2lkhyxbwpd0lhbsh4kv-libinput-1.11.3
   /gnu/store/7sb06j5sb85jp7lkpi1a6480iq35caxi-gjs-1.48.6
   /gnu/store/ddy3j0w4p4389x7zwnp55z5fz43d0m95-libxklavier-5.3
   /gnu/store/hcp41kg6jx7clgwkgrp394ijb665wri4-gdm-3.26.2.1
   /gnu/store/hxmim39dkyfkhfj9sn2xzb048nbmnjqq-gcr-3.20.0
   /gnu/store/jp24fmy3n1pn2dpfixg6yi099f9pbnnx-mutter-3.24.4
   /gnu/store/jpwhk27vxd2q7i3izripjijwjp39aa0r-libgweather-3.26.1
   /gnu/store/m5i9h9lbgl7y97ylmv9i19xn30ls2gks-python-pygobject-3.28.2
   /gnu/store/rbjc5ziqrq44vkla6w1c18kmr04yx1x9-telepathy-logger-0.8.2
   /gnu/store/rcd7b7j28k68pmhbaiinq83g7d93il4f-mozjs-38.2.1.rc0
   /gnu/store/x59qi4jqhishxix0ysmblyb9fpyik4s3-caribou-0.4.21
   /gnu/store/xxsa32hyvcdhkjxyg03slkx6l3yykhmh-telepathy-glib-0.24.1
   /gnu/store/8wrchxzdpkidadnzf8cva7lcbawp5207-nss-3.39
   /gnu/store/sdzridg3x1kvwcrw6w1qcjw4iac3z8rl-nspr-4.20
   /gnu/store/27r89k6lbkq2j821sphwnmj2adwiq1jg-libblockdev-2.20
   /gnu/store/cyb2yxhj111p5ghv6yw2dhn7lsg4nfsl-cryptsetup-1.7.5
   /gnu/store/2knxzw823chgq9rwd0b7x972n4xhybdf-libbluray-1.0.2
   /gnu/store/4lp6wijz714kz51iygmj03r95vmnabla-tracker-1.12.3
   /gnu/store/i8ri5f23rlhl0zgj0x54d6ai5visydm1-gnome-autoar-0.2.3
   /gnu/store/pn50b39xgjdjrzffgjjdmi8zh9px1z25-libselinux-2.7
   /gnu/store/fxh7qlhf1wff5nik69yfvvnmzxgk6djm-libxaw-1.0.13
   /gnu/store/liiz2wdij6qiqlndnv7p164iwn8xsyzk-libxpm-3.5.12
   /gnu/store/rdiwmvhccj8caz1562m5akxyzk33bjps-webkitgtk-2.22.3
   /gnu/store/vd3srzcqxgcfs0xc6dj63kwslr89bxin-gtk+-2.24.32
   /gnu/store/0ifxqkdwxpwjran68qj5f88c9rhwwcfn-aspell-0.60.6.1
   /gnu/store/8yh0qsa2aqxl8w7r8kn5a3p0w7llh2hb-libpeas-1.22.0
   /gnu/store/q17qlkbgjc6xph49jkm34byz89j05qff-gspell-1.8.1
   /gnu/store/ywdi22zf5qli4b7lpwqyxah2jkm53j49-enchant-2.2.3
   /gnu/store/p59jpzg20rpzd06jpzii9dbd088f7z05-libgit2-0.26.8
   /gnu/store/0f5mz7ffjwjwbnkw22ayaj28zly5khdh-cairomm-1.12.2
   /gnu/store/7ziwayklsdn7gkkk2zgsn1s6rf2h2li4-pangomm-2.40.1
   /gnu/store/9m0hp4477j5n65zi6c328ha9z011axna-gtkmm-3.22.2
   /gnu/store/8w6ns2qg0p8fw39inyaaka8m7h630k0k-libcaca-0.99.beta19
   /gnu/store/j44j0ps7m9ym9i5hdwhwjf1ccr9k52iq-mpg123-1.25.10
   /gnu/store/xvcc6zwnsal628z7jmpvpbl2ag0llw3k-ftgl-2.1.3-rc5
   /gnu/store/yrr4kli2c1khmki8x4snizqjyllzwih5-glu-9.0.0
   /gnu/store/vb0zydrh758h3c7d9g192c12wh7x4qjn-libssh-0.7.7
   /gnu/store/0wjxld3iak0l4400jdnifa0wnchggcb5-totem-pl-parser-3.10.8
   /gnu/store/aymlihiinwp7sb4fdz556vgs7z2am2jj-clutter-gst-3.0.26
   /gnu/store/l77x4kdpn4yha3gqch4i9mnsdx80i2vb-grilo-plugins-0.3.3
   /gnu/store/zfgq07cb8zbn1j61r5vvcq6bf2ipiv41-lirc-0.10.1
   /gnu/store/hz7f8sv845sr0zn89i6aga1mwm6jqcss-python2-dogtail-0.9.9
   /gnu/store/x0dba3i4akjw5nxpr7jzjdi3argklndg-libgxps-0.3.0
   /gnu/store/6zz27h4l21b8f2mifrk9sidvib9cns2i-perl-5.26.1
   /gnu/store/jw72cikzmlbr4cq7iry65z3i89xfrfyy-sane-backends-1.0.27
   /gnu/store/ps3gwjqd73hd1mpjrf9d2g1zgrhspwpx-mozjs-52.0-1.6507e63
   /gnu/store/4jxh7rd5p1667hnagzrxw4q4a9mmvbwm-libevent-2.1.8

[-- Attachment #3: with_spice_with_guix_package_path.log --]
[-- Type: text/x-log, Size: 14358 bytes --]

;;; note: source file /root/my-guix/gnu/packages/spice.scm
;;;       newer than compiled /gnu/store/k7lvym1xl87p156jd459k36ddbb1msvm-guix-a7b7d48cc-modules/gnu/packages/spice.go
;;; note: source file /root/my-guix/gnu/packages/spice.scm
;;;       newer than compiled /run/current-system/profile/lib/guile/2.2/site-ccache/gnu/packages/spice.go
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   5.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  10.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  15.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  20.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  25.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  30.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  35.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  40.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  45.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  50.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  55.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  60.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  65.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  70.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  75.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  80.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  85.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  90.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  95.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
The following derivations would be built:
   /gnu/store/lck78x4g8jqc0hcgcjhqj0x9vp6f8pby-system.drv
   /gnu/store/7ziwdszap9nkh3jsq7ayqmxv0b8ngf2a-grub.cfg.drv
   /gnu/store/znc02bq46wczjxj26yy78z1xh3p6k8q6-fonts-dir.drv
   /gnu/store/yjxqqcrhp4wxdfv8pdmqrhnx28z86c6x-xdg-desktop-database.drv
   /gnu/store/xnvyv6l5h30syd6y47vy6y6c3ld4vjsm-xdg-mime-database.drv
   /gnu/store/xmfa91z51sq1pw4d7k2chq5a5yhf5pvi-gtk-icon-themes.drv
   /gnu/store/syj7l724kygjy4m4k56iw96gv9jcip9c-info-dir.drv
   /gnu/store/kgxnbxpwckqkmvdpxa4g8qmdd1r5a06i-ca-certificate-bundle.drv
   /gnu/store/j15bp4akrvcpj5zlfjx4hakq508pk0hz-gtk-im-modules.drv
   /gnu/store/6gqw7dhdfwx90b5x8kbnhkjg8fhigscn-glib-schemas.drv
   /gnu/store/k44g18pxzivsfxvxlzk8456dk4xig727-manual-database.drv
   /gnu/store/vprvmvn8siqzvfahflyckaqb3wamlqri-profile.drv
   /gnu/store/r2hnqc5hgcpzkdiqjvmc98fwq8c15jci-geoclue-program-wrapper.drv
   /gnu/store/7lxjrywfk1qp1gd2shv93dha8sn2baiy-dbus-system-services.drv
   /gnu/store/qdl298zg6j29idi9yjrscc0fk8b9x7di-geoclue-wrapper.drv
   /gnu/store/948pxsrj8vqqnxz4apmfisms8bm2b0yb-asound.conf.drv
   /gnu/store/brma56cm1i2hxay3qrrnqx5sj9qkm5sq-dbus-configuration.drv
   /gnu/store/zgkn7ppbi5rhszif4mcqay08fhwmqnkq-etc-polkit-1.drv
   /gnu/store/wjvqpdlfp6n1q44svylnh3i1c9ccpzar-shepherd-dbus-system.scm.drv
   /gnu/store/mg2c7fv9f2pbljil4skfqvg1wzzcdk24-shepherd-wpa-supplicant.scm.drv
   /gnu/store/hgcdc5yfpvjk9jjmaahfxbya1fiy243s-shepherd-guix-daemon.scm.drv
   /gnu/store/vjwi7fjxmqzdhp7d72x0hvvggl60xh9c-spice-vdagent-0.17.0.drv
   /gnu/store/dswr8x8xy4sl7y2rqgs48h5dv4jwiz5z-shepherd-spice-vdagentd.scm.drv
   /gnu/store/drcy90skni9417jyvlrl3fjlvvm11swb-shepherd-ssh-daemon.scm.drv
   /gnu/store/cr7sn3dlj1271qkp2q8vxaif0xlsw35i-shepherd-avahi-daemon.scm.drv
   /gnu/store/b59xsalqrddzhl3bgl3qll3qh6za19k7-xserver.conf.drv
   /gnu/store/ggldx3v2abh6j615az97k4pi3i6sfs57-xorg.conf.d.drv
   /gnu/store/i08wnxac8clj1381v0rqyhrf9zkd5v4b-X-wrapper.drv
   /gnu/store/9why6szj7ilvhfjq1h8y1qdv9php3mqq-startx.drv
   /gnu/store/f3l2xv6mhwag8y2ph4lkcm2ihz25n1cr-slim.cfg.drv
   /gnu/store/7bh3bw4llm7d5lii0wm44smszjq437bv-shepherd-xorg-server.scm.drv
   /gnu/store/4676k44y20is5bf6q5l512b1l0r8d2vh-udev-rules.drv
   /gnu/store/kxafk4fbys0b0687ggn9sbwv05ykrga4-udev.conf.drv
   /gnu/store/5waa9wpw1lcdazppl74qn1iwdk2vxzsb-shepherd-udev.scm.drv
   /gnu/store/3xx2gwl5kkky420h94891jlgh6wjd75s-shepherd-ntpd.scm.drv
   /gnu/store/2y9qjcdsx2z00248hic0nria5p0087xw-shepherd-networking.scm.drv
   /gnu/store/c8a4a6dr4aqd236lc6a8k1qbid41skkd-shepherd.conf.drv
   /gnu/store/v5gd5f63ag1inhfcmqp9pwjigvqyr844-activate-service.drv
   /gnu/store/qc11nms1b0ppzgk27rqchapwpkljycfr-activate-service.drv
   /gnu/store/nnq521fkgy4m42mf5r3pgm1mpnrsplfj-activate-service.drv
   /gnu/store/8zgbl8zjphaqw4mb23h9dak2j2h49v0i-activate-service.drv
   /gnu/store/85b5q3zawg9v8xr966rjayg7mwpqzhcg-activate-service.drv
   /gnu/store/by12aihhr5bpy0k42jhkj0va2c03bfx5-activate.drv
   /gnu/store/21z8iy0h89f08m2iijz1mf3yzvg39z4j-boot.drv
   /gnu/store/f6kyizyrna5rzbkb6nf5yxdhr36jz0b4-etc.drv
419.4 MB would be downloaded:
   /gnu/store/7g06piw6a3hv9wspxg2byzwkj8xfnfa0-gnome-online-accounts-3.26.2
   /gnu/store/z8g2fl41wf1m0xvjwbwqrll0zsvg0inf-libepoxy-1.5.2
   /gnu/store/sfiaz5hkrm70w3pxgysyshgwbiwa2q6s-gnome-terminal-3.28.2
   /gnu/store/yyh487lnjymii7szc3hhl0j4y9c116g0-gnome-calculator-3.26.0
   /gnu/store/zhndn09mllr78x1p4ds5xfjzacp5yyvb-yelp-3.22.0
   /gnu/store/2d1b6fdkp5pc514gbn0ncw39h0dxnwlc-gnome-control-center-3.24.3
   /gnu/store/8z7cb1rqw98gxrvxa31bmlq2awmwknm0-network-manager-1.8.4
   /gnu/store/r3whw8qrd5m15rz2njjp4nkgh9y9khhc-gnome-shell-3.24.3
   /gnu/store/09why5xdalkan6xnfqk2wfiv1p7a2jr4-gnome-settings-daemon-3.24.3
   /gnu/store/0lb5hsvfrrbx631carwrh49jiw4qfxkb-at-spi2-atk-2.26.1
   /gnu/store/bcksp84yc0rmhh24aa9ggalgyh1kjd4f-udisks-2.7.7
   /gnu/store/6ha7vdi9p5gd7j7vd17a3mjczc534qmk-gvfs-1.32.1
   /gnu/store/xsk73yn4g5pll94wy12r1fi1q77qsbwj-gucharmap-3.18.0
   /gnu/store/b7v972zdgk8vmpppshy5b6rx5kvs49ab-nautilus-3.26.2
   /gnu/store/c2g9lvsyk7askxn2s272qxrgx6xxhx8c-xterm-335
   /gnu/store/c1aw38jpcf0ymnx2wxz0gfiv9rhkyw57-gnome-bluetooth-3.20.1
   /gnu/store/w08whc6w4wpn2clz3sfg50y1prx604kj-gnome-session-3.24.1
   /gnu/store/brg3c8s1qndvhbsf5c3v4x5z4a89bhcg-at-spi2-core-2.26.2
   /gnu/store/v9f4vkl1r3igk8ly8fzam6n50ba52hah-epiphany-3.28.3.1
   /gnu/store/pxy0qcxjm7qzd83ysxykkq4i506gbbwb-gnome-disk-utility-3.28.3
   /gnu/store/8k4hk3c5cayznspvgjgh5hqyi67ygmnk-gnome-themes-standard-3.22.3
   /gnu/store/2ywa3l5vp8fna3jr3i8hn1bp2774v340-gnome-keyring-3.20.1
   /gnu/store/xp2vg90paj43lzwlys2d2p9hpjfjzhvn-pinentry-gnome3-1.1.0
   /gnu/store/x6df79hbwsba1p0x64d6bk4rq92lm1g8-gedit-3.28.1
   /gnu/store/z4y2mjq56mhp5f6ya0ynf6mcw1xjhjx1-guile-git-0.1.0
   /gnu/store/39bl389h08p59yrhcgkk167jrrimwxnh-baobab-3.28.0
   /gnu/store/y0dk4c0fys4l2gl9rpbc095f83xq4015-libvdpau-1.1.1
   /gnu/store/34zfrryjgi13r7kry7xdadjsdpw8dgqb-gnome-system-monitor-3.26.0
   /gnu/store/b5wlz3iqlyalfg6w3wkmccs4mj7jzld8-gst-plugins-good-1.14.2
   /gnu/store/9hycpmdxi91j3njvhd0nwvy1fca2fpdb-file-roller-3.26.2
   /gnu/store/0ng5j7asbsr2rl672h8fi83afhaypn4r-eog-3.26.2
   /gnu/store/rbhn1x10ynr9afwwcgsl6k6sqc1ds1n3-guile-ssh-0.11.3
   /gnu/store/1p9xf28sn4wkq8pd7yiwbi3bljc0198m-totem-3.26.2
   /gnu/store/nz9jqzsby5hjf1bh27xnk04zsglr86my-wpa-supplicant-2.6
   /gnu/store/jdcrw22drwaq0gzs6j49dvq8zx76i648-dconf-0.28.0
   /gnu/store/42kpv3wi0m1skrlc3jkag31r7ca717mb-zenity-3.24.0
   /gnu/store/l5khfqlws53r2vw09vjhlzzcfjvrp81x-guix-0.15.0-7.f5a2724
   /gnu/store/rs4cs6fd8pp8bkcabd02p5ww9zbnsm26-gtk+-3.22.30
   /gnu/store/jpk14hv2qp4wkjki599mdg0cahwik0ny-guile-gcrypt-0.1.0
   /gnu/store/x858q83p059yp8rr37ipz1n74kvy2jp3-evince-3.28.2
   /gnu/store/65ry5hzw7zmid24lic13h3q0rkxxyzkw-gdk-pixbuf+svg-2.36.12
   /gnu/store/2anx40r33axpmis7ajzbw24idqkrs8jf-gtk+-3.22.30-bin
   /gnu/store/1dfhv8fz9qvsa42rp1qrzcfmhkyb6whg-texinfo-6.5
   /gnu/store/6965c7v6zcx9jbq3jq9dva1zs14yp1bk-colord-1.1.8
   /gnu/store/79saf87kmv6jxrmc601k0yz0dq196281-polkit-0.115
   /gnu/store/17gwjynpq8ii1z1nm4jf7w0422bsjd2b-accountsservice-0.6.50
   /gnu/store/w78yjz2q84pkq9gq3q117jqrhyyr7z90-geoclue-2.4.8
   /gnu/store/1cy85cv15wygldplgfsi8ff2rcx13ly7-alsa-plugins-1.1.6-pulseaudio
   /gnu/store/nx21fqlb8jixwhbs83xlfp9a3h5p3g9a-make-4.2.1
   /gnu/store/28j025sr93kx2yghnwza2s4p556ls0hv-spice-protocol-0.12.14
   /gnu/store/srmqh29dpm50j8kj1pbqg2rgh053wgyp-binutils-2.30
   /gnu/store/f95ghy8mx00fc22nrvswvnpqlfdkf2nk-module-import
   /gnu/store/6w4x24a4i8ssgf147a7yhp6ppickr2nr-linux-libre-headers-4.14.26
   /gnu/store/jvh33x79acqdpq186c2rf27mavpf0j6r-spice-vdagent-0.17.0.tar.bz2
   /gnu/store/achc8l1lg4am9b51z1k97d8bn1qcz2x4-module-import-compiled
   /gnu/store/ki1m42g3s2lav4mr3xjscg1bbdrqd5yz-glibc-utf8-locales-2.27
   /gnu/store/b5x786d3h552j2zp4ppvlz9dkbiqy2ng-ld-wrapper-0
   /gnu/store/90m4zxb5825ykplhj23zsmpkfv9n9g78-xf86-input-keyboard-1.9.0
   /gnu/store/d2vqn6ww3p5vxwbbhgw97k53k3rkasbg-xf86-input-libinput-0.28.1
   /gnu/store/1qf1g6pdczvayhb0bd9220hka4gzqadl-xf86-video-intel-2.99.917-11.0932a6b
   /gnu/store/hvcrkcc2yxafxdw31xs51w8kj3h9zj43-xf86-video-nouveau-1.0.15
   /gnu/store/lbjs68k69rs0pbi2310499ak9laglqd3-xf86-input-synaptics-1.9.1
   /gnu/store/h4k120qpj56h6l2a0z0q8yd0z9jbmb5d-xf86-video-ati-18.0.1
   /gnu/store/4hnmr9hikg4nv1lgdq54q7gvphya0jm7-xorg-server-1.20.3
   /gnu/store/gi6ik34wlgc59v1n9pl1xbh5yngyba8y-xkbcomp-1.4.2
   /gnu/store/dnzf5lsx0ips0jcpnhljcdxzn8q5sra5-slim-1.3.6
   /gnu/store/k1yv90a22y5pbbls5ajvdk6pfva7rqa6-libmtp-1.1.16
   /gnu/store/sxqh5im602kcpj64jq3sy3zmixpppwjc-ntp-4.2.8p12
   /gnu/store/b51ms1vl108ph9l9s6bkjj1ycn69swzw-slock-1.4
   /gnu/store/hz0xirig5n5hsc0f0arkrgd322gbbini-xlockmore-5.56
   /gnu/store/a83fchxia3kvzx9shig9rrm1jyg6zawb-grub-image.png
   /gnu/store/h0yic8aj1wid5ac7axnzcabkajycyh0f-webkitgtk-2.20.5
   /gnu/store/rdgc0vg1mx22dzdsglmx40ji2487gzh6-libsecret-0.18.6
   /gnu/store/7mm0vpaxqdsg7gb3s6grz4yyifzqyvhf-vte-0.52.2
   /gnu/store/3mj92l34rd2mwgbyb4m6s58k7hi1qsyh-gtksourceview-3.24.8
   /gnu/store/3lnragyxrv7vzzsnpqi7np8yd46xxqik-libxslt-1.1.32
   /gnu/store/046xyh5ap45mrcrsb18l02qrmyfcia2y-libcanberra-0.30
   /gnu/store/2282vf7x8k1f7cb9fql44jlac64dnp1n-clutter-gtk-1.8.4
   /gnu/store/33r8r1bm89z0l6px9y67rj8090f9aaf0-samba-4.8.6
   /gnu/store/8kfqhyk9qgb53n6b2qqy7sh33n6zygn6-colord-gtk-0.1.26
   /gnu/store/alfzkhzlwkk1gbb7jyz6yjry6rjrjk75-network-manager-applet-1.8.4
   /gnu/store/bk14ahi37d51cbcajcghsb92bmjq5rm5-libwacom-0.31
   /gnu/store/crj5wvknd1bcw17x425pvq4i3pahf24b-cogl-1.22.2
   /gnu/store/csw9348avnjczgm3cm5vys8k1nsyzma4-ibus-1.5.19
   /gnu/store/gwd2qaj54prjzwjcx0ljz1cblca0gxb9-grilo-0.3.3
   /gnu/store/iczzdr3a4zb141ayxnaaixbj1kp7qs56-gnome-desktop-3.24.2
   /gnu/store/l1m5camvpfz2wwx5k56js19wbvp9p5r0-clutter-1.26.2
   /gnu/store/n10savb9bjsgq5z61kdmdkjd8cmfzc18-modem-manager-1.4.14
   /gnu/store/qa2r6y8vjnlyyh85plna5dq984i07ziv-libnotify-0.7.7
   /gnu/store/r7k91d7z4w3ahks4y7gg7vgci6xsx2mf-cups-2.2.6
   /gnu/store/2m82y1127n5bx5wd3nbqq0kcgjkhv7zz-dnsmasq-2.80
   /gnu/store/slh44nkdrxyvpif3dpx1h1dsb6frsd0g-dbus-glib-0.108
   /gnu/store/04dr9902qdijkqm41f7vnsggw9cad9vc-gobject-introspection-1.56.0
   /gnu/store/0anyqqmnd174i2i8c1sfqzplj845nnq3-evolution-data-server-3.28.1
   /gnu/store/6snv4v7h69n2zlhxyrr7aph7jlprkcw2-startup-notification-0.12
   /gnu/store/7m22alc0ps4df2lkhyxbwpd0lhbsh4kv-libinput-1.11.3
   /gnu/store/7sb06j5sb85jp7lkpi1a6480iq35caxi-gjs-1.48.6
   /gnu/store/ddy3j0w4p4389x7zwnp55z5fz43d0m95-libxklavier-5.3
   /gnu/store/hcp41kg6jx7clgwkgrp394ijb665wri4-gdm-3.26.2.1
   /gnu/store/hxmim39dkyfkhfj9sn2xzb048nbmnjqq-gcr-3.20.0
   /gnu/store/jp24fmy3n1pn2dpfixg6yi099f9pbnnx-mutter-3.24.4
   /gnu/store/jpwhk27vxd2q7i3izripjijwjp39aa0r-libgweather-3.26.1
   /gnu/store/m5i9h9lbgl7y97ylmv9i19xn30ls2gks-python-pygobject-3.28.2
   /gnu/store/rbjc5ziqrq44vkla6w1c18kmr04yx1x9-telepathy-logger-0.8.2
   /gnu/store/rcd7b7j28k68pmhbaiinq83g7d93il4f-mozjs-38.2.1.rc0
   /gnu/store/x59qi4jqhishxix0ysmblyb9fpyik4s3-caribou-0.4.21
   /gnu/store/xxsa32hyvcdhkjxyg03slkx6l3yykhmh-telepathy-glib-0.24.1
   /gnu/store/8wrchxzdpkidadnzf8cva7lcbawp5207-nss-3.39
   /gnu/store/sdzridg3x1kvwcrw6w1qcjw4iac3z8rl-nspr-4.20
   /gnu/store/27r89k6lbkq2j821sphwnmj2adwiq1jg-libblockdev-2.20
   /gnu/store/cyb2yxhj111p5ghv6yw2dhn7lsg4nfsl-cryptsetup-1.7.5
   /gnu/store/2knxzw823chgq9rwd0b7x972n4xhybdf-libbluray-1.0.2
   /gnu/store/4lp6wijz714kz51iygmj03r95vmnabla-tracker-1.12.3
   /gnu/store/i8ri5f23rlhl0zgj0x54d6ai5visydm1-gnome-autoar-0.2.3
   /gnu/store/pn50b39xgjdjrzffgjjdmi8zh9px1z25-libselinux-2.7
   /gnu/store/fxh7qlhf1wff5nik69yfvvnmzxgk6djm-libxaw-1.0.13
   /gnu/store/liiz2wdij6qiqlndnv7p164iwn8xsyzk-libxpm-3.5.12
   /gnu/store/rdiwmvhccj8caz1562m5akxyzk33bjps-webkitgtk-2.22.3
   /gnu/store/vd3srzcqxgcfs0xc6dj63kwslr89bxin-gtk+-2.24.32
   /gnu/store/0ifxqkdwxpwjran68qj5f88c9rhwwcfn-aspell-0.60.6.1
   /gnu/store/8yh0qsa2aqxl8w7r8kn5a3p0w7llh2hb-libpeas-1.22.0
   /gnu/store/q17qlkbgjc6xph49jkm34byz89j05qff-gspell-1.8.1
   /gnu/store/ywdi22zf5qli4b7lpwqyxah2jkm53j49-enchant-2.2.3
   /gnu/store/p59jpzg20rpzd06jpzii9dbd088f7z05-libgit2-0.26.8
   /gnu/store/0f5mz7ffjwjwbnkw22ayaj28zly5khdh-cairomm-1.12.2
   /gnu/store/7ziwayklsdn7gkkk2zgsn1s6rf2h2li4-pangomm-2.40.1
   /gnu/store/9m0hp4477j5n65zi6c328ha9z011axna-gtkmm-3.22.2
   /gnu/store/8w6ns2qg0p8fw39inyaaka8m7h630k0k-libcaca-0.99.beta19
   /gnu/store/j44j0ps7m9ym9i5hdwhwjf1ccr9k52iq-mpg123-1.25.10
   /gnu/store/xvcc6zwnsal628z7jmpvpbl2ag0llw3k-ftgl-2.1.3-rc5
   /gnu/store/yrr4kli2c1khmki8x4snizqjyllzwih5-glu-9.0.0
   /gnu/store/vb0zydrh758h3c7d9g192c12wh7x4qjn-libssh-0.7.7
   /gnu/store/0wjxld3iak0l4400jdnifa0wnchggcb5-totem-pl-parser-3.10.8
   /gnu/store/aymlihiinwp7sb4fdz556vgs7z2am2jj-clutter-gst-3.0.26
   /gnu/store/l77x4kdpn4yha3gqch4i9mnsdx80i2vb-grilo-plugins-0.3.3
   /gnu/store/zfgq07cb8zbn1j61r5vvcq6bf2ipiv41-lirc-0.10.1
   /gnu/store/hz7f8sv845sr0zn89i6aga1mwm6jqcss-python2-dogtail-0.9.9
   /gnu/store/x0dba3i4akjw5nxpr7jzjdi3argklndg-libgxps-0.3.0
   /gnu/store/6zz27h4l21b8f2mifrk9sidvib9cns2i-perl-5.26.1
   /gnu/store/jw72cikzmlbr4cq7iry65z3i89xfrfyy-sane-backends-1.0.27
   /gnu/store/ps3gwjqd73hd1mpjrf9d2g1zgrhspwpx-mozjs-52.0-1.6507e63
   /gnu/store/4jxh7rd5p1667hnagzrxw4q4a9mmvbwm-libevent-2.1.8

[-- Attachment #4: build_with_spice_with_guix_package_path.log --]
[-- Type: text/x-log, Size: 1088 bytes --]

;;; note: source file /root/my-guix/gnu/packages/spice.scm
;;;       newer than compiled /gnu/store/k7lvym1xl87p156jd459k36ddbb1msvm-guix-a7b7d48cc-modules/gnu/packages/spice.go
;;; note: source file /root/my-guix/gnu/packages/spice.scm
;;;       newer than compiled /run/current-system/profile/lib/guile/2.2/site-ccache/gnu/packages/spice.go
The following derivation would be built:
   /gnu/store/vjwi7fjxmqzdhp7d72x0hvvggl60xh9c-spice-vdagent-0.17.0.drv
23.5 MB would be downloaded:
   /gnu/store/nx21fqlb8jixwhbs83xlfp9a3h5p3g9a-make-4.2.1
   /gnu/store/28j025sr93kx2yghnwza2s4p556ls0hv-spice-protocol-0.12.14
   /gnu/store/srmqh29dpm50j8kj1pbqg2rgh053wgyp-binutils-2.30
   /gnu/store/f95ghy8mx00fc22nrvswvnpqlfdkf2nk-module-import
   /gnu/store/6w4x24a4i8ssgf147a7yhp6ppickr2nr-linux-libre-headers-4.14.26
   /gnu/store/jvh33x79acqdpq186c2rf27mavpf0j6r-spice-vdagent-0.17.0.tar.bz2
   /gnu/store/achc8l1lg4am9b51z1k97d8bn1qcz2x4-module-import-compiled
   /gnu/store/ki1m42g3s2lav4mr3xjscg1bbdrqd5yz-glibc-utf8-locales-2.27
   /gnu/store/b5x786d3h552j2zp4ppvlz9dkbiqy2ng-ld-wrapper-0


[-- Attachment #5: build_with_spice_with_loadpath.log --]
[-- Type: text/x-log, Size: 1167 bytes --]

;;; note: source file /root/my-guix/gnu/packages/spice.scm
;;;       newer than compiled /gnu/store/k7lvym1xl87p156jd459k36ddbb1msvm-guix-a7b7d48cc-modules/gnu/packages/spice.go
;;; note: source file /root/my-guix/gnu/packages/spice.scm
;;;       newer than compiled /run/current-system/profile/lib/guile/2.2/site-ccache/gnu/packages/spice.go
substitute: updating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
The following derivation would be built:
   /gnu/store/vjwi7fjxmqzdhp7d72x0hvvggl60xh9c-spice-vdagent-0.17.0.drv
23.5 MB would be downloaded:
   /gnu/store/nx21fqlb8jixwhbs83xlfp9a3h5p3g9a-make-4.2.1
   /gnu/store/28j025sr93kx2yghnwza2s4p556ls0hv-spice-protocol-0.12.14
   /gnu/store/srmqh29dpm50j8kj1pbqg2rgh053wgyp-binutils-2.30
   /gnu/store/f95ghy8mx00fc22nrvswvnpqlfdkf2nk-module-import
   /gnu/store/6w4x24a4i8ssgf147a7yhp6ppickr2nr-linux-libre-headers-4.14.26
   /gnu/store/jvh33x79acqdpq186c2rf27mavpf0j6r-spice-vdagent-0.17.0.tar.bz2
   /gnu/store/achc8l1lg4am9b51z1k97d8bn1qcz2x4-module-import-compiled
   /gnu/store/ki1m42g3s2lav4mr3xjscg1bbdrqd5yz-glibc-utf8-locales-2.27
   /gnu/store/b5x786d3h552j2zp4ppvlz9dkbiqy2ng-ld-wrapper-0


[-- Attachment #6: real_with_spice_with_guix_package_path.log --]
[-- Type: text/x-log, Size: 11727 bytes --]

;;; note: source file /root/my-guix/gnu/packages/spice.scm
;;;       newer than compiled /gnu/store/k7lvym1xl87p156jd459k36ddbb1msvm-guix-a7b7d48cc-modules/gnu/packages/spice.go
;;; note: source file /root/my-guix/gnu/packages/spice.scm
;;;       newer than compiled /run/current-system/profile/lib/guile/2.2/site-ccache/gnu/packages/spice.go
\r\rdownloading from https://mirror.hydra.gnu.org/guix/nar/gzip/ki1m42g3s2lav4mr3xjscg1bbdrqd5yz-glibc-utf8-locales-2.27...
\r\r^[[K glibc-utf8-locales-2.27  1.6MiB      2.8MiB/s 00:00 [                  ]   1.0%\r\r^[[K glibc-utf8-locales-2.27  1.6MiB       97KiB/s 00:00 [                  ]   2.0%\r\r^[[K glibc-utf8-locales-2.27  1.6MiB      144KiB/s 00:01 [#                 ]   5.9%\r\r^[[K glibc-utf8-locales-2.27  1.6MiB      207KiB/s 00:01 [##                ]  12.9%\r\r^[[K glibc-utf8-locales-2.27  1.6MiB      322KiB/s 00:01 [####              ]  26.7%\r\r^[[K glibc-utf8-locales-2.27  1.6MiB      527KiB/s 00:02 [#########         ]  54.4%\r\r^[[K glibc-utf8-locales-2.27  1.6MiB      924KiB/s 00:02 [##################] 100.0%

\r\r\rdownloading from https://mirror.hydra.gnu.org/guix/nar/gzip/srmqh29dpm50j8kj1pbqg2rgh053wgyp-binutils-2.30...
\r\r^[[K binutils-2.30  18.8MiB               3.4MiB/s 00:00 [                  ]   0.1%\r\r^[[K binutils-2.30  18.8MiB                99KiB/s 00:00 [                  ]   0.2%\r\r^[[K binutils-2.30  18.8MiB               146KiB/s 00:01 [                  ]   0.5%\r\r^[[K binutils-2.30  18.8MiB               211KiB/s 00:01 [                  ]   1.1%\r\r^[[K binutils-2.30  18.8MiB               330KiB/s 00:01 [                  ]   2.2%\r\r^[[K binutils-2.30  18.8MiB               537KiB/s 00:02 [                  ]   4.6%\r\r^[[K binutils-2.30  18.8MiB               911KiB/s 00:02 [#                 ]   9.3%\r\r^[[K binutils-2.30  18.8MiB               1.4MiB/s 00:02 [###               ]  17.2%\r\r^[[K binutils-2.30  18.8MiB               1.8MiB/s 00:03 [####              ]  25.2%\r\r^[[K binutils-2.30  18.8MiB               2.1MiB/s 00:03 [#####             ]  33.2%\r\r^[[K binutils-2.30  18.8MiB               2.4MiB/s 00:03 [#######           ]  41.2%\r\r^[[K binutils-2.30  18.8MiB               2.6MiB/s 00:03 [########          ]  47.7%\r\r^[[K binutils-2.30  18.8MiB               2.7MiB/s 00:04 [#########         ]  52.1%\r\r^[[K binutils-2.30  18.8MiB               2.7MiB/s 00:04 [##########        ]  57.2%\r\r^[[K binutils-2.30  18.8MiB               2.9MiB/s 00:04 [###########       ]  62.9%\r\r^[[K binutils-2.30  18.8MiB               2.9MiB/s 00:04 [############      ]  67.8%\r\r^[[K binutils-2.30  18.8MiB               3.0MiB/s 00:05 [#############     ]  73.1%\r\r^[[K binutils-2.30  18.8MiB               3.1MiB/s 00:05 [##############    ]  78.1%\r\r^[[K binutils-2.30  18.8MiB               3.1MiB/s 00:05 [##############    ]  82.7%\r\r^[[K binutils-2.30  18.8MiB               3.2MiB/s 00:05 [################  ]  89.1%\r\r^[[K binutils-2.30  18.8MiB               3.2MiB/s 00:05 [################  ]  93.8%\r\r^[[K binutils-2.30  18.8MiB               3.3MiB/s 00:06 [################# ]  98.6%\r\r^[[K binutils-2.30  18.8MiB               3.3MiB/s 00:06 [##################] 100.0%

\r\r\rdownloading from https://mirror.hydra.gnu.org/guix/nar/gzip/166hj8p5vnlqs4ghh4y6g745i6qx9dyr-glibc-2.27-static...
\r\r^[[K glibc-2.27-static  2.6MiB            4.0MiB/s 00:00 [                  ]   0.6%\r\r^[[K glibc-2.27-static  2.6MiB            101KiB/s 00:00 [                  ]   1.2%\r\r^[[K glibc-2.27-static  2.6MiB            150KiB/s 00:01 [                  ]   3.6%\r\r^[[K glibc-2.27-static  2.6MiB            216KiB/s 00:01 [#                 ]   7.8%\r\r^[[K glibc-2.27-static  2.6MiB            337KiB/s 00:01 [##                ]  16.2%\r\r^[[K glibc-2.27-static  2.6MiB            550KiB/s 00:02 [#####             ]  32.9%\r\r^[[K glibc-2.27-static  2.6MiB            926KiB/s 00:02 [###########       ]  66.5%\r\r^[[K glibc-2.27-static  2.6MiB            1.3MiB/s 00:02 [##################] 100.0%

\r\r\rdownloading from https://mirror.hydra.gnu.org/guix/nar/gzip/b5x786d3h552j2zp4ppvlz9dkbiqy2ng-ld-wrapper-0...
\r\r^[[K ld-wrapper-0  13KiB                  3.3MiB/s 00:00 [##################] 100.0%\r\r^[[K ld-wrapper-0  13KiB                  2.2MiB/s 00:00 [##################] 100.0%

\r\r\rdownloading from https://mirror.hydra.gnu.org/guix/nar/gzip/6w4x24a4i8ssgf147a7yhp6ppickr2nr-linux-libre-headers-4.14.26...
\r\r^[[K linux-libre-headers-4.14.26  1.1MiB  2.7MiB/s 00:00 [                  ]   1.4%\r\r^[[K linux-libre-headers-4.14.26  1.1MiB   96KiB/s 00:00 [                  ]   2.7%\r\r^[[K linux-libre-headers-4.14.26  1.1MiB  143KiB/s 00:01 [#                 ]   8.2%\r\r^[[K linux-libre-headers-4.14.26  1.1MiB  206KiB/s 00:01 [###               ]  17.7%\r\r^[[K linux-libre-headers-4.14.26  1.1MiB  298KiB/s 00:01 [######            ]  34.1%\r\r^[[K linux-libre-headers-4.14.26  1.1MiB  496KiB/s 00:02 [############      ]  71.0%\r\r^[[K linux-libre-headers-4.14.26  1.1MiB  678KiB/s 00:02 [##################] 100.0%

\r\r\rdownloading from https://mirror.hydra.gnu.org/guix/nar/gzip/nx21fqlb8jixwhbs83xlfp9a3h5p3g9a-make-4.2.1...
\r\r^[[K make-4.2.1  600KiB                   3.4MiB/s 00:00 [                  ]   2.7%\r\r^[[K make-4.2.1  600KiB                   106KiB/s 00:00 [                  ]   5.3%\r\r^[[K make-4.2.1  600KiB                   157KiB/s 00:01 [##                ]  16.0%\r\r^[[K make-4.2.1  600KiB                   227KiB/s 00:01 [######            ]  34.7%\r\r^[[K make-4.2.1  600KiB                   355KiB/s 00:01 [############      ]  72.0%\r\r^[[K make-4.2.1  600KiB                   486KiB/s 00:01 [##################] 100.0%

\r\r\rdownloading from https://mirror.hydra.gnu.org/guix/nar/gzip/f95ghy8mx00fc22nrvswvnpqlfdkf2nk-module-import...
\r\r^[[K module-import  332B                   98KiB/s 00:00 [##################] 100.0%\r\r^[[K module-import  332B                   75KiB/s 00:00 [##################] 100.0%

\r\r\rdownloading from https://mirror.hydra.gnu.org/guix/nar/gzip/28j025sr93kx2yghnwza2s4p556ls0hv-spice-protocol-0.12.14...
\r\r^[[K spice-protocol-0.12.14  19KiB        4.0MiB/s 00:00 [##############    ]  83.3%\r\r^[[K spice-protocol-0.12.14  19KiB        3.9MiB/s 00:00 [##################] 100.0%

\r\r\rdownloading from https://mirror.hydra.gnu.org/guix/nar/gzip/achc8l1lg4am9b51z1k97d8bn1qcz2x4-module-import-compiled...
\r\r^[[K module-import-compiled  238KiB       2.4MiB/s 00:00 [#                 ]   6.7%\r\r^[[K module-import-compiled  238KiB       101KiB/s 00:00 [##                ]  13.4%\r\r^[[K module-import-compiled  238KiB       150KiB/s 00:01 [#######           ]  40.3%\r\r^[[K module-import-compiled  238KiB       217KiB/s 00:01 [###############   ]  87.3%\r\r^[[K module-import-compiled  238KiB       248KiB/s 00:01 [##################] 100.0%

\r\r\rdownloading from https://mirror.hydra.gnu.org/guix/nar/jvh33x79acqdpq186c2rf27mavpf0j6r-spice-vdagent-0.17.0.tar.bz2...
\r\r^[[K spice-vdagent-0.17.0.tar.bz2  127KiB 929KiB/s 00:00 [                  ]   0.8%\r\r^[[K spice-vdagent-0.17.0.tar.bz2  127KiB 204KiB/s 00:00 [#########         ]  50.3%\r\r^[[K spice-vdagent-0.17.0.tar.bz2  127KiB 204KiB/s 00:01 [################# ] 100.0%\r\r^[[K spice-vdagent-0.17.0.tar.bz2  127KiB 203KiB/s 00:01 [##################] 100.0%

\r\rbuilding /gnu/store/vjwi7fjxmqzdhp7d72x0hvvggl60xh9c-spice-vdagent-0.17.0.drv...
\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\r^[[K-\r\r^[[K\\r\r^[[K|\r\r^[[K/\r\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  50.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
The following derivations will be built:
   /gnu/store/4y2baygfp5ybnpmx9wpbb1bh82r8jg2n-system.drv
   /gnu/store/15nlb68k6cp63l47zwkk5dj97dj9iqb5-grub.cfg.drv
   /gnu/store/n52wsvr9fmd7l2qrjg5xsp4ki1bvjxyi-shepherd.conf.drv
   /gnu/store/6raiksil7gqh2ybyrn18m7djijx0jnrk-boot.drv
\rbuilding /gnu/store/n52wsvr9fmd7l2qrjg5xsp4ki1bvjxyi-shepherd.conf.drv...
\r\rbuilding /gnu/store/6raiksil7gqh2ybyrn18m7djijx0jnrk-boot.drv...
\r\rbuilding /gnu/store/4y2baygfp5ybnpmx9wpbb1bh82r8jg2n-system.drv...
\r\rbuilding /gnu/store/15nlb68k6cp63l47zwkk5dj97dj9iqb5-grub.cfg.drv...
/gnu/store/4r2r2d52z0vx531s79s86fynw651763p-system
/gnu/store/zkjw7bnqpzn3f8fm389nwfnhzhlpsgmk-grub.cfg
/gnu/store/acsiz2rqjv1zjmkyn23f9h97cvbjh7gg-grub-2.02
/gnu/store/dvpv4dszja6pzg9d97gkdj5gy3wdr8l8-bootloader-installer
activating system...
making '/gnu/store/4r2r2d52z0vx531s79s86fynw651763p-system' the current system...
setting up setuid programs in '/run/setuid-programs'...
populating /etc from /gnu/store/mvn188f23ap0g6wz5pyh9q70qyx7d5av-etc...
usermod: no changes
usermod: no changes
usermod: no changes
usermod: no changes
usermod: no changes
usermod: no changes
usermod: no changes
usermod: no changes
usermod: no changes
usermod: no changes
\rguix system: loading new services: file-systems user-file-systems file-system-/dev/pts file-system-/dev/shm file-system-/gnu/store file-system-/run/systemd file-system-/run/user file-system-/sys/fs/cgroup/elogind file-system-/sys/fs/cgroup file-system-/sys/fs/cgroup/cpuset file-system-/sys/fs/cgroup/cpu file-system-/sys/fs/cgroup/cpuacct file-system-/sys/fs/cgroup/memory file-system-/sys/fs/cgroup/devices file-system-/sys/fs/cgroup/freezer file-system-/sys/fs/cgroup/blkio file-system-/sys/fs/cgroup/perf_event root-file-system user-processes host-name user-homes udev nscd guix-daemon urandom-seed syslogd loopback term-tty6 term-tty5 term-tty4 term-tty3 term-tty2 term-tty1 term-auto console-font-tty1 console-font-tty2 console-font-tty3 console-font-tty4 console-font-tty5 console-font-tty6 virtual-terminal ntpd dbus-system elogind upower-daemon avahi-daemon wpa-supplicant networking xorg-server spice-vdagentd ssh-daemon...
To complete the upgrade, run 'herd restart SERVICE' to stop,
upgrade, and restart each service that was not automatically restarted.
shepherd: Evaluating user expression (let* ((services (map primitive-load (?))) # ?) ?).
shepherd: Service user-homes could not be started.
shepherd: Service term-auto could not be started.
Installing for i386-pc platform.
Installation finished. No error reported.

[-- Attachment #7: real_with_spice_with_loadpath.log --]
[-- Type: text/x-log, Size: 9645 bytes --]

\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  50.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  50.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  50.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  50.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  20.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  40.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  60.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  80.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  50.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  50.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...  50.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
\rsubstitute: \rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
The following derivation will be built:
   /gnu/store/flvhcfdy3d77riwv2qxb79rgrkhi0w6r-grub.cfg.drv
\rbuilding /gnu/store/flvhcfdy3d77riwv2qxb79rgrkhi0w6r-grub.cfg.drv...
/gnu/store/lasp6jx9zn0ywpnn3clwabvm56qyswla-system
/gnu/store/bicnkx7gkzcl90gwp5fa9kh1ykw0i1hz-grub.cfg
/gnu/store/acsiz2rqjv1zjmkyn23f9h97cvbjh7gg-grub-2.02
/gnu/store/dvpv4dszja6pzg9d97gkdj5gy3wdr8l8-bootloader-installer
activating system...
making '/gnu/store/lasp6jx9zn0ywpnn3clwabvm56qyswla-system' the current system...
setting up setuid programs in '/run/setuid-programs'...
populating /etc from /gnu/store/mvn188f23ap0g6wz5pyh9q70qyx7d5av-etc...
usermod: no changes
usermod: no changes
usermod: no changes
usermod: no changes
usermod: no changes
usermod: no changes
usermod: no changes
usermod: no changes
usermod: no changes
usermod: no changes
\rguix system: loading new services: file-systems user-file-systems file-system-/dev/pts file-system-/dev/shm file-system-/gnu/store file-system-/run/systemd file-system-/run/user file-system-/sys/fs/cgroup/elogind file-system-/sys/fs/cgroup file-system-/sys/fs/cgroup/cpuset file-system-/sys/fs/cgroup/cpu file-system-/sys/fs/cgroup/cpuacct file-system-/sys/fs/cgroup/memory file-system-/sys/fs/cgroup/devices file-system-/sys/fs/cgroup/freezer file-system-/sys/fs/cgroup/blkio file-system-/sys/fs/cgroup/perf_event root-file-system user-processes host-name user-homes udev nscd guix-daemon urandom-seed syslogd loopback term-tty6 term-tty5 term-tty4 term-tty3 term-tty2 term-tty1 term-auto console-font-tty1 console-font-tty2 console-font-tty3 console-font-tty4 console-font-tty5 console-font-tty6 virtual-terminal ntpd dbus-system elogind upower-daemon avahi-daemon wpa-supplicant networking xorg-server spice-vdagentd ssh-daemon...
To complete the upgrade, run 'herd restart SERVICE' to stop,
upgrade, and restart each service that was not automatically restarted.
shepherd: Evaluating user expression (let* ((services (map primitive-load (?))) # ?) ?).
shepherd: Service user-homes could not be started.
shepherd: Service term-auto could not be started.
Installing for i386-pc platform.
Installation finished. No error reported.

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

end of thread, other threads:[~2018-11-18 20:17 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-13  3:49 '--load-path' option not working for 'guix system' command Taegil Bae
2018-11-13  7:25 ` Pierre Neidhardt
2018-11-13  7:55   ` Taegil Bae
2018-11-14  9:20     ` Oleg Pykhalov
2018-11-14 16:08       ` Taegil Bae
2018-11-18 11:08         ` Oleg Pykhalov
2018-11-18 20:12           ` Taegil Bae

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.