all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#70556] [PATCH 0/3] gnu: kubo: Update to 0.28.0.
@ 2024-04-24 19:52 Artyom V. Poptsov
  2024-04-24 20:03 ` [bug#70556] [PATCH 1/3] gnu: go-github-com-quic-go-quic-go: Update to 0.42.0 Artyom V. Poptsov
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Artyom V. Poptsov @ 2024-04-24 19:52 UTC (permalink / raw)
  To: 70556; +Cc: Artyom V. Poptsov

This patch series updates Kubo (IPFS) to version 0.28.0 (the latest version at
the moment.)

Artyom V. Poptsov (3):
  gnu: go-github-com-quic-go-quic-go: Update to 0.42.0.
  gnu: kubo: Update to 0.28.0.
  gnu: yggdrasil: Use go-1.21.

 gnu/packages/golang-web.scm |  6 +++---
 gnu/packages/ipfs.scm       | 14 ++++++++++----
 gnu/packages/networking.scm |  2 +-
 3 files changed, 14 insertions(+), 8 deletions(-)


base-commit: 91d9e145e15241c20729a4f1fa43f3d662f6b806
-- 
2.41.0





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

* [bug#70556] [PATCH 1/3] gnu: go-github-com-quic-go-quic-go: Update to 0.42.0.
  2024-04-24 19:52 [bug#70556] [PATCH 0/3] gnu: kubo: Update to 0.28.0 Artyom V. Poptsov
@ 2024-04-24 20:03 ` Artyom V. Poptsov
  2024-04-24 20:03 ` [bug#70556] [PATCH 2/3] gnu: kubo: Update to 0.28.0 Artyom V. Poptsov
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Artyom V. Poptsov @ 2024-04-24 20:03 UTC (permalink / raw)
  To: 70556; +Cc: Artyom V. Poptsov

* gnu/packages/golang-web.scm (go-github-com-quic-go-quic-go): Update to 0.42.0.

Change-Id: I9791bba274f9682cb73082ca5547a59de0ee4c8f
---
 gnu/packages/golang-web.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index b51fb85081..cdde16bf06 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -1621,7 +1621,7 @@ (define-public go-github-com-quic-go-qpack
 (define-public go-github-com-quic-go-quic-go
   (package
     (name "go-github-com-quic-go-quic-go")
-    (version "0.39.3")
+    (version "0.42.0")
     (source
      (origin
        (method git-fetch)
@@ -1630,13 +1630,13 @@ (define-public go-github-com-quic-go-quic-go
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0acabl3cz48nxpggc5s7fwxpmr5amyi09jygn5m5xxkkbhqs2cxq"))))
+        (base32 "0bdr48nbcjajmhx1h11qfl1i7myxqpyqqk5n21007xyqw13qhb8c"))))
     (build-system go-build-system)
     (arguments
      (list
       ;; XXX More packages required...
       #:tests? #f
-      #:go go-1.20
+      #:go go-1.21
       #:import-path "github.com/quic-go/quic-go"))
     (propagated-inputs
      (list go-github-com-cheekybits-genny
-- 
2.41.0





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

* [bug#70556] [PATCH 2/3] gnu: kubo: Update to 0.28.0.
  2024-04-24 19:52 [bug#70556] [PATCH 0/3] gnu: kubo: Update to 0.28.0 Artyom V. Poptsov
  2024-04-24 20:03 ` [bug#70556] [PATCH 1/3] gnu: go-github-com-quic-go-quic-go: Update to 0.42.0 Artyom V. Poptsov
@ 2024-04-24 20:03 ` Artyom V. Poptsov
  2024-04-24 20:03 ` [bug#70556] [PATCH 3/3] gnu: yggdrasil: Use go-1.21 Artyom V. Poptsov
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Artyom V. Poptsov @ 2024-04-24 20:03 UTC (permalink / raw)
  To: 70556; +Cc: Artyom V. Poptsov

* gnu/packages/ipfs.scm (kubo): Update to 0.28.0.
[inputs]: Remove go-golang-org-x-exp; add go-github-com-jbenet-go-random,
go-github-com-jbenet-goprocess,
go-github-com-julienschmidt-httprouter,
go-github-com-multiformats-go-multiaddr,
go-github-com-multiformats-go-multibase,
go-github-com-multiformats-go-multiaddr-dns, and
go-golang-org-x-exp-2023.

Change-Id: Id065558905130c7ad0124bcf56e8b38ee6f9656e
---
 gnu/packages/ipfs.scm | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm
index bcf6fea133..dc8388acfc 100644
--- a/gnu/packages/ipfs.scm
+++ b/gnu/packages/ipfs.scm
@@ -256,7 +256,7 @@ (define-public gx-go
 (define-public kubo
   (package
     (name "kubo")
-    (version "0.22.0")
+    (version "0.28.0")
     (source
      (origin
        (method url-fetch/tarbomb)
@@ -264,7 +264,7 @@ (define-public kubo
              "https://dist.ipfs.io/kubo/v" version
              "/kubo-source.tar.gz"))
        (sha256
-        (base32 "0p8iaa56lnac1lxnbzp4fbjqzps50z5yqs34szcp53xjq8rmjzjd"))
+        (base32 "01lk6dd2j660rykchc3ggi9cln92cngz5ijlldsaj5mxnajlvbwy"))
        (file-name (string-append name "-" version "-source"))
        (modules '((guix build utils)))
        (snippet '(for-each delete-file-recursively
@@ -321,7 +321,7 @@ (define-public kubo
      (list
       #:unpack-path "github.com/ipfs/kubo"
       #:import-path "github.com/ipfs/kubo/cmd/ipfs"
-      #:go go-1.20
+      #:go go-1.21
       #:phases
       #~(modify-phases %standard-phases
           ;; https://github.com/ipfs/kubo/blob/master/docs/command-completion.md
@@ -355,6 +355,9 @@ (define-public kubo
                   go-github-com-hashicorp-golang-lru
                   go-github-com-hashicorp-golang-lru-v2
                   go-github-com-jackpal-go-nat-pmp
+                  go-github-com-jbenet-go-random
+                  go-github-com-jbenet-goprocess
+                  go-github-com-julienschmidt-httprouter
                   go-github-com-klauspost-compress
                   go-github-com-klauspost-cpuid
                   go-github-com-lucas-clemente-quic-go
@@ -367,6 +370,9 @@ (define-public kubo
                   go-github-com-mitchellh-go-homedir
                   go-github-com-mr-tron-base58
                   go-github-com-multiformats-go-multihash-0.2.3
+                  go-github-com-multiformats-go-multiaddr
+                  go-github-com-multiformats-go-multibase
+                  go-github-com-multiformats-go-multiaddr-dns
                   go-github-com-opentracing-opentracing-go
                   go-github-com-pbnjay-memory
                   go-github-com-pkg-errors
@@ -384,7 +390,7 @@ (define-public kubo
                   go-go-uber-org-multierr
                   go-go-uber-org-zap
                   go-golang-org-x-crypto
-                  go-golang-org-x-exp
+                  go-golang-org-x-exp-2023
                   go-golang-org-x-lint
                   go-golang-org-x-mod
                   go-golang-org-x-net
-- 
2.41.0





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

* [bug#70556] [PATCH 3/3] gnu: yggdrasil: Use go-1.21.
  2024-04-24 19:52 [bug#70556] [PATCH 0/3] gnu: kubo: Update to 0.28.0 Artyom V. Poptsov
  2024-04-24 20:03 ` [bug#70556] [PATCH 1/3] gnu: go-github-com-quic-go-quic-go: Update to 0.42.0 Artyom V. Poptsov
  2024-04-24 20:03 ` [bug#70556] [PATCH 2/3] gnu: kubo: Update to 0.28.0 Artyom V. Poptsov
@ 2024-04-24 20:03 ` Artyom V. Poptsov
  2024-04-28 14:10 ` [bug#70556] [PATCH 0/3] gnu: kubo: Update to 0.28.0 Maxim Cournoyer
  2024-04-28 15:33 ` bug#70556: " Sharlatan Hellseher
  4 siblings, 0 replies; 7+ messages in thread
From: Artyom V. Poptsov @ 2024-04-24 20:03 UTC (permalink / raw)
  To: 70556; +Cc: Artyom V. Poptsov

* gnu/packages/networking.scm (yggdrasil) [arguments]: Use go-1.21.

Change-Id: I3731f49ff7a70114a2454da6985323c011d831a1
---
 gnu/packages/networking.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 9d657bc69d..28d5926878 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -4585,7 +4585,7 @@ (define-public yggdrasil
            ;; TODO: figure out how tests are run
            #:tests? #f
            #:install-source? #f
-           #:go go-1.20
+           #:go go-1.21
            #:phases
            #~(modify-phases %standard-phases
                (replace 'build
-- 
2.41.0





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

* [bug#70556] [PATCH 0/3] gnu: kubo: Update to 0.28.0.
  2024-04-24 19:52 [bug#70556] [PATCH 0/3] gnu: kubo: Update to 0.28.0 Artyom V. Poptsov
                   ` (2 preceding siblings ...)
  2024-04-24 20:03 ` [bug#70556] [PATCH 3/3] gnu: yggdrasil: Use go-1.21 Artyom V. Poptsov
@ 2024-04-28 14:10 ` Maxim Cournoyer
  2024-04-28 15:48   ` Artyom V. Poptsov
  2024-04-28 15:33 ` bug#70556: " Sharlatan Hellseher
  4 siblings, 1 reply; 7+ messages in thread
From: Maxim Cournoyer @ 2024-04-28 14:10 UTC (permalink / raw)
  To: Artyom V. Poptsov; +Cc: 70556

Hello,

"Artyom V. Poptsov" <poptsov.artyom@gmail.com> writes:

> This patch series updates Kubo (IPFS) to version 0.28.0 (the latest version at
> the moment.)
>
> Artyom V. Poptsov (3):
>   gnu: go-github-com-quic-go-quic-go: Update to 0.42.0.
>   gnu: kubo: Update to 0.28.0.
>   gnu: yggdrasil: Use go-1.21.
>
>  gnu/packages/golang-web.scm |  6 +++---
>  gnu/packages/ipfs.scm       | 14 ++++++++++----
>  gnu/packages/networking.scm |  2 +-
>  3 files changed, 14 insertions(+), 8 deletions(-)

QA says it failed to process (build Guix) with these patches applied:
https://qa.guix.gnu.org/issue/70556

Could you please try to run 'make as-derivation' and report if it built
fine with your patches?

-- 
Thanks,
Maxim




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

* bug#70556: [PATCH 0/3] gnu: kubo: Update to 0.28.0.
  2024-04-24 19:52 [bug#70556] [PATCH 0/3] gnu: kubo: Update to 0.28.0 Artyom V. Poptsov
                   ` (3 preceding siblings ...)
  2024-04-28 14:10 ` [bug#70556] [PATCH 0/3] gnu: kubo: Update to 0.28.0 Maxim Cournoyer
@ 2024-04-28 15:33 ` Sharlatan Hellseher
  4 siblings, 0 replies; 7+ messages in thread
From: Sharlatan Hellseher @ 2024-04-28 15:33 UTC (permalink / raw)
  To: 70556-done

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


Hi,

Thanks for the updating Kubo!

Pushed as 7790a970ec..f573deab2e to master. 

--
Oleg

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

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

* [bug#70556] [PATCH 0/3] gnu: kubo: Update to 0.28.0.
  2024-04-28 14:10 ` [bug#70556] [PATCH 0/3] gnu: kubo: Update to 0.28.0 Maxim Cournoyer
@ 2024-04-28 15:48   ` Artyom V. Poptsov
  0 siblings, 0 replies; 7+ messages in thread
From: Artyom V. Poptsov @ 2024-04-28 15:48 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: 70556


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

Hello,

I ran the following commands:

--8<---------------cut here---------------start------------->8---
cd guix
guix shell -D guix
./pre-inst-env make as-derivation
--8<---------------cut here---------------end--------------->8---

And got the following error:

--8<---------------cut here---------------start------------->8---
building path(s) `/gnu/store/lv5qn289shq2a5gzj0xb3l1zi179xyqm-compute-guix-derivation'
Computing Guix derivation for 'x86_64-linux'... |error: You found a bug: the program '/gnu/store/lv5qn289shq2a5gzj0xb3l1zi179xyqm-compute-guix-derivation'
failed to compute the derivation for Guix (version: "20240428.15"; system: "x86_64-linux";
host version: "1.3.0.58052-a18340"; pull-version: 1).
Please report the COMPLETE output above by email to <bug-guix@gnu.org>.

make: *** [Makefile:7297: as-derivation] Error 1
--8<---------------cut here---------------end--------------->8---

Please find the full log attached.

[-- Attachment #1.2: make-as-derivation.log --]
[-- Type: application/octet-stream, Size: 83658 bytes --]

./pre-inst-env make as-derivation 
Building Guix in Guix...
;;; note: source file /home/avp/src/dist/guix/gnu/packages/networking.scm
;;;       newer than compiled /home/avp/src/dist/guix/gnu/packages/networking.go
;;; note: source file /home/avp/src/dist/guix/gnu/packages/golang-xyz.scm
;;;       newer than compiled /home/avp/src/dist/guix/gnu/packages/golang-xyz.go
;;; note: source file /home/avp/src/dist/guix/gnu/packages/golang-web.scm
;;;       newer than compiled /home/avp/src/dist/guix/gnu/packages/golang-web.go
;;; note: source file /home/avp/src/dist/guix/gnu/packages/ipfs.scm
;;;       newer than compiled /home/avp/src/dist/guix/gnu/packages/ipfs.go
;;; note: source file /home/avp/src/dist/guix/gnu/packages/emacs-xyz.scm
;;;       newer than compiled /home/avp/src/dist/guix/gnu/packages/emacs-xyz.go
;;; note: source file /home/avp/src/dist/guix/gnu/packages/mail.scm
;;;       newer than compiled /home/avp/src/dist/guix/gnu/packages/mail.go
warning: 'nix-server-socket' is deprecated, use 'store-connection-socket' instead
warning: 'nix-server-major-version' is deprecated, use 'store-connection-major-version' instead
warning: 'nix-server-minor-version' is deprecated, use 'store-connection-minor-version' instead
substitute: hint: Consider installing the `glibc-locales' package and defining
substitute: `GUIX_LOCPATH', along these lines:
substitute: 
substitute:      guix install glibc-locales
substitute:      export GUIX_LOCPATH="$HOME/.guix-profile/lib/locale"
substitute: 
substitute: See the "Application Setup" section in the manual, for more info.
substitute: 
substitute: updating substitutes from 'http://ci.guix.ygg.trop.in'... 100.0%
substitute: updating substitutes from 'http://ci.guix.ygg.trop.in'... 100.0%
substitute: updating substitutes from 'http://ci.guix.ygg.trop.in'... 100.0%
building path(s) `/gnu/store/pg8m2mz6wyilx7vrn6d4g0ljy997fy14-module-import'
building path(s) `/gnu/store/m1zk5qw1v7z7054yahdafdg7lf3prr18-module-import'
building path(s) `/gnu/store/lni7akpm40c0vq8d9l38n920fc4wa643-module-import-compiled'
[ 1/80] Loading './gcrypt/hash.scm'...
[ 2/80] Loading './git.scm'...
[ 3/80] Loading './gnu/packages/bootstrap.scm'...
[ 4/80] Loading './gnu/packages.scm'...
[ 5/80] Loading './guix/base16.scm'...
[ 6/80] Loading './guix/base32.scm'...
[ 7/80] Loading './guix/base64.scm'...
[ 8/80] Loading './guix/build/syscalls.scm'...
[ 9/80] Loading './guix/build/utils.scm'...
[10/80] Loading './guix/build-system/trivial.scm'...
[11/80] Loading './guix/build-system.scm'...
[12/80] Loading './guix/colors.scm'...
[13/80] Loading './guix/combinators.scm'...
[14/80] Loading './guix/config.scm'...
[15/80] Loading './guix/deprecation.scm'...
[16/80] Loading './guix/derivations.scm'...
[17/80] Loading './guix/describe.scm'...
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
WARNING: Use of `load' in declarative module (guix ui).  Add #:declarative? #f to your define-module invocation.
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
./guix/derivations.scm:1231:4: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; [18/80] Loading './guix/diagnostics.scm'...
[19/80] Loading './guix/discovery.scm'...
[20/80] Loading './guix/download.scm'...
[21/80] Loading './guix/gexp.scm'...
[22/80] Loading './guix/grafts.scm'...
[23/80] Loading './guix/i18n.scm'...
[24/80] Loading './guix/licenses.scm'...
[25/80] Loading './guix/memoization.scm'...
[26/80] Loading './guix/modules.scm'...
[27/80] Loading './guix/monads.scm'...
[28/80] Loading './guix/packages.scm'...
[29/80] Loading './guix/platform.scm'...
[30/80] Loading './guix/profiles.scm'...
[31/80] Loading './guix/profiling.scm'...
[32/80] Loading './guix/read-print.scm'...
[33/80] Loading './guix/records.scm'...
[34/80] Loading './guix/search-paths.scm'...
[35/80] Loading './guix/self.scm'...
[36/80] Loading './guix/serialization.scm'...
[37/80] Loading './guix/sets.scm'...
[38/80] Loading './guix/store.scm'...
[39/80] Loading './guix/ui.scm'...
[40/80] Loading './guix/utils.scm'...
[41/80] Compiling './gcrypt/hash.scm'...
[42/80] Compiling './git.scm'...
[43/80] Compiling './gnu/packages/bootstrap.scm'...
[44/80] Compiling './gnu/packages.scm'...
[45/80] Compiling './guix/base16.scm'...
[46/80] Compiling './guix/base32.scm'...
[47/80] Compiling './guix/base64.scm'...
[48/80] Compiling './guix/build/syscalls.scm'...
[49/80] Compiling './guix/build/utils.scm'...
[50/80] Compiling './guix/build-system/trivial.scm'...
[51/80] Compiling './guix/build-system.scm'...
[52/80] Compiling './guix/colors.scm'...
[53/80] Compiling './guix/combinators.scm'...
[54/80] Compiling './guix/config.scm'...
[55/80] Compiling './guix/deprecation.scm'...
[56/80] Compiling './guix/derivations.scm'...
[57/80] Compiling './guix/describe.scm'...
Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
WARNING: Use of `load' in declarative module (guix ui).  Add #:declarative? #f to your define-module invocation.
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
./guix/derivations.scm:1231:4: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead
;;; ./guix/derivations.scm:1270:2: warning: possibly unbound variable `gexp->derivation'
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; ./guix/describe.scm:162:26: warning: possibly unbound variable `sexp->channel'
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; ./guix/describe.scm:170:26: warning: possibly unbound variable `manifest-entry-channel'
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; ./guix/describe.scm:223:45: warning: possibly unbound variable `channel-name'
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; [58/80] Compiling './guix/diagnostics.scm'...
[59/80] Compiling './guix/discovery.scm'...
[60/80] Compiling './guix/download.scm'...
Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; ./guix/diagnostics.scm:325:9: warning: non-literal format string
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; [61/80] Compiling './guix/gexp.scm'...
[62/80] Compiling './guix/grafts.scm'...
[63/80] Compiling './guix/i18n.scm'...
[64/80] Compiling './guix/licenses.scm'...
[65/80] Compiling './guix/memoization.scm'...
[66/80] Compiling './guix/modules.scm'...
[67/80] Compiling './guix/monads.scm'...
no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ anym %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ anym %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ mapm %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ mapm %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ mapm %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ foldm %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ foldm %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ sequence %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ sequence %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ sequence %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ anym %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ foldm %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ anym %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ anym %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ mapm %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ mapm %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ mapm %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ foldm %state-monad instance}#' at ./guix/monads.scm:569:0[68/80] Compiling './guix/packages.scm'...
[69/80] Compiling './guix/platform.scm'...
[70/80] Compiling './guix/profiles.scm'...
[71/80] Compiling './guix/profiling.scm'...
[72/80] Compiling './guix/read-print.scm'...
[73/80] Compiling './guix/records.scm'...
[74/80] Compiling './guix/search-paths.scm'...
[75/80] Compiling './guix/self.scm'...
[76/80] Compiling './guix/serialization.scm'...
[77/80] Compiling './guix/sets.scm'...
[78/80] Compiling './guix/store.scm'...
[79/80] Compiling './guix/ui.scm'...
[80/80] Compiling './guix/utils.scm'...

;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ foldm %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ sequence %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ sequence %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ sequence %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ anym %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ foldm %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ anym %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ anym %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ mapm %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ mapm %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ mapm %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ foldm %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ foldm %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ sequence %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ sequence %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ sequence %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ anym %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ foldm %store-monad instance}#' at ./guix/store.scm:1897:0
WARNING: Use of `load' in declarative module (guix ui).  Add #:declarative? #f to your define-module invocation.
;;; ./guix/ui.scm:1082:12: warning: non-literal format string
;;; ./guix/ui.scm:1092:23: warning: non-literal format string
;;; ./guix/ui.scm:1104:23: warning: non-literal format string
;;; ./guix/ui.scm:1128:21: warning: non-literal format string
;;; ./guix/ui.scm:1133:21: warning: non-literal format string
;;; ./guix/ui.scm:1142:12: warning: non-literal format string
;;; ./guix/ui.scm:1152:23: warning: non-literal format string
;;; ./guix/ui.scm:1164:23: warning: non-literal format string
;;; ./guix/ui.scm:1188:21: warning: non-literal format string
;;; ./guix/ui.scm:1193:21: warning: non-literal format string
;;; ./guix/ui.scm:1987:19: warning: non-literal format string
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; ./guix/utils.scm:275:28: warning: possibly unbound variable `make-zlib-input-port'
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; ./guix/utils.scm:349:28: warning: possibly unbound variable `make-zlib-output-port'
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
building path(s) `/gnu/store/3px29jra5s1w412xxp2j2rjq9s4i2sm3-module-import-compiled'
[ 1/80] Loading './gcrypt/hash.scm'...
[ 2/80] Loading './git.scm'...
[ 3/80] Loading './gnu/packages/bootstrap.scm'...
[ 4/80] Loading './gnu/packages.scm'...
[ 5/80] Loading './guix/base16.scm'...
[ 6/80] Loading './guix/base32.scm'...
[ 7/80] Loading './guix/base64.scm'...
[ 8/80] Loading './guix/build/syscalls.scm'...
[ 9/80] Loading './guix/build/utils.scm'...
[10/80] Loading './guix/build-system/trivial.scm'...
[11/80] Loading './guix/build-system.scm'...
[12/80] Loading './guix/colors.scm'...
[13/80] Loading './guix/combinators.scm'...
[14/80] Loading './guix/config.scm'...
[15/80] Loading './guix/deprecation.scm'...
[16/80] Loading './guix/derivations.scm'...
[17/80] Loading './guix/describe.scm'...
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
WARNING: Use of `load' in declarative module (guix ui).  Add #:declarative? #f to your define-module invocation.
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
./guix/derivations.scm:1231:4: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; [18/80] Loading './guix/diagnostics.scm'...
[19/80] Loading './guix/discovery.scm'...
[20/80] Loading './guix/download.scm'...
[21/80] Loading './guix/gexp.scm'...
[22/80] Loading './guix/grafts.scm'...
[23/80] Loading './guix/i18n.scm'...
[24/80] Loading './guix/licenses.scm'...
[25/80] Loading './guix/memoization.scm'...
[26/80] Loading './guix/modules.scm'...
[27/80] Loading './guix/monads.scm'...
[28/80] Loading './guix/packages.scm'...
[29/80] Loading './guix/platform.scm'...
[30/80] Loading './guix/profiles.scm'...
[31/80] Loading './guix/profiling.scm'...
[32/80] Loading './guix/read-print.scm'...
[33/80] Loading './guix/records.scm'...
[34/80] Loading './guix/search-paths.scm'...
[35/80] Loading './guix/self.scm'...
[36/80] Loading './guix/serialization.scm'...
[37/80] Loading './guix/sets.scm'...
[38/80] Loading './guix/store.scm'...
[39/80] Loading './guix/ui.scm'...
[40/80] Loading './guix/utils.scm'...
[41/80] Compiling './gcrypt/hash.scm'...
[42/80] Compiling './git.scm'...
[43/80] Compiling './gnu/packages/bootstrap.scm'...
[44/80] Compiling './gnu/packages.scm'...
[45/80] Compiling './guix/base16.scm'...
[46/80] Compiling './guix/base32.scm'...
[47/80] Compiling './guix/base64.scm'...
[48/80] Compiling './guix/build/syscalls.scm'...
[49/80] Compiling './guix/build/utils.scm'...
[50/80] Compiling './guix/build-system/trivial.scm'...
[51/80] Compiling './guix/build-system.scm'...
[52/80] Compiling './guix/colors.scm'...
[53/80] Compiling './guix/combinators.scm'...
[54/80] Compiling './guix/config.scm'...
[55/80] Compiling './guix/deprecation.scm'...
[56/80] Compiling './guix/derivations.scm'...
[57/80] Compiling './guix/describe.scm'...
Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
WARNING: Use of `load' in declarative module (guix ui).  Add #:declarative? #f to your define-module invocation.
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
./guix/derivations.scm:1231:4: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead
;;; ./guix/derivations.scm:1270:2: warning: possibly unbound variable `gexp->derivation'
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; ./guix/describe.scm:162:26: warning: possibly unbound variable `sexp->channel'
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; ./guix/describe.scm:170:26: warning: possibly unbound variable `manifest-entry-channel'
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; ./guix/describe.scm:223:45: warning: possibly unbound variable `channel-name'
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; [58/80] Compiling './guix/diagnostics.scm'...
[59/80] Compiling './guix/discovery.scm'...
[60/80] Compiling './guix/download.scm'...
Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload manifest-entry-channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload channel-name in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; Failed to autoload sexp->channel in (guix channels):
;;; no code for module (guix channels)
;;; ./guix/diagnostics.scm:325:9: warning: non-literal format string
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; [61/80] Compiling './guix/gexp.scm'...
[62/80] Compiling './guix/grafts.scm'...
[63/80] Compiling './guix/i18n.scm'...
[64/80] Compiling './guix/licenses.scm'...
[65/80] Compiling './guix/memoization.scm'...
[66/80] Compiling './guix/modules.scm'...
[67/80] Compiling './guix/monads.scm'...
no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; Failed to autoload url-fetch in (guix build download):
;;; no code for module (guix build download)
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ anym %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ anym %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ mapm %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ mapm %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ mapm %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ foldm %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ foldm %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ sequence %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ sequence %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ sequence %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ anym %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:545:0: warning: shadows previous definition of `#{ foldm %identity-monad instance}#' at ./guix/monads.scm:545:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ anym %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ anym %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ mapm %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ mapm %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ mapm %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ foldm %state-monad instance}#' at ./guix/monads.scm:569:0[68/80] Compiling './guix/packages.scm'...
[69/80] Compiling './guix/platform.scm'...
[70/80] Compiling './guix/profiles.scm'...
[71/80] Compiling './guix/profiling.scm'...
[72/80] Compiling './guix/read-print.scm'...
[73/80] Compiling './guix/records.scm'...
[74/80] Compiling './guix/search-paths.scm'...
[75/80] Compiling './guix/self.scm'...
[76/80] Compiling './guix/serialization.scm'...
[77/80] Compiling './guix/sets.scm'...
[78/80] Compiling './guix/store.scm'...
[79/80] Compiling './guix/ui.scm'...
[80/80] Compiling './guix/utils.scm'...

;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ foldm %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ sequence %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ sequence %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ sequence %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ anym %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/monads.scm:569:0: warning: shadows previous definition of `#{ foldm %state-monad instance}#' at ./guix/monads.scm:569:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ anym %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ anym %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ mapm %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ mapm %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ mapm %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ foldm %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ foldm %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ sequence %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ sequence %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ sequence %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ anym %store-monad instance}#' at ./guix/store.scm:1897:0
;;; ./guix/store.scm:1897:0: warning: shadows previous definition of `#{ foldm %store-monad instance}#' at ./guix/store.scm:1897:0
WARNING: Use of `load' in declarative module (guix ui).  Add #:declarative? #f to your define-module invocation.
;;; ./guix/ui.scm:1082:12: warning: non-literal format string
;;; ./guix/ui.scm:1092:23: warning: non-literal format string
;;; ./guix/ui.scm:1104:23: warning: non-literal format string
;;; ./guix/ui.scm:1128:21: warning: non-literal format string
;;; ./guix/ui.scm:1133:21: warning: non-literal format string
;;; ./guix/ui.scm:1142:12: warning: non-literal format string
;;; ./guix/ui.scm:1152:23: warning: non-literal format string
;;; ./guix/ui.scm:1164:23: warning: non-literal format string
;;; ./guix/ui.scm:1188:21: warning: non-literal format string
;;; ./guix/ui.scm:1193:21: warning: non-literal format string
;;; ./guix/ui.scm:1987:19: warning: non-literal format string
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; ./guix/utils.scm:275:28: warning: possibly unbound variable `make-zlib-input-port'
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; ./guix/utils.scm:349:28: warning: possibly unbound variable `make-zlib-output-port'
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-input-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
;;; Failed to autoload make-zlib-output-port in (zlib):
;;; no code for module (zlib)
hint: Consider installing the `glibc-locales' package and defining
`GUIX_LOCPATH', along these lines:

     guix install glibc-locales
     export GUIX_LOCPATH="$HOME/.guix-profile/lib/locale"

See the "Application Setup" section in the manual, for more info.

building path(s) `/gnu/store/lv5qn289shq2a5gzj0xb3l1zi179xyqm-compute-guix-derivation'
Computing Guix derivation for 'x86_64-linux'... |error: You found a bug: the program '/gnu/store/lv5qn289shq2a5gzj0xb3l1zi179xyqm-compute-guix-derivation'
failed to compute the derivation for Guix (version: "20240428.15"; system: "x86_64-linux";
host version: "1.3.0.58052-a18340"; pull-version: 1).
Please report the COMPLETE output above by email to <bug-guix@gnu.org>.

make: *** [Makefile:7297: as-derivation] Error 1

[-- Attachment #1.3: Type: text/plain, Size: 216 bytes --]


- avp

-- 
Artyom "avp" Poptsov <poptsov.artyom@gmail.com>
Home page: https://memory-heap.org/~avp/
CADR Hackerspace co-founder: https://cadrspace.ru/
GPG: D0C2 EAC1 3310 822D 98DE  B57C E9C5 A2D9 0898 A02F

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

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

end of thread, other threads:[~2024-04-28 15:50 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-24 19:52 [bug#70556] [PATCH 0/3] gnu: kubo: Update to 0.28.0 Artyom V. Poptsov
2024-04-24 20:03 ` [bug#70556] [PATCH 1/3] gnu: go-github-com-quic-go-quic-go: Update to 0.42.0 Artyom V. Poptsov
2024-04-24 20:03 ` [bug#70556] [PATCH 2/3] gnu: kubo: Update to 0.28.0 Artyom V. Poptsov
2024-04-24 20:03 ` [bug#70556] [PATCH 3/3] gnu: yggdrasil: Use go-1.21 Artyom V. Poptsov
2024-04-28 14:10 ` [bug#70556] [PATCH 0/3] gnu: kubo: Update to 0.28.0 Maxim Cournoyer
2024-04-28 15:48   ` Artyom V. Poptsov
2024-04-28 15:33 ` bug#70556: " Sharlatan Hellseher

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.