From mboxrd@z Thu Jan 1 00:00:00 1970 From: Maxim Cournoyer Subject: bug#26948: gnutls errors on multiple guix commands Date: Thu, 25 May 2017 00:26:01 -0700 Message-ID: <8737btieie.fsf@gmail.com> References: <8737c51e6r.fsf@gmail.com> <87shk3y74g.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37030) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dDnAq-0002pt-Ux for bug-guix@gnu.org; Thu, 25 May 2017 03:27:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dDnAk-0001Ur-To for bug-guix@gnu.org; Thu, 25 May 2017 03:27:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:34184) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dDnAk-0001Ud-Ok for bug-guix@gnu.org; Thu, 25 May 2017 03:27:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dDnAj-0007Lu-MY for bug-guix@gnu.org; Thu, 25 May 2017 03:27:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87shk3y74g.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Wed, 17 May 2017 14:56:15 +0200") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 26948@debbugs.gnu.org Hi Ludovic! ludo@gnu.org (Ludovic Court=C3=A8s) writes: > Hi Maxim, > > Maxim Cournoyer skribis: > >> This problem has been ongoing for some time. It prevents me from using >> things such as "guix lint" or "guix import" (seems to be related to >> certs and gnutls). I thought a guix system reconfigure (I'm on GuixSD) >> would fix it but it hasn't, even after rebooting the system. >> >> It is reminiscent of bug#25200, but there doesn't appear to be any >> dangling symlinks this time around. >> >> The nss-certs package is present in my operating system declaration, and >> the /etc/ssl/certs directory is populated ('/etc/ssl' is a symbolic link >> pointing to /run/current-system/profile/etc/ssl). >> >> SSL_CERT_DIR is set to "/etc/ssl/certs" >> SSL_CERT_FILE is set to "/etc/ssl/certs/ca-certificates.crt" >> >> >> A couple examples of how things break: >> >> * guix lint >> >> guix lint emacs >> Backtrace:macs@25.2 [cve]... >> 9 (primitive-load "/gnu/store/80k8kz7qk9palbn0ccw7y3fgym8&") >> In guix/ui.scm: >> 1257:8 8 (run-guix-command _ . _) >> In srfi/srfi-1.scm: >> 640:9 7 (for-each # &) >> In guix/scripts/lint.scm: >> 982:4 6 (run-checkers _ _) >> In srfi/srfi-1.scm: >> 640:9 5 (for-each # &) >> In guix/scripts/lint.scm: >> 805:4 4 (check-vulnerabilities _) >> 800:9 3 (_ _) >> In unknown file: >> 2 (force #) >> In guix/scripts/lint.scm: >> 789:24 1 (_) >> In ice-9/boot-9.scm: >> 837:9 0 (catch srfi-34 # &) >> >> ice-9/boot-9.scm:837:9: In procedure catch: >> ice-9/boot-9.scm:837:9: Throw to key `gnutls-error' with args `(# set-certificate-credentials-x509-tru= st-file!)'. > > So the problem here is that $SSL_CERT_DIR or $SSL_CERT_FILE is > unreadable for some reason. Could you =E2=80=98strace=E2=80=99 it to see= exactly which > file cannot be opened and why? > > However, I cannot reproduce it with current master: > > --8<---------------cut here---------------start------------->8--- > $ rm -rf ~/.cache/guix/cve > $ SSL_CERT_FILE=3D/sdfsfd SSL_CERT_DIR=3D/sdfs guix lint emacs > gnu/packages/emacs.scm:99:2: emacs@25.2: TLS certificate error: ERROR: X.= 509 certificate of 'www.gnu.org' could not be verified: > signer-not-found > invalid > > > guix lint: warning: TLS certificate error: ERROR: X.509 certificate of 's= tatic.nvd.nist.gov' could not be verified: > signer-not-found > invalid > > guix lint: warning: assuming no CVE vulnerabilities > --8<---------------cut here---------------end--------------->8--- > > This is the same story for the other ones. > > Essentially, this code from (guix build download): > > (define (make-credendials-with-ca-trust-files directory) > "Return certificate credentials with X.509 authority certificates rea= d from > DIRECTORY. Those authority certificates are checked when > 'peer-certificate-status' is later called." > (let ((cred (make-certificate-credentials)) > (files (or (scandir directory > (lambda (file) > (string-suffix? ".pem" file))) > '()))) > (for-each (lambda (file) > (let ((file (string-append directory "/" file))) > ;; Protect against dangling symlinks. > (when (file-exists? file) > (set-certificate-credentials-x509-trust-file! > cred file > x509-certificate-format/pem)))) > (or files '())) > cred)) > > seems to select a FILE that passes =E2=80=98file-exists?=E2=80=99 but tha= t cannot be > read by =E2=80=98set-certificate-credentials-x509-trust-file!=E2=80=99. = I think that > can happen with unreadable files (EPERM), though I can=E2=80=99t reproduc= e it. > > The =E2=80=98strace=E2=80=99 output should help us figure out what=E2=80= =99s going on. > > Thanks, > Ludo=E2=80=99. Thanks for the explanation and the suggestion of strace. Here's the (troncated from the point close to where the error occurs) strace: --8<---------------cut here---------------start------------->8--- stat("/etc/ssl/certs/ACCVRAIZ1:2.8.94.195.183.166.67.127.164.224.pem", {st_= mode=3DS_IFREG|0444, st_size=3D2939, ...}) =3D 0 open("/etc/ssl/certs/ACCVRAIZ1:2.8.94.195.183.166.67.127.164.224.pem", O_RD= ONLY) =3D 15 fstat(15, {st_mode=3DS_IFREG|0444, st_size=3D2939, ...}) =3D 0 lseek(15, 0, SEEK_CUR) =3D 0 fstat(15, {st_mode=3DS_IFREG|0444, st_size=3D2939, ...}) =3D 0 read(15, "# alias=3D\"ACCVRAIZ1\"\n# trust=3DCKA_"..., 4096) =3D 2939 read(15, "", 4096) =3D 0 close(15) =3D 0 stat("/etc/ssl/certs/ACEDICOM_Root:2.8.97.141.199.134.59.1.130.5.pem", {st_= mode=3DS_IFREG|0444, st_size=3D2212, ...}) =3D 0 open("/etc/ssl/certs/ACEDICOM_Root:2.8.97.141.199.134.59.1.130.5.pem", O_RD= ONLY) =3D 15 fstat(15, {st_mode=3DS_IFREG|0444, st_size=3D2212, ...}) =3D 0 lseek(15, 0, SEEK_CUR) =3D 0 fstat(15, {st_mode=3DS_IFREG|0444, st_size=3D2212, ...}) =3D 0 read(15, "# alias=3D\"ACEDICOM Root\"\n# trust=3D"..., 4096) =3D 2212 read(15, "", 4096) =3D 0 close(15) =3D 0 stat("/etc/ssl/certs/AC_Ra\303\255z_Certic\303\241mara_S.A.:2.15.7.126.82.1= 47.123.224.21.227.87.240.105.140.203.236.12.pem", {st_mode=3DS_IFREG|0444, = st_size=3D2444, ...}) =3D 0 open("/etc/ssl/certs/AC_Ra\303\255z_Certic\303\241mara_S.A.:2.15.7.126.82.1= 47.123.224.21.227.87.240.105.140.203.236.12.p", O_RDONLY) =3D -1 ENOENT (No= such file or directory) write(2, "Backtrace:\n", 11Backtrace: ) =3D 11 stat("/home/maxim/src/guix-packages/system/repl/debug.scm", 0x7ffe124af550)= =3D -1 ENOENT (No such file or directory) stat("/home/maxim/src/guix-packages/system/repl/debug", 0x7ffe124af550) =3D= -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/repl/debug.scm", 0x7ffe124af55= 0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/repl/debug", 0x7ffe124af550) = =3D -1 ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/system/repl/debug.scm", 0x7ffe124af550) =3D -1 ENOENT (No= such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/system/repl/debug", 0x7ffe124af550) =3D -1 ENOENT (No suc= h file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/repl/debug.scm", 0x7ffe124af550) =3D -1 ENOENT (No such= file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/repl/debug", 0x7ffe124af550) =3D -1 ENOENT (No such fil= e or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/repl/debug.scm", 0x7ffe124af550) =3D -1 ENOENT (No such= file or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/repl/debug", 0x7ffe124af550) =3D -1 ENOENT (No such fil= e or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/repl/debug.scm", 0x7ffe124af550) =3D -1 ENOENT (No= such file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/repl/debug", 0x7ffe124af550) =3D -1 ENOENT (No suc= h file or directory) stat("/home/maxim/src/guix/system/repl/debug.scm", 0x7ffe124af550) =3D -1 E= NOENT (No such file or directory) stat("/home/maxim/src/guix/system/repl/debug", 0x7ffe124af550) =3D -1 ENOEN= T (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/repl/debug.scm"= , 0x7ffe124af550) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/repl/debug", 0x= 7ffe124af550) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/repl/debug.sc= m", 0x7ffe124af550) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/repl/debug", = 0x7ffe124af550) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/share/guile/2= .2/system/repl/debug.scm", {st_mode=3DS_IFREG|0444, st_size=3D7461, ...}) = =3D 0 stat("/home/maxim/src/guix-packages/system/repl/debug.go", 0x7ffe124af360) = =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/repl/debug.go", 0x7ffe124af360= ) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/lib= /guile/2.2/site-ccache/system/repl/debug.go", 0x7ffe124af360) =3D -1 ENOENT= (No such file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/repl/debug.go", 0x7ffe124af360) =3D -1 ENOENT (No such = file or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/repl/debug.go", 0x7ffe124af360) =3D -1 ENOENT (No such = file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/repl/debug.go", 0x7ffe124af360) =3D -1 ENOENT (No = such file or directory) stat("/home/maxim/.guix-profile/lib/guile/2.2/site-ccache/system/repl/debug= .go", 0x7ffe124af360) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/repl/debug.go",= 0x7ffe124af360) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/lib/guile/2.2/site-ccache/system/repl/deb= ug.go", 0x7ffe124af360) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/repl/debug.go= ", 0x7ffe124af360) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/system/repl/debug.go", {st_mode=3DS_IFREG|0444, st_size=3D78421, ..= .}) =3D 0 open("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/system/repl/debug.go", O_RDONLY|O_CLOEXEC) =3D 15 lseek(15, 0, SEEK_END) =3D 78421 mmap(NULL, 78421, PROT_READ, MAP_PRIVATE, 15, 0) =3D 0x7fc6cdf14000 close(15) =3D 0 mprotect(0x7fc6cdf24000, 7112, PROT_READ|PROT_WRITE) =3D 0 stat("/home/maxim/src/guix-packages/system/base/syntax.scm", 0x7ffe124af1c0= ) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/src/guix-packages/system/base/syntax", 0x7ffe124af1c0) = =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/base/syntax.scm", 0x7ffe124af1= c0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/base/syntax", 0x7ffe124af1c0) = =3D -1 ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/system/base/syntax.scm", 0x7ffe124af1c0) =3D -1 ENOENT (N= o such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/system/base/syntax", 0x7ffe124af1c0) =3D -1 ENOENT (No su= ch file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/base/syntax.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No suc= h file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/base/syntax", 0x7ffe124af1c0) =3D -1 ENOENT (No such fi= le or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/base/syntax.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No suc= h file or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/base/syntax", 0x7ffe124af1c0) =3D -1 ENOENT (No such fi= le or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/base/syntax.scm", 0x7ffe124af1c0) =3D -1 ENOENT (N= o such file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/base/syntax", 0x7ffe124af1c0) =3D -1 ENOENT (No su= ch file or directory) stat("/home/maxim/src/guix/system/base/syntax.scm", 0x7ffe124af1c0) =3D -1 = ENOENT (No such file or directory) stat("/home/maxim/src/guix/system/base/syntax", 0x7ffe124af1c0) =3D -1 ENOE= NT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/base/syntax.scm= ", 0x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/base/syntax", 0= x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/base/syntax.s= cm", 0x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/base/syntax",= 0x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/share/guile/2= .2/system/base/syntax.scm", {st_mode=3DS_IFREG|0444, st_size=3D13135, ...})= =3D 0 stat("/home/maxim/src/guix-packages/system/base/syntax.go", 0x7ffe124aefd0)= =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/base/syntax.go", 0x7ffe124aefd= 0) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/lib= /guile/2.2/site-ccache/system/base/syntax.go", 0x7ffe124aefd0) =3D -1 ENOEN= T (No such file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/base/syntax.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such= file or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/base/syntax.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such= file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/base/syntax.go", 0x7ffe124aefd0) =3D -1 ENOENT (No= such file or directory) stat("/home/maxim/.guix-profile/lib/guile/2.2/site-ccache/system/base/synta= x.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/base/syntax.go"= , 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/lib/guile/2.2/site-ccache/system/base/syn= tax.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/base/syntax.g= o", 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/system/base/syntax.go", {st_mode=3DS_IFREG|0444, st_size=3D86477, .= ..}) =3D 0 open("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/system/base/syntax.go", O_RDONLY|O_CLOEXEC) =3D 15 lseek(15, 0, SEEK_END) =3D 86477 mmap(NULL, 86477, PROT_READ, MAP_PRIVATE, 15, 0) =3D 0x7fc6cdefe000 close(15) =3D 0 mprotect(0x7fc6cdf0e000, 9704, PROT_READ|PROT_WRITE) =3D 0 stat("/home/maxim/src/guix-packages/system/base/language.scm", 0x7ffe124af1= c0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/src/guix-packages/system/base/language", 0x7ffe124af1c0) = =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/base/language.scm", 0x7ffe124a= f1c0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/base/language", 0x7ffe124af1c0= ) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/system/base/language.scm", 0x7ffe124af1c0) =3D -1 ENOENT = (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/system/base/language", 0x7ffe124af1c0) =3D -1 ENOENT (No = such file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/base/language.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No s= uch file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/base/language", 0x7ffe124af1c0) =3D -1 ENOENT (No such = file or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/base/language.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No s= uch file or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/base/language", 0x7ffe124af1c0) =3D -1 ENOENT (No such = file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/base/language.scm", 0x7ffe124af1c0) =3D -1 ENOENT = (No such file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/base/language", 0x7ffe124af1c0) =3D -1 ENOENT (No = such file or directory) stat("/home/maxim/src/guix/system/base/language.scm", 0x7ffe124af1c0) =3D -= 1 ENOENT (No such file or directory) stat("/home/maxim/src/guix/system/base/language", 0x7ffe124af1c0) =3D -1 EN= OENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/base/language.s= cm", 0x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/base/language",= 0x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/base/language= .scm", 0x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/base/language= ", 0x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/share/guile/2= .2/system/base/language.scm", {st_mode=3DS_IFREG|0444, st_size=3D3799, ...}= ) =3D 0 stat("/home/maxim/src/guix-packages/system/base/language.go", 0x7ffe124aefd= 0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/base/language.go", 0x7ffe124ae= fd0) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/lib= /guile/2.2/site-ccache/system/base/language.go", 0x7ffe124aefd0) =3D -1 ENO= ENT (No such file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/base/language.go", 0x7ffe124aefd0) =3D -1 ENOENT (No su= ch file or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/base/language.go", 0x7ffe124aefd0) =3D -1 ENOENT (No su= ch file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/base/language.go", 0x7ffe124aefd0) =3D -1 ENOENT (= No such file or directory) stat("/home/maxim/.guix-profile/lib/guile/2.2/site-ccache/system/base/langu= age.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/base/language.g= o", 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/lib/guile/2.2/site-ccache/system/base/lan= guage.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/base/language= .go", 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/system/base/language.go", {st_mode=3DS_IFREG|0444, st_size=3D74965,= ...}) =3D 0 open("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/system/base/language.go", O_RDONLY|O_CLOEXEC) =3D 15 lseek(15, 0, SEEK_END) =3D 74965 mmap(NULL, 74965, PROT_READ, MAP_PRIVATE, 15, 0) =3D 0x7fc6cdeeb000 close(15) =3D 0 mprotect(0x7fc6cdefb000, 4408, PROT_READ|PROT_WRITE) =3D 0 stat("/home/maxim/src/guix-packages/system/vm/vm.scm", 0x7ffe124af1c0) =3D = -1 ENOENT (No such file or directory) stat("/home/maxim/src/guix-packages/system/vm/vm", 0x7ffe124af1c0) =3D -1 E= NOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/vm/vm.scm", 0x7ffe124af1c0) = =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/vm/vm", 0x7ffe124af1c0) =3D -1= ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/system/vm/vm.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No such= file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/system/vm/vm", 0x7ffe124af1c0) =3D -1 ENOENT (No such fil= e or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/vm/vm.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No such file= or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/vm/vm", 0x7ffe124af1c0) =3D -1 ENOENT (No such file or = directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/vm/vm.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No such file= or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/vm/vm", 0x7ffe124af1c0) =3D -1 ENOENT (No such file or = directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/vm/vm.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No such= file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/vm/vm", 0x7ffe124af1c0) =3D -1 ENOENT (No such fil= e or directory) stat("/home/maxim/src/guix/system/vm/vm.scm", 0x7ffe124af1c0) =3D -1 ENOENT= (No such file or directory) stat("/home/maxim/src/guix/system/vm/vm", 0x7ffe124af1c0) =3D -1 ENOENT (No= such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/vm/vm.scm", 0x7= ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/vm/vm", 0x7ffe1= 24af1c0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/vm/vm.scm", 0= x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/vm/vm", 0x7ff= e124af1c0) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/share/guile/2= .2/system/vm/vm.scm", {st_mode=3DS_IFREG|0444, st_size=3D1321, ...}) =3D 0 stat("/home/maxim/src/guix-packages/system/vm/vm.go", 0x7ffe124aefd0) =3D -= 1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/vm/vm.go", 0x7ffe124aefd0) =3D= -1 ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/lib= /guile/2.2/site-ccache/system/vm/vm.go", 0x7ffe124aefd0) =3D -1 ENOENT (No = such file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/vm/vm.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such file = or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/vm/vm.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such file = or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/vm/vm.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such = file or directory) stat("/home/maxim/.guix-profile/lib/guile/2.2/site-ccache/system/vm/vm.go",= 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/vm/vm.go", 0x7f= fe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/lib/guile/2.2/site-ccache/system/vm/vm.go= ", 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/vm/vm.go", 0x= 7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/system/vm/vm.go", {st_mode=3DS_IFREG|0444, st_size=3D68797, ...}) = =3D 0 open("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/system/vm/vm.go", O_RDONLY|O_CLOEXEC) =3D 15 lseek(15, 0, SEEK_END) =3D 68797 mmap(NULL, 68797, PROT_READ, MAP_PRIVATE, 15, 0) =3D 0x7fc6cdeda000 close(15) =3D 0 mprotect(0x7fc6cdeea000, 1280, PROT_READ|PROT_WRITE) =3D 0 stat("/home/maxim/src/guix-packages/system/vm/frame.scm", 0x7ffe124af1c0) = =3D -1 ENOENT (No such file or directory) stat("/home/maxim/src/guix-packages/system/vm/frame", 0x7ffe124af1c0) =3D -= 1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/vm/frame.scm", 0x7ffe124af1c0)= =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/vm/frame", 0x7ffe124af1c0) =3D= -1 ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/system/vm/frame.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No s= uch file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/system/vm/frame", 0x7ffe124af1c0) =3D -1 ENOENT (No such = file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/vm/frame.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No such f= ile or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/vm/frame", 0x7ffe124af1c0) =3D -1 ENOENT (No such file = or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/vm/frame.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No such f= ile or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/vm/frame", 0x7ffe124af1c0) =3D -1 ENOENT (No such file = or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/vm/frame.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No s= uch file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/vm/frame", 0x7ffe124af1c0) =3D -1 ENOENT (No such = file or directory) stat("/home/maxim/src/guix/system/vm/frame.scm", 0x7ffe124af1c0) =3D -1 ENO= ENT (No such file or directory) stat("/home/maxim/src/guix/system/vm/frame", 0x7ffe124af1c0) =3D -1 ENOENT = (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/vm/frame.scm", = 0x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/vm/frame", 0x7f= fe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/vm/frame.scm"= , 0x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/vm/frame", 0x= 7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/share/guile/2= .2/system/vm/frame.scm", {st_mode=3DS_IFREG|0444, st_size=3D19619, ...}) = =3D 0 stat("/home/maxim/src/guix-packages/system/vm/frame.go", 0x7ffe124aefd0) = =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/vm/frame.go", 0x7ffe124aefd0) = =3D -1 ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/lib= /guile/2.2/site-ccache/system/vm/frame.go", 0x7ffe124aefd0) =3D -1 ENOENT (= No such file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/vm/frame.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such fi= le or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/vm/frame.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such fi= le or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/vm/frame.go", 0x7ffe124aefd0) =3D -1 ENOENT (No su= ch file or directory) stat("/home/maxim/.guix-profile/lib/guile/2.2/site-ccache/system/vm/frame.g= o", 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/vm/frame.go", 0= x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/lib/guile/2.2/site-ccache/system/vm/frame= .go", 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/vm/frame.go",= 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/system/vm/frame.go", {st_mode=3DS_IFREG|0444, st_size=3D188181, ...= }) =3D 0 open("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/system/vm/frame.go", O_RDONLY|O_CLOEXEC) =3D 15 lseek(15, 0, SEEK_END) =3D 188181 mmap(NULL, 188181, PROT_READ, MAP_PRIVATE, 15, 0) =3D 0x7fc6cdeac000 close(15) =3D 0 mprotect(0x7fc6cdecc000, 39688, PROT_READ|PROT_WRITE) =3D 0 stat("/home/maxim/src/guix-packages/system/vm/disassembler.scm", 0x7ffe124a= ee30) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/src/guix-packages/system/vm/disassembler", 0x7ffe124aee30= ) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/vm/disassembler.scm", 0x7ffe12= 4aee30) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/vm/disassembler", 0x7ffe124aee= 30) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/system/vm/disassembler.scm", 0x7ffe124aee30) =3D -1 ENOEN= T (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/system/vm/disassembler", 0x7ffe124aee30) =3D -1 ENOENT (N= o such file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/vm/disassembler.scm", 0x7ffe124aee30) =3D -1 ENOENT (No= such file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/vm/disassembler", 0x7ffe124aee30) =3D -1 ENOENT (No suc= h file or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/vm/disassembler.scm", 0x7ffe124aee30) =3D -1 ENOENT (No= such file or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/vm/disassembler", 0x7ffe124aee30) =3D -1 ENOENT (No suc= h file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/vm/disassembler.scm", 0x7ffe124aee30) =3D -1 ENOEN= T (No such file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/vm/disassembler", 0x7ffe124aee30) =3D -1 ENOENT (N= o such file or directory) stat("/home/maxim/src/guix/system/vm/disassembler.scm", 0x7ffe124aee30) =3D= -1 ENOENT (No such file or directory) stat("/home/maxim/src/guix/system/vm/disassembler", 0x7ffe124aee30) =3D -1 = ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/vm/disassembler= .scm", 0x7ffe124aee30) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/vm/disassembler= ", 0x7ffe124aee30) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/vm/disassembl= er.scm", 0x7ffe124aee30) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/vm/disassembl= er", 0x7ffe124aee30) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/share/guile/2= .2/system/vm/disassembler.scm", {st_mode=3DS_IFREG|0444, st_size=3D25824, .= ..}) =3D 0 stat("/home/maxim/src/guix-packages/system/vm/disassembler.go", 0x7ffe124ae= c40) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/vm/disassembler.go", 0x7ffe124= aec40) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/lib= /guile/2.2/site-ccache/system/vm/disassembler.go", 0x7ffe124aec40) =3D -1 E= NOENT (No such file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/vm/disassembler.go", 0x7ffe124aec40) =3D -1 ENOENT (No = such file or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/vm/disassembler.go", 0x7ffe124aec40) =3D -1 ENOENT (No = such file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/vm/disassembler.go", 0x7ffe124aec40) =3D -1 ENOENT= (No such file or directory) stat("/home/maxim/.guix-profile/lib/guile/2.2/site-ccache/system/vm/disasse= mbler.go", 0x7ffe124aec40) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/vm/disassembler= .go", 0x7ffe124aec40) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/lib/guile/2.2/site-ccache/system/vm/disas= sembler.go", 0x7ffe124aec40) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/vm/disassembl= er.go", 0x7ffe124aec40) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/system/vm/disassembler.go", {st_mode=3DS_IFREG|0444, st_size=3D3205= 49, ...}) =3D 0 open("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/system/vm/disassembler.go", O_RDONLY|O_CLOEXEC) =3D 15 lseek(15, 0, SEEK_END) =3D 320549 mmap(NULL, 320549, PROT_READ, MAP_PRIVATE, 15, 0) =3D 0x7fc6cde5d000 close(15) =3D 0 mprotect(0x7fc6cde8d000, 46848, PROT_READ|PROT_WRITE) =3D 0 stat("/home/maxim/src/guix-packages/language/bytecode.scm", 0x7ffe124aeaa0)= =3D -1 ENOENT (No such file or directory) stat("/home/maxim/src/guix-packages/language/bytecode", 0x7ffe124aeaa0) =3D= -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/language/bytecode.scm", 0x7ffe124aeaa= 0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/language/bytecode", 0x7ffe124aeaa0) = =3D -1 ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/language/bytecode.scm", 0x7ffe124aeaa0) =3D -1 ENOENT (No= such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/language/bytecode", 0x7ffe124aeaa0) =3D -1 ENOENT (No suc= h file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/language/bytecode.scm", 0x7ffe124aeaa0) =3D -1 ENOENT (No such= file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/language/bytecode", 0x7ffe124aeaa0) =3D -1 ENOENT (No such fil= e or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/language/bytecode.scm", 0x7ffe124aeaa0) =3D -1 ENOENT (No such= file or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/language/bytecode", 0x7ffe124aeaa0) =3D -1 ENOENT (No such fil= e or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/language/bytecode.scm", 0x7ffe124aeaa0) =3D -1 ENOENT (No= such file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/language/bytecode", 0x7ffe124aeaa0) =3D -1 ENOENT (No suc= h file or directory) stat("/home/maxim/src/guix/language/bytecode.scm", 0x7ffe124aeaa0) =3D -1 E= NOENT (No such file or directory) stat("/home/maxim/src/guix/language/bytecode", 0x7ffe124aeaa0) =3D -1 ENOEN= T (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/language/bytecode.scm"= , 0x7ffe124aeaa0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/language/bytecode", 0x= 7ffe124aeaa0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/language/bytecode.sc= m", 0x7ffe124aeaa0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/language/bytecode", = 0x7ffe124aeaa0) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/share/guile/2= .2/language/bytecode.scm", {st_mode=3DS_IFREG|0444, st_size=3D3150, ...}) = =3D 0 stat("/home/maxim/src/guix-packages/language/bytecode.go", 0x7ffe124ae8b0) = =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/language/bytecode.go", 0x7ffe124ae8b0= ) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/lib= /guile/2.2/site-ccache/language/bytecode.go", 0x7ffe124ae8b0) =3D -1 ENOENT= (No such file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/language/bytecode.go", 0x7ffe124ae8b0) =3D -1 ENOENT (No such = file or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/language/bytecode.go", 0x7ffe124ae8b0) =3D -1 ENOENT (No such = file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/language/bytecode.go", 0x7ffe124ae8b0) =3D -1 ENOENT (No = such file or directory) stat("/home/maxim/.guix-profile/lib/guile/2.2/site-ccache/language/bytecode= .go", 0x7ffe124ae8b0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/language/bytecode.go",= 0x7ffe124ae8b0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/lib/guile/2.2/site-ccache/language/byteco= de.go", 0x7ffe124ae8b0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/language/bytecode.go= ", 0x7ffe124ae8b0) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/language/bytecode.go", {st_mode=3DS_IFREG|0444, st_size=3D72661, ..= .}) =3D 0 open("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/language/bytecode.go", O_RDONLY|O_CLOEXEC) =3D 15 lseek(15, 0, SEEK_END) =3D 72661 mmap(NULL, 72661, PROT_READ, MAP_PRIVATE, 15, 0) =3D 0x7fc6cde4b000 close(15) =3D 0 mprotect(0x7fc6cde5b000, 3680, PROT_READ|PROT_WRITE) =3D 0 stat("/home/maxim/src/guix-packages/ice-9/pretty-print.scm", 0x7ffe124af1c0= ) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/src/guix-packages/ice-9/pretty-print", 0x7ffe124af1c0) = =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/ice-9/pretty-print.scm", 0x7ffe124af1= c0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/ice-9/pretty-print", 0x7ffe124af1c0) = =3D -1 ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/ice-9/pretty-print.scm", 0x7ffe124af1c0) =3D -1 ENOENT (N= o such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/ice-9/pretty-print", 0x7ffe124af1c0) =3D -1 ENOENT (No su= ch file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/ice-9/pretty-print.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No suc= h file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/ice-9/pretty-print", 0x7ffe124af1c0) =3D -1 ENOENT (No such fi= le or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/ice-9/pretty-print.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No suc= h file or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/ice-9/pretty-print", 0x7ffe124af1c0) =3D -1 ENOENT (No such fi= le or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/ice-9/pretty-print.scm", 0x7ffe124af1c0) =3D -1 ENOENT (N= o such file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/ice-9/pretty-print", 0x7ffe124af1c0) =3D -1 ENOENT (No su= ch file or directory) stat("/home/maxim/src/guix/ice-9/pretty-print.scm", 0x7ffe124af1c0) =3D -1 = ENOENT (No such file or directory) stat("/home/maxim/src/guix/ice-9/pretty-print", 0x7ffe124af1c0) =3D -1 ENOE= NT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/ice-9/pretty-print.scm= ", 0x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/ice-9/pretty-print", 0= x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/ice-9/pretty-print.s= cm", 0x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/ice-9/pretty-print",= 0x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/share/guile/2= .2/ice-9/pretty-print.scm", {st_mode=3DS_IFREG|0444, st_size=3D16949, ...})= =3D 0 stat("/home/maxim/src/guix-packages/ice-9/pretty-print.go", 0x7ffe124aefd0)= =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/ice-9/pretty-print.go", 0x7ffe124aefd= 0) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/lib= /guile/2.2/site-ccache/ice-9/pretty-print.go", 0x7ffe124aefd0) =3D -1 ENOEN= T (No such file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/ice-9/pretty-print.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such= file or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/ice-9/pretty-print.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such= file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/ice-9/pretty-print.go", 0x7ffe124aefd0) =3D -1 ENOENT (No= such file or directory) stat("/home/maxim/.guix-profile/lib/guile/2.2/site-ccache/ice-9/pretty-prin= t.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/ice-9/pretty-print.go"= , 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/lib/guile/2.2/site-ccache/ice-9/pretty-pr= int.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/ice-9/pretty-print.g= o", 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/ice-9/pretty-print.go", {st_mode=3DS_IFREG|0444, st_size=3D83317, .= ..}) =3D 0 open("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/ice-9/pretty-print.go", O_RDONLY|O_CLOEXEC) =3D 15 lseek(15, 0, SEEK_END) =3D 83317 mmap(NULL, 83317, PROT_READ, MAP_PRIVATE, 15, 0) =3D 0x7fc6cde36000 close(15) =3D 0 mprotect(0x7fc6cde46000, 5656, PROT_READ|PROT_WRITE) =3D 0 stat("/home/maxim/src/guix-packages/system/vm/inspect.scm", 0x7ffe124af1c0)= =3D -1 ENOENT (No such file or directory) stat("/home/maxim/src/guix-packages/system/vm/inspect", 0x7ffe124af1c0) =3D= -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/vm/inspect.scm", 0x7ffe124af1c= 0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/vm/inspect", 0x7ffe124af1c0) = =3D -1 ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/system/vm/inspect.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No= such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/sha= re/guile/site/2.2/system/vm/inspect", 0x7ffe124af1c0) =3D -1 ENOENT (No suc= h file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/vm/inspect.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No such= file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/vm/inspect", 0x7ffe124af1c0) =3D -1 ENOENT (No such fil= e or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/vm/inspect.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No such= file or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/vm/inspect", 0x7ffe124af1c0) =3D -1 ENOENT (No such fil= e or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/vm/inspect.scm", 0x7ffe124af1c0) =3D -1 ENOENT (No= such file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/vm/inspect", 0x7ffe124af1c0) =3D -1 ENOENT (No suc= h file or directory) stat("/home/maxim/src/guix/system/vm/inspect.scm", 0x7ffe124af1c0) =3D -1 E= NOENT (No such file or directory) stat("/home/maxim/src/guix/system/vm/inspect", 0x7ffe124af1c0) =3D -1 ENOEN= T (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/vm/inspect.scm"= , 0x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/vm/inspect", 0x= 7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/vm/inspect.sc= m", 0x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/vm/inspect", = 0x7ffe124af1c0) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/share/guile/2= .2/system/vm/inspect.scm", {st_mode=3DS_IFREG|0444, st_size=3D6056, ...}) = =3D 0 stat("/home/maxim/src/guix-packages/system/vm/inspect.go", 0x7ffe124aefd0) = =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.config/guix/latest/system/vm/inspect.go", 0x7ffe124aefd0= ) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.13.0-1.a6d728b/lib= /guile/2.2/site-ccache/system/vm/inspect.go", 0x7ffe124aefd0) =3D -1 ENOENT= (No such file or directory) stat("/gnu/store/l2paa4ka8lglar0b778qzl7a6h2v5dzn-guile-json-0.6.0/share/gu= ile/site/2.2/system/vm/inspect.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such = file or directory) stat("/gnu/store/s6wlq1i2412xv0i57k5av2a1ir434rpv-guile-ssh-0.11.0/share/gu= ile/site/2.2/system/vm/inspect.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such = file or directory) stat("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/guile/site/2.2/system/vm/inspect.go", 0x7ffe124aefd0) =3D -1 ENOENT (No = such file or directory) stat("/home/maxim/.guix-profile/lib/guile/2.2/site-ccache/system/vm/inspect= .go", 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/home/maxim/.guix-profile/share/guile/site/2.2/system/vm/inspect.go",= 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/lib/guile/2.2/site-ccache/system/vm/inspe= ct.go", 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/run/current-system/profile/share/guile/site/2.2/system/vm/inspect.go= ", 0x7ffe124aefd0) =3D -1 ENOENT (No such file or directory) stat("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/system/vm/inspect.go", {st_mode=3DS_IFREG|0444, st_size=3D76301, ..= .}) =3D 0 open("/gnu/store/5zx29y44nrqj0s8h3jlvlj82k8hj4dxs-guile-2.2.2/lib/guile/2.2= /ccache/system/vm/inspect.go", O_RDONLY|O_CLOEXEC) =3D 15 lseek(15, 0, SEEK_END) =3D 76301 mmap(NULL, 76301, PROT_READ, MAP_PRIVATE, 15, 0) =3D 0x7fc6cde23000 close(15) =3D 0 mprotect(0x7fc6cde33000, 4584, PROT_READ|PROT_WRITE) =3D 0 futex(0x7fc6d81f4928, FUTEX_WAKE_PRIVATE, 2147483647) =3D 0 write(2, " 9 (primitive-load \"/g"..., 87 9 (primitive-= load "/gnu/store/04gdnvw7k8mnpzs9ig5kwmblzvgkxm4a-guix-0.=E2=80=A6") ) =3D 87 write(2, "In guix/ui.scm:\n", 16In guix/ui.scm: ) =3D 16 write(2, " 1264:8 8 (run-guix-command _"..., 38 1264:8 8 (run-guix-co= mmand _ . _) ) =3D 38 write(2, "In srfi/srfi-1.scm:\n", 20In srfi/srfi-1.scm: ) =3D 20 write(2, " 640:9 7 (for-each # =E2=80=A6) ) =3D 90 write(2, "In guix/scripts/lint.scm:\n", 26In guix/scripts/lint.scm: ) =3D 26 write(2, " 982:4 6 (run-checkers _ _)\n", 32 982:4 6 (run-checkers = _ _) ) =3D 32 write(2, "In srfi/srfi-1.scm:\n", 20In srfi/srfi-1.scm: ) =3D 20 write(2, " 640:9 5 (for-each # =E2=80=A6) ) =3D 90 write(2, "In guix/scripts/lint.scm:\n", 26In guix/scripts/lint.scm: ) =3D 26 write(2, " 805:4 4 (check-vulnerabilit"..., 39 805:4 4 (check-vulne= rabilities _) ) =3D 39 write(2, " 800:9 3 (_ _)\n", 19 800:9 3 (_ _) ) =3D 19 write(2, "In unknown file:\n", 17In unknown file: ) =3D 17 write(2, " 2 (force #) ) =3D 87 write(2, "In guix/scripts/lint.scm:\n", 26In guix/scripts/lint.scm: ) =3D 26 write(2, " 789:24 1 (_)\n", 17 789:24 1 (_) ) =3D 17 write(2, "In ice-9/boot-9.scm:\n", 21In ice-9/boot-9.scm: ) =3D 21 write(2, " 837:9 0 (catch srfi-34 # =E2=80=A6) ) =3D 90 write(2, "\n", 1 ) =3D 1 futex(0x7fc6d81f4930, FUTEX_WAKE_PRIVATE, 2147483647) =3D 0 futex(0x7fc6d81f4fc8, FUTEX_WAKE_PRIVATE, 2147483647) =3D 0 write(2, "ice-9/boot-9.scm:837:9: In proce"..., 44ice-9/boot-9.scm:837:9: I= n procedure catch: ) =3D 44 open("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/locale/en_US.UTF-8/LC_MESSAGES/gnutls.mo", O_RDONLY) =3D -1 ENOENT (No s= uch file or directory) open("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/locale/en_US.utf8/LC_MESSAGES/gnutls.mo", O_RDONLY) =3D -1 ENOENT (No su= ch file or directory) open("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/locale/en_US/LC_MESSAGES/gnutls.mo", O_RDONLY) =3D -1 ENOENT (No such fi= le or directory) open("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/locale/en.UTF-8/LC_MESSAGES/gnutls.mo", O_RDONLY) =3D -1 ENOENT (No such= file or directory) open("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/locale/en.utf8/LC_MESSAGES/gnutls.mo", O_RDONLY) =3D -1 ENOENT (No such = file or directory) open("/gnu/store/fa6rba5r6m5ad1hy80ngmyc3r391lf9r-guile2.2-gnutls-3.5.9/sha= re/locale/en/LC_MESSAGES/gnutls.mo", O_RDONLY) =3D -1 ENOENT (No such file = or directory) write(2, "ice-9/boot-9.scm:837:9: Throw to"..., 159ice-9/boot-9.scm:837:9: = Throw to key `gnutls-error' with args `(# set-certificate-credentials-x509-trust-file!)'. ) =3D 159 exit_group(1) =3D ? +++ exited with 1 +++ --8<---------------cut here---------------end--------------->8--- It seems that the problem is caused by the file: "/etc/ssl/certs/AC_Ra\303\255z_Certic\303\241mara_S.A.:2.15.7.126.82.147.12= 3.224.21.227.87.240.105.140.203.236.12.p". The strange thing is that it shouldn't even get into the `files' variable since we are scanning for files ending with a ".pem" suffix. --8<---------------cut here---------------start------------->8--- ls /etc/ssl/certs/AC*2.15.7.126* /etc/ssl/certs/AC_Ra=C3=ADz_Certic=C3=A1mara_S.A.:2.15.7.126.82.147.123.224= .21.227.87.240.105.140.203.236.12.pem --8<---------------cut here---------------end--------------->8--- It looks like I have a locale problem? In my operating-system definition, I'm using (locale "en_US.UTF-8") and the locale-definitions field is not set (which means it's using %DEFAULT-LOCALE-DEFINITIONS). I also have the following installed in my user profile: --8<---------------cut here---------------start------------->8--- guix package -I locale glibc-locales 2.25 out /gnu/store/2d97vjjx23w3bhwp4sbylwcx6l5fy8g2= -glibc-locales-2.25 --8<---------------cut here---------------end--------------->8--- Finally, --8<---------------cut here---------------start------------->8--- set | grep LOC GUIX_LOCPATH=3D/run/current-system/locale XTERM_LOCALE=3Den_US.UTF-8 --8<---------------cut here---------------end--------------->8--- I would have liked to exercise the `make-credendials-with-ca-trust-files' function to debug but there's a `make-certificate-credentials' function called which I coudln't source (where does it come from? Doing C-c . u in Geiser didn't help making it visible, as did grepping the Guix sources for its definition) Thanks for you patience, and sorry for the delayed follow-up. Maxim