======================================== GNU Guix UNKNOWN: ./test-suite.log ======================================== # TOTAL: 2079 # PASS: 2024 # SKIP: 45 # XFAIL: 1 # FAIL: 9 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 SKIP: tests/channels ==================== test-name: channel-instance-metadata returns default if .guix-channel does not exist location: /home/akyle/guix/tests/channels.scm:117 source: + (test-equal + "channel-instance-metadata returns default if .guix-channel does not exist" + '("/" ()) + (let ((metadata + (channel-instance-metadata instance--boring))) + (list (channel-metadata-directory metadata) + (channel-metadata-dependencies metadata)))) expected-value: ("/" ()) actual-value: ("/" ()) result: PASS test-name: channel-instance-metadata and default dependencies location: /home/akyle/guix/tests/channels.scm:123 source: + (test-equal + "channel-instance-metadata and default dependencies" + '() + (channel-metadata-dependencies + (channel-instance-metadata instance--no-deps))) expected-value: () actual-value: () result: PASS test-name: channel-instance-metadata and directory location: /home/akyle/guix/tests/channels.scm:127 source: + (test-equal + "channel-instance-metadata and directory" + "/modules" + (channel-metadata-directory + (channel-instance-metadata + instance--sub-directory))) expected-value: "/modules" actual-value: "/modules" result: PASS test-name: channel-instance-metadata rejects unsupported version location: /home/akyle/guix/tests/channels.scm:132 source: + (test-equal + "channel-instance-metadata rejects unsupported version" + 1 + (guard (c ((and (message-condition? c) (error-location? c)) + (location-line (error-location c)))) + (channel-instance-metadata + instance--unsupported-version))) expected-value: 1 actual-value: 1 result: PASS test-name: channel-instance-metadata returns location: /home/akyle/guix/tests/channels.scm:138 source: + (test-assert + "channel-instance-metadata returns " + (every (@@ (guix channels) channel-metadata?) + (map channel-instance-metadata + (list instance--no-deps + instance--simple + instance--with-dupes)))) actual-value: #t result: PASS test-name: channel-instance-metadata dependencies are channels location: /home/akyle/guix/tests/channels.scm:145 source: + (test-assert + "channel-instance-metadata dependencies are channels" + (let ((deps ((@@ (guix channels) + channel-metadata-dependencies) + (channel-instance-metadata instance--simple)))) + (match deps (((? channel? dep)) #t) (_ #f)))) actual-value: #t result: PASS test-name: latest-channel-instances includes channel dependencies location: /home/akyle/guix/tests/channels.scm:152 source: + (test-assert + "latest-channel-instances includes channel dependencies" + (let* ((channel (channel (name 'test) (url "test"))) + (test-dir + (channel-instance-checkout instance--simple))) + (mock ((guix git) + update-cached-checkout + (lambda* (url #:key ref starting-commit) + (match url + ("test" (values test-dir "caf3cabba9e" #f)) + (_ (values + (channel-instance-checkout instance--no-deps) + "abcde1234" + #f))))) + (with-store + store + (let ((instances + (latest-channel-instances store (list channel)))) + (and (eq? 2 (length instances)) + (lset= eq? + '(test test-channel) + (map (compose + channel-name + channel-instance-channel) + instances)))))))) actual-value: #t result: PASS test-name: latest-channel-instances excludes duplicate channel dependencies location: /home/akyle/guix/tests/channels.scm:171 source: + (test-assert + "latest-channel-instances excludes duplicate channel dependencies" + (let* ((channel (channel (name 'test) (url "test"))) + (test-dir + (channel-instance-checkout instance--with-dupes))) + (mock ((guix git) + update-cached-checkout + (lambda* (url #:key ref starting-commit) + (match url + ("test" (values test-dir "caf3cabba9e" #f)) + (_ (values + (channel-instance-checkout instance--no-deps) + "abcde1234" + #f))))) + (with-store + store + (let ((instances + (latest-channel-instances store (list channel)))) + (and (= 2 (length instances)) + (lset= eq? + '(test test-channel) + (map (compose + channel-name + channel-instance-channel) + instances)) + (find (lambda (instance) + (and (eq? (channel-name + (channel-instance-channel instance)) + 'test-channel) + (string=? + (channel-commit + (channel-instance-channel instance)) + "abc1234"))) + instances))))))) actual-value: #< channel: #< name: test-channel url: "https://example.com/test-channel" branch: "master" commit: "abc1234" introduction: #f location: ((filename . "guix/channels.scm") (line . 262) (column . 19))> commit: "abcde1234" checkout: "/home/akyle/guix/test-tmp/store/y57avmqb03q11p379rcq9z8syhhfmsds-test-channel-abcde12"> result: PASS test-name: latest-channel-instances #:validate-pull location: /home/akyle/guix/tests/channels.scm:201 source: + (test-equal + "latest-channel-instances #:validate-pull" + 'descendant + (let/ec + return + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "first commit") + (add "b.scm" "#t") + (commit "second commit")) + (with-repository + directory + repository + (let* ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second")) + (spec (channel + (url (string-append "file://" directory)) + (name 'foo))) + (new (channel + (inherit spec) + (commit (oid->string (commit-id commit2))))) + (old (channel + (inherit spec) + (commit (oid->string (commit-id commit1)))))) + (define (validate-pull channel current commit relation) + (return + (and (eq? channel old) + (string=? + (oid->string (commit-id commit2)) + current) + (string=? + (oid->string (commit-id commit1)) + commit) + relation))) + (with-store + store + (latest-channel-instances + store + (list old) + #:current-channels + (list new) + #:validate-pull + validate-pull))))))) result: SKIP test-name: channel-instances->manifest location: /home/akyle/guix/tests/channels.scm:234 source: + (test-assert + "channel-instances->manifest" + (let* ((spec (lambda deps + `(channel + (version 0) + (dependencies + ,@(map (lambda (dep) + `(channel + (name ,dep) + (url "http://example.org"))) + deps))))) + (guix (make-instance #:name 'guix)) + (instance0 (make-instance #:name 'a)) + (instance1 + (make-instance #:name 'b #:spec (spec 'a))) + (instance2 + (make-instance #:name 'c #:spec (spec 'b))) + (instance3 + (make-instance #:name 'd #:spec (spec 'c 'a)))) + (%graft? #f) + (let ((source (channel-instance-checkout guix))) + (mkdir (string-append source "/build-aux")) + (call-with-output-file + (string-append + source + "/build-aux/build-self.scm") + (lambda (port) + (write '(begin + (use-modules (guix) (gnu packages bootstrap)) + (lambda _ (package->derivation %bootstrap-guile))) + port)))) + (with-store + store + (let () + (define manifest + (run-with-store + store + (channel-instances->manifest + (list guix + instance0 + instance1 + instance2 + instance3)))) + (define entries (manifest-entries manifest)) + (define (depends? drv in out) + (let ((set (list->set + (requisites + store + (list (derivation-file-name drv))))) + (in (map derivation-file-name in)) + (out (map derivation-file-name out))) + (and (every (cut set-contains? set <>) in) + (not (any (cut set-contains? set <>) out))))) + (define (lookup name) + (run-with-store + store + (lower-object + (manifest-entry-item + (manifest-lookup + manifest + (manifest-pattern (name name))))))) + (let ((drv-guix (lookup "guix")) + (drv0 (lookup "a")) + (drv1 (lookup "b")) + (drv2 (lookup "c")) + (drv3 (lookup "d"))) + (and (depends? + drv-guix + '() + (list drv0 drv1 drv2 drv3)) + (depends? drv0 (list) (list drv1 drv2 drv3)) + (depends? drv1 (list drv0) (list drv2 drv3)) + (depends? drv2 (list drv1) (list drv3)) + (depends? drv3 (list drv2 drv0) (list)))))))) actual-value: #t result: PASS test-name: channel-news, no news location: /home/akyle/guix/tests/channels.scm:311 source: + (test-equal + "channel-news, no news" + '() + (with-temporary-git-repository + directory + '((add "a.txt" "A") (commit "the commit")) + (with-repository + directory + repository + (let ((channel + (channel + (url (string-append "file://" directory)) + (name 'foo))) + (latest (reference-name->oid repository "HEAD"))) + (channel-news-for-commit + channel + (oid->string latest)))))) result: SKIP test-name: channel-news, one entry location: /home/akyle/guix/tests/channels.scm:323 source: + (test-assert + "channel-news, one entry" + (with-temporary-git-repository + directory + `((add ".guix-channel" + ,(object->string + '(channel (version 0) (news-file "news.scm")))) + (commit "first commit") + (add "src/a.txt" "A") + (commit "second commit") + (tag "tag-for-first-news-entry") + (add "news.scm" + ,(lambda (repository) + (let ((previous + (reference-name->oid repository "HEAD"))) + (object->string + `(channel-news + (version 0) + (entry (commit ,(oid->string previous)) + (title (en "New file!") (eo "Nova dosiero!")) + (body (en "Yeah, a.txt.")))))))) + (commit "third commit") + (add "src/b.txt" "B") + (commit "fourth commit") + (add "news.scm" + ,(lambda (repository) + (let ((second + (commit-id + (find-commit repository "second commit"))) + (previous + (reference-name->oid repository "HEAD"))) + (object->string + `(channel-news + (version 0) + (entry (commit ,(oid->string previous)) + (title (en "Another file!")) + (body (en "Yeah, b.txt."))) + (entry (tag "tag-for-first-news-entry") + (title (en "Old news.") (eo "Malnova?oj.")) + (body (en "For a.txt")))))))) + (commit "fifth commit")) + (with-repository + directory + repository + (define (find-commit* message) + (oid->string + (commit-id (find-commit repository message)))) + (let ((channel + (channel + (url (string-append "file://" directory)) + (name 'foo))) + (commit1 (find-commit* "first commit")) + (commit2 (find-commit* "second commit")) + (commit3 (find-commit* "third commit")) + (commit4 (find-commit* "fourth commit")) + (commit5 (find-commit* "fifth commit"))) + (and (null? (channel-news-for-commit channel commit2)) + (lset= string=? + (map channel-news-entry-commit + (channel-news-for-commit channel commit5)) + (list commit2 commit4)) + (lset= equal? + (map channel-news-entry-title + (channel-news-for-commit channel commit5)) + '((("en" . "Another file!")) + (("en" . "Old news.") ("eo" . "Malnova?oj.")))) + (lset= string=? + (map channel-news-entry-commit + (channel-news-for-commit channel commit3)) + (list commit2)) + (lset= string=? + (map channel-news-entry-commit + (channel-news-for-commit channel commit3 commit1)) + (list commit2)) + (lset= string=? + (map channel-news-entry-commit + (channel-news-for-commit channel commit5 commit3)) + (list commit4)) + (lset= string=? + (map channel-news-entry-commit + (channel-news-for-commit channel commit5 commit1)) + (list commit4 commit2)) + (lset= equal? + (map channel-news-entry-tag + (channel-news-for-commit channel commit5 commit1)) + '(#f "tag-for-first-news-entry"))))))) result: SKIP test-name: channel-news, annotated tag location: /home/akyle/guix/tests/channels.scm:411 source: + (test-assert + "channel-news, annotated tag" + (with-temporary-git-repository + directory + `((add ".guix-channel" + ,(object->string + '(channel (version 0) (news-file "news.scm")))) + (add "src/a.txt" "A") + (commit "first commit") + (tag "tag-for-first-news-entry" + "This is an annotated tag.") + (add "news.scm" + ,(lambda (repository) + (let ((previous + (reference-name->oid repository "HEAD"))) + (object->string + `(channel-news + (version 0) + (entry (tag "tag-for-first-news-entry") + (title (en "New file!")) + (body (en "Yeah, a.txt.")))))))) + (commit "second commit")) + (with-repository + directory + repository + (define (find-commit* message) + (oid->string + (commit-id (find-commit repository message)))) + (let ((channel + (channel + (url (string-append "file://" directory)) + (name 'foo))) + (commit1 (find-commit* "first commit")) + (commit2 (find-commit* "second commit"))) + (and (null? (channel-news-for-commit channel commit1)) + (lset= equal? + (map channel-news-entry-title + (channel-news-for-commit channel commit2)) + '((("en" . "New file!")))) + (lset= string=? + (map channel-news-entry-tag + (channel-news-for-commit channel commit2)) + (list "tag-for-first-news-entry")) + (lset= string=? + (map channel-news-entry-commit + (channel-news-for-commit channel commit2)) + (list commit1))))))) result: SKIP test-name: latest-channel-instances, missing introduction for 'guix' location: /home/akyle/guix/tests/channels.scm:458 source: + (test-assert + "latest-channel-instances, missing introduction for 'guix'" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "first commit") + (add "b.scm" "#t") + (commit "second commit")) + (with-repository + directory + repository + (let* ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second")) + (channel + (channel + (url (string-append "file://" directory)) + (name 'guix)))) + (guard (c ((formatted-message? c) + (->bool + (string-contains + (formatted-message-string c) + "introduction")))) + (with-store + store + (latest-channel-instances store (list channel)) + #f)))))) result: SKIP test-name: authenticate-channel, wrong first commit signer location: /home/akyle/guix/tests/channels.scm:479 source: + (test-equal + "authenticate-channel, wrong first commit signer" + #t + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file + %ed25519-2-public-key-file + %ed25519-2-secret-key-file) + (with-temporary-git-repository + directory + `((add ".guix-channel" + ,(object->string + '(channel + (version 0) + (keyring-reference "master")))) + (add ".guix-authorizations" + ,(object->string + `(authorizations + (version 0) + ((,(key-fingerprint %ed25519-public-key-file) + (name "Charlie")))))) + (add "signer.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (commit + "first commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "random" ,(random-text)) + (commit + "second commit" + (signer + ,(key-fingerprint %ed25519-public-key-file)))) + (with-repository + directory + repository + (let* ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second")) + (intro (make-channel-introduction + (commit-id-string commit1) + (openpgp-public-key-fingerprint + (read-openpgp-packet %ed25519-2-public-key-file)))) + (channel + (channel + (name 'example) + (url (string-append "file://" directory)) + (introduction intro)))) + (guard (c ((formatted-message? c) + (and (string-contains + (formatted-message-string c) + "initial commit") + (equal? + (formatted-message-arguments c) + (list (oid->string (commit-id commit1)) + (key-fingerprint %ed25519-public-key-file) + (key-fingerprint + %ed25519-2-public-key-file)))))) + (authenticate-channel + channel + directory + (commit-id-string commit2) + #:keyring-reference-prefix + "") + 'failed)))))) result: SKIP test-name: authenticate-channel, .guix-authorizations location: /home/akyle/guix/tests/channels.scm:529 source: + (test-equal + "authenticate-channel, .guix-authorizations" + #t + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file + %ed25519-2-public-key-file + %ed25519-2-secret-key-file) + (with-temporary-git-repository + directory + `((add ".guix-channel" + ,(object->string + '(channel + (version 0) + (keyring-reference "channel-keyring")))) + (add ".guix-authorizations" + ,(object->string + `(authorizations + (version 0) + ((,(key-fingerprint %ed25519-public-key-file) + (name "Charlie")))))) + (commit "zeroth commit") + (add "a.txt" "A") + (commit + "first commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "b.txt" "B") + (commit + "second commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "c.txt" "C") + (commit + "third commit" + (signer + ,(key-fingerprint %ed25519-2-public-key-file))) + (branch "channel-keyring") + (checkout "channel-keyring") + (add "signer.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (add "other.key" + ,(call-with-input-file + %ed25519-2-public-key-file + get-string-all)) + (commit "keyring commit") + (checkout "master")) + (with-repository + directory + repository + (let* ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second")) + (commit3 (find-commit repository "third")) + (intro (make-channel-introduction + (commit-id-string commit1) + (openpgp-public-key-fingerprint + (read-openpgp-packet %ed25519-public-key-file)))) + (channel + (channel + (name 'example) + (url (string-append "file://" directory)) + (introduction intro)))) + (and (authenticate-channel + channel + directory + (commit-id-string commit2) + #:keyring-reference-prefix + "") + (guard (c ((unauthorized-commit-error? c) + (and (oid=? (git-authentication-error-commit c) + (commit-id commit3)) + (bytevector=? + (openpgp-public-key-fingerprint + (unauthorized-commit-error-signing-key c)) + (openpgp-public-key-fingerprint + (read-openpgp-packet + %ed25519-2-public-key-file)))))) + (authenticate-channel + channel + directory + (commit-id-string commit3) + #:keyring-reference-prefix + "") + 'failed))))))) result: SKIP test-name: latest-channel-instances, authenticate dependency location: /home/akyle/guix/tests/channels.scm:598 source: + (test-equal + "latest-channel-instances, authenticate dependency" + #t + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file) + (with-temporary-git-repository + dependency-directory + `((add ".guix-channel" + ,(object->string + '(channel + (version 0) + (keyring-reference "master")))) + (add ".guix-authorizations" + ,(object->string `(authorizations (version 0) ()))) + (add "signer.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (commit + "zeroth commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "foo.txt" "evil") + (commit "unsigned commit")) + (with-repository + dependency-directory + dependency + (let* ((commit0 (find-commit dependency "zeroth")) + (commit1 (find-commit dependency "unsigned")) + (intro `(channel-introduction + (version 0) + (commit ,(commit-id-string commit0)) + (signer + ,(openpgp-format-fingerprint + (openpgp-public-key-fingerprint + (read-openpgp-packet + %ed25519-public-key-file))))))) + (with-temporary-git-repository + directory + `((add ".guix-channel" + ,(object->string + `(channel + (version 0) + (dependencies + (channel + (name test-channel) + (url ,dependency-directory) + (introduction ,intro)))))) + (commit "single commit")) + (let ((channel (channel (name 'test) (url directory)))) + (guard (c ((unsigned-commit-error? c) + (oid=? (git-authentication-error-commit c) + (commit-id commit1)))) + (with-store + store + (latest-channel-instances store (list channel)) + 'failed))))))))) result: SKIP Updating channel 'test' from Git repository at 'test'... Updating channel 'test-channel' from Git repository at 'https://example.com/test-channel'... Updating channel 'test' from Git repository at 'test'... Updating channel 'test-channel' from Git repository at 'https://example.com/test-channel'... Updating channel 'test-channel' from Git repository at 'https://example.com/test-channel'... SKIP: tests/cpio ================ test-name: file->cpio-header + write-cpio-header + read-cpio-header location: /home/akyle/guix/tests/cpio.scm:37 source: + (test-assert + "file->cpio-header + write-cpio-header + read-cpio-header" + (let* ((file (search-path %load-path "guix.scm")) + (header (file->cpio-header file))) + (call-with-values + (lambda () (open-bytevector-output-port)) + (lambda (port get-bv) + (write-cpio-header header port) + (let ((port (open-bytevector-input-port (get-bv)))) + (equal? header (read-cpio-header port))))))) actual-value: #t result: PASS test-name: bit-identical to GNU cpio's output location: /home/akyle/guix/tests/cpio.scm:49 source: + (test-assert + "bit-identical to GNU cpio's output" + (call-with-temporary-output-file + (lambda (link _) + (delete-file link) + (symlink "chbouib" link) + (let ((files (cons* "/" + (canonicalize-path + (dirname (search-path %load-path "guix.scm"))) + link + (map (compose + canonicalize-path + (cut search-path %load-path <>)) + '("guix.scm" + "guix/build/syscalls.scm" + "guix/packages.scm"))))) + (call-with-temporary-output-file + (lambda (ref-file _) + (let ((pipe (open-pipe* + OPEN_WRITE + %cpio-program + "-o" + "-O" + ref-file + "-H" + "newc" + "--null"))) + (for-each + (lambda (file) (format pipe "~a\x00" file)) + files) + (and (zero? (close-pipe pipe)) + (call-with-temporary-output-file + (lambda (file port) + (write-cpio-archive files port) + (close-port port) + (or (file=? ref-file file) + (throw 'cpio-archives-differ + files + ref-file + file + (stat:size (stat ref-file)) + (stat:size (stat file)))))))))))))) result: SKIP SKIP: tests/crate ================= test-name: guix-package->crate-name location: /home/akyle/guix/tests/crate.scm:326 source: + (test-equal + "guix-package->crate-name" + "rustc-serialize" + (guix-package->crate-name + (dummy-package + "rust-rustc-serialize" + (source + (dummy-origin + (uri (crate-uri "rustc-serialize" "1.0"))))))) expected-value: "rustc-serialize" actual-value: "rustc-serialize" result: PASS test-name: crate->guix-package location: /home/akyle/guix/tests/crate.scm:335 source: + (test-assert + "crate->guix-package" + (mock ((guix http-client) + http-fetch + (lambda (url . rest) + (match url + ("https://crates.io/api/v1/crates/foo" + (open-input-string test-foo-crate)) + ("https://crates.io/api/v1/crates/foo/1.0.3/download" + (set! test-source-hash + (bytevector->nix-base32-string + (sha256 + (string->bytevector "empty file\n" "utf-8")))) + (open-input-string "empty file\n")) + ("https://crates.io/api/v1/crates/foo/1.0.3/dependencies" + (open-input-string test-foo-dependencies)) + ("https://crates.io/api/v1/crates/leaf-alice" + (open-input-string test-leaf-alice-crate)) + ("https://crates.io/api/v1/crates/leaf-alice/0.7.5/download" + (set! test-source-hash + (bytevector->nix-base32-string + (sha256 + (string->bytevector "empty file\n" "utf-8")))) + (open-input-string "empty file\n")) + ("https://crates.io/api/v1/crates/leaf-alice/0.7.5/dependencies" + (open-input-string test-leaf-alice-dependencies)) + (_ (error "Unexpected URL: " url))))) + (match (crate->guix-package "foo") + ((define-public 'rust-foo-1 + (package + (name "rust-foo") + (version "1.0.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "foo" 'version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 (base32 (? string? hash))))) + (build-system 'cargo-build-system) + (arguments + ('quasiquote + (#:skip-build? + #t + #:cargo-inputs + (("rust-leaf-alice" + ('unquote 'rust-leaf-alice-0.7)))))) + (home-page "http://example.com") + (synopsis "summary") + (description "summary") + (license (list license:expat license:asl2.0)))) + (string=? test-source-hash hash)) + (x (pk 'fail x #f))))) result: SKIP test-name: cargo-recursive-import location: /home/akyle/guix/tests/crate.scm:388 source: + (test-assert + "cargo-recursive-import" + (mock ((guix http-client) + http-fetch + (lambda (url . rest) + (match url + ("https://crates.io/api/v1/crates/root" + (open-input-string test-root-crate)) + ("https://crates.io/api/v1/crates/root/1.0.4/download" + (set! test-source-hash + (bytevector->nix-base32-string + (sha256 + (string->bytevector "empty file\n" "utf-8")))) + (open-input-string "empty file\n")) + ("https://crates.io/api/v1/crates/root/1.0.4/dependencies" + (open-input-string test-root-dependencies)) + ("https://crates.io/api/v1/crates/intermediate-a" + (open-input-string test-intermediate-a-crate)) + ("https://crates.io/api/v1/crates/intermediate-a/1.0.42/download" + (set! test-source-hash + (bytevector->nix-base32-string + (sha256 + (string->bytevector "empty file\n" "utf-8")))) + (open-input-string "empty file\n")) + ("https://crates.io/api/v1/crates/intermediate-a/1.0.42/dependencies" + (open-input-string + test-intermediate-a-dependencies)) + ("https://crates.io/api/v1/crates/intermediate-b" + (open-input-string test-intermediate-b-crate)) + ("https://crates.io/api/v1/crates/intermediate-b/1.2.3/download" + (set! test-source-hash + (bytevector->nix-base32-string + (sha256 + (string->bytevector "empty file\n" "utf-8")))) + (open-input-string "empty file\n")) + ("https://crates.io/api/v1/crates/intermediate-b/1.2.3/dependencies" + (open-input-string + test-intermediate-b-dependencies)) + ("https://crates.io/api/v1/crates/leaf-alice" + (open-input-string test-leaf-alice-crate)) + ("https://crates.io/api/v1/crates/leaf-alice/0.7.5/download" + (set! test-source-hash + (bytevector->nix-base32-string + (sha256 + (string->bytevector "empty file\n" "utf-8")))) + (open-input-string "empty file\n")) + ("https://crates.io/api/v1/crates/leaf-alice/0.7.5/dependencies" + (open-input-string test-leaf-alice-dependencies)) + ("https://crates.io/api/v1/crates/leaf-bob" + (open-input-string test-leaf-bob-crate)) + ("https://crates.io/api/v1/crates/leaf-bob/3.0.1/download" + (set! test-source-hash + (bytevector->nix-base32-string + (sha256 + (string->bytevector "empty file\n" "utf-8")))) + (open-input-string "empty file\n")) + ("https://crates.io/api/v1/crates/leaf-bob/3.0.1/dependencies" + (open-input-string test-leaf-bob-dependencies)) + (_ (error "Unexpected URL: " url))))) + (match (crate-recursive-import "root") + (((define-public 'rust-leaf-alice-0.7 + (package + (name "rust-leaf-alice") + (version "0.7.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "leaf-alice" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 (base32 (? string? hash))))) + (build-system cargo-build-system) + (arguments ('quasiquote (#:skip-build? #t))) + (home-page "http://example.com") + (synopsis "summary") + (description "summary") + (license (list license:expat license:asl2.0)))) + (define-public 'rust-leaf-bob-3 + (package + (name "rust-leaf-bob") + (version "3.0.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "leaf-bob" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 (base32 (? string? hash))))) + (build-system cargo-build-system) + (arguments ('quasiquote (#:skip-build? #t))) + (home-page "http://example.com") + (synopsis "summary") + (description "summary") + (license (list license:expat license:asl2.0)))) + (define-public 'rust-intermediate-b-1 + (package + (name "rust-intermediate-b") + (version "1.2.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "intermediate-b" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 (base32 (? string? hash))))) + (build-system cargo-build-system) + (arguments + ('quasiquote + (#:skip-build? + #t + #:cargo-inputs + (("rust-leaf-bob" ('unquote rust-leaf-bob-3)))))) + (home-page "http://example.com") + (synopsis "summary") + (description "summary") + (license (list license:expat license:asl2.0)))) + (define-public 'rust-intermediate-a-1 + (package + (name "rust-intermediate-a") + (version "1.0.42") + (source + (origin + (method url-fetch) + (uri (crate-uri "intermediate-a" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 (base32 (? string? hash))))) + (build-system cargo-build-system) + (arguments + ('quasiquote + (#:skip-build? + #t + #:cargo-inputs + (("rust-intermediate-b" + ('unquote rust-intermediate-b-1)) + ("rust-leaf-alice" + ('unquote 'rust-leaf-alice-0.7)) + ("rust-leaf-bob" ('unquote rust-leaf-bob-3)))))) + (home-page "http://example.com") + (synopsis "summary") + (description "summary") + (license (list license:expat license:asl2.0)))) + (define-public 'rust-root-1 + (package + (name "rust-root") + (version "1.0.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "root" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 (base32 (? string? hash))))) + (build-system cargo-build-system) + (arguments + ('quasiquote + (#:cargo-inputs + (("rust-intermediate-a" + ('unquote rust-intermediate-a-1)) + ("rust-intermediate-b" + ('unquote rust-intermediate-b-1)) + ("rust-leaf-alice" + ('unquote 'rust-leaf-alice-0.7)) + ("rust-leaf-bob" ('unquote rust-leaf-bob-3)))))) + (home-page "http://example.com") + (synopsis "summary") + (description "summary") + (license (list license:expat license:asl2.0))))) + #t) + (x (pk 'fail x #f))))) result: SKIP test-name: licenses: MIT OR Apache-2.0 location: /home/akyle/guix/tests/crate.scm:562 source: + (test-equal + "licenses: MIT OR Apache-2.0" + '(license:expat license:asl2.0) + (string->license "MIT OR Apache-2.0")) expected-value: (license:expat license:asl2.0) actual-value: (license:expat license:asl2.0) result: PASS test-name: licenses: Apache-2.0 / MIT location: /home/akyle/guix/tests/crate.scm:566 source: + (test-equal + "licenses: Apache-2.0 / MIT" + '(license:asl2.0 license:expat) + (string->license "Apache-2.0 / MIT")) expected-value: (license:asl2.0 license:expat) actual-value: (license:asl2.0 license:expat) result: PASS test-name: licenses: Apache-2.0 WITH LLVM-exception location: /home/akyle/guix/tests/crate.scm:570 source: + (test-equal + "licenses: Apache-2.0 WITH LLVM-exception" + '(license:asl2.0 unknown-license!) + (string->license + "Apache-2.0 WITH LLVM-exception")) expected-value: (license:asl2.0 unknown-license!) actual-value: (license:asl2.0 unknown-license!) result: PASS test-name: licenses: MIT/Apache-2.0 AND BSD-2-Clause location: /home/akyle/guix/tests/crate.scm:574 source: + (test-equal + "licenses: MIT/Apache-2.0 AND BSD-2-Clause" + '(license:expat license:asl2.0 unknown-license!) + (string->license + "MIT/Apache-2.0 AND BSD-2-Clause")) expected-value: (license:expat license:asl2.0 unknown-license!) actual-value: (license:expat license:asl2.0 unknown-license!) result: PASS test-name: licenses: MIT/Apache-2.0 location: /home/akyle/guix/tests/crate.scm:578 source: + (test-equal + "licenses: MIT/Apache-2.0" + '(license:expat license:asl2.0) + (string->license "MIT/Apache-2.0")) expected-value: (license:expat license:asl2.0) actual-value: (license:expat license:asl2.0) result: PASS test-name: self-test: rust-docopt 0.8.x is gone, please adjust the test case location: /home/akyle/guix/tests/crate.scm:619 source: + (test-assert + "self-test: rust-docopt 0.8.x is gone, please adjust the test case" + (not (null? (find-packages-by-name "rust-docopt" "0.8")))) actual-value: #t result: PASS test-name: cargo-recursive-import-hoors-existing-packages location: /home/akyle/guix/tests/crate.scm:623 source: + (test-assert + "cargo-recursive-import-hoors-existing-packages" + (mock ((guix http-client) + http-fetch + (lambda (url . rest) + (match url + ("https://crates.io/api/v1/crates/doctool" + (open-input-string test-doctool-crate)) + ("https://crates.io/api/v1/crates/doctool/2.2.2/download" + (set! test-source-hash + (bytevector->nix-base32-string + (sha256 + (string->bytevector "empty file\n" "utf-8")))) + (open-input-string "empty file\n")) + ("https://crates.io/api/v1/crates/doctool/2.2.2/dependencies" + (open-input-string test-doctool-dependencies)) + (_ (error "Unexpected URL: " url))))) + (match (crate-recursive-import "doctool") + (((define-public 'rust-doctool-2 + (package + (name "rust-doctool") + (version "2.2.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "doctool" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 (base32 (? string? hash))))) + (build-system cargo-build-system) + (arguments + ('quasiquote + (#:cargo-inputs + (("rust-docopt" ('unquote 'rust-docopt-0.8)))))) + (home-page "http://example.com") + (synopsis "summary") + (description "summary") + (license (list license:expat license:asl2.0))))) + #t) + (x (pk 'fail x #f))))) result: SKIP SKIP: tests/git =============== test-name: commit-difference, linear history location: /home/akyle/guix/tests/git.scm:34 source: + (test-assert + "commit-difference, linear history" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "first commit") + (add "b.txt" "B") + (commit "second commit") + (add "c.txt" "C") + (commit "third commit") + (add "d.txt" "D") + (commit "fourth commit")) + (with-repository + directory + repository + (let ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second")) + (commit3 (find-commit repository "third")) + (commit4 (find-commit repository "fourth"))) + (and (lset= eq? + (commit-difference commit4 commit1) + (list commit2 commit3 commit4)) + (lset= eq? + (commit-difference commit4 commit2) + (list commit3 commit4)) + (equal? + (commit-difference commit3 commit2) + (list commit3)) + (null? (commit-difference commit1 commit4))))))) result: SKIP test-name: commit-difference, fork location: /home/akyle/guix/tests/git.scm:61 source: + (test-assert + "commit-difference, fork" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "first commit") + (branch "devel") + (checkout "devel") + (add "devel/1.txt" "1") + (commit "first devel commit") + (add "devel/2.txt" "2") + (commit "second devel commit") + (checkout "master") + (add "b.txt" "B") + (commit "second commit") + (add "c.txt" "C") + (commit "third commit") + (merge "devel" "merge") + (add "d.txt" "D") + (commit "fourth commit")) + (with-repository + directory + repository + (let ((master1 (find-commit repository "first commit")) + (master2 + (find-commit repository "second commit")) + (master3 (find-commit repository "third commit")) + (master4 + (find-commit repository "fourth commit")) + (devel1 (find-commit repository "first devel")) + (devel2 (find-commit repository "second devel")) + (merge (find-commit repository "merge"))) + (and (equal? + (commit-difference master4 merge) + (list master4)) + (lset= eq? + (commit-difference master3 master1) + (list master3 master2)) + (lset= eq? + (commit-difference devel2 master1) + (list devel2 devel1)) + (lset= eq? + (commit-difference master4 master2) + (list master4 merge master3 devel1 devel2))))))) result: SKIP test-name: commit-difference, excluded commits location: /home/akyle/guix/tests/git.scm:101 source: + (test-assert + "commit-difference, excluded commits" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "first commit") + (add "b.txt" "B") + (commit "second commit") + (add "c.txt" "C") + (commit "third commit") + (add "d.txt" "D") + (commit "fourth commit") + (add "e.txt" "E") + (commit "fifth commit")) + (with-repository + directory + repository + (let ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second")) + (commit3 (find-commit repository "third")) + (commit4 (find-commit repository "fourth")) + (commit5 (find-commit repository "fifth"))) + (and (lset= eq? + (commit-difference + commit4 + commit1 + (list commit2)) + (list commit3 commit4)) + (lset= eq? + (commit-difference + commit4 + commit1 + (list commit3)) + (list commit4)) + (null? (commit-difference + commit4 + commit1 + (list commit5)))))))) result: SKIP test-name: commit-relation location: /home/akyle/guix/tests/git.scm:126 source: + (test-equal + "commit-relation" + '(self ancestor + descendant + unrelated + unrelated + ancestor + descendant + ancestor + descendant) + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "first commit") + (branch "hack") + (checkout "hack") + (add "1.txt" "1") + (commit "branch commit") + (checkout "master") + (add "b.txt" "B") + (commit "second commit") + (add "c.txt" "C") + (commit "third commit") + (merge "hack" "merge")) + (with-repository + directory + repository + (let ((master1 (find-commit repository "first")) + (master2 (find-commit repository "second")) + (master3 (find-commit repository "third")) + (branch1 (find-commit repository "branch")) + (merge (find-commit repository "merge"))) + (list (commit-relation master3 master3) + (commit-relation master1 master3) + (commit-relation master3 master1) + (commit-relation master2 branch1) + (commit-relation branch1 master2) + (commit-relation branch1 merge) + (commit-relation merge branch1) + (commit-relation master1 merge) + (commit-relation merge master1)))))) result: SKIP test-name: remote-refs location: /home/akyle/guix/tests/git.scm:166 source: + (test-equal + "remote-refs" + '("refs/heads/develop" + "refs/heads/master" + "refs/tags/v1.0" + "refs/tags/v1.1") + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "v1.0" "release-1.0") + (branch "develop") + (checkout "develop") + (add "b.txt" "B") + (commit "Second commit") + (tag "v1.1" "release-1.1")) + (remote-refs directory))) result: SKIP test-name: remote-refs: only tags location: /home/akyle/guix/tests/git.scm:181 source: + (test-equal + "remote-refs: only tags" + '("refs/tags/v1.0" "refs/tags/v1.1") + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "v1.0" "Release 1.0") + (add "b.txt" "B") + (commit "Second commit") + (tag "v1.1" "Release 1.1")) + (remote-refs directory #:tags? #t))) result: SKIP SKIP: tests/git-authenticate ============================ test-name: unsigned commits location: /home/akyle/guix/tests/git-authenticate.scm:43 source: + (test-assert + "unsigned commits" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "first commit") + (add "b.txt" "B") + (commit "second commit")) + (with-repository + directory + repository + (let ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second"))) + (guard (c ((unsigned-commit-error? c) + (oid=? (git-authentication-error-commit c) + (commit-id commit1)))) + (authenticate-commits + repository + (list commit1 commit2) + #:keyring-reference + "master") + 'failed))))) result: SKIP test-name: signed commits, SHA1 signature location: /home/akyle/guix/tests/git-authenticate.scm:60 source: + (test-assert + "signed commits, SHA1 signature" + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file) + (call-with-output-file + (string-append (getenv "GNUPGHOME") "/gpg.conf") + (lambda (port) (display "digest-algo sha1" port))) + (with-temporary-git-repository + directory + `((add "a.txt" "A") + (add "signer.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (add ".guix-authorizations" + ,(object->string + `(authorizations + (version 0) + ((,(key-fingerprint %ed25519-public-key-file) + (name "Charlie")))))) + (commit + "first commit" + (signer + ,(key-fingerprint %ed25519-public-key-file)))) + (with-repository + directory + repository + (let ((commit (find-commit repository "first"))) + (guard (c ((unsigned-commit-error? c) + (oid=? (git-authentication-error-commit c) + (commit-id commit)))) + (authenticate-commits + repository + (list commit) + #:keyring-reference + "master") + 'failed)))))) result: SKIP test-name: signed commits, default authorizations location: /home/akyle/guix/tests/git-authenticate.scm:89 source: + (test-assert + "signed commits, default authorizations" + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file) + (with-temporary-git-repository + directory + `((add "signer.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (commit "zeroth commit") + (add "a.txt" "A") + (commit + "first commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "b.txt" "B") + (commit + "second commit" + (signer + ,(key-fingerprint %ed25519-public-key-file)))) + (with-repository + directory + repository + (let ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second"))) + (authenticate-commits + repository + (list commit1 commit2) + #:default-authorizations + (list (openpgp-public-key-fingerprint + (read-openpgp-packet %ed25519-public-key-file))) + #:keyring-reference + "master")))))) result: SKIP test-name: signed commits, .guix-authorizations location: /home/akyle/guix/tests/git-authenticate.scm:113 source: + (test-assert + "signed commits, .guix-authorizations" + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file) + (with-temporary-git-repository + directory + `((add "signer.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (add ".guix-authorizations" + ,(object->string + `(authorizations + (version 0) + ((,(key-fingerprint %ed25519-public-key-file) + (name "Charlie")))))) + (commit "zeroth commit") + (add "a.txt" "A") + (commit + "first commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add ".guix-authorizations" + ,(object->string `(authorizations (version 0) ()))) + (commit + "second commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "b.txt" "B") + (commit + "third commit" + (signer + ,(key-fingerprint %ed25519-public-key-file)))) + (with-repository + directory + repository + (let ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second")) + (commit3 (find-commit repository "third"))) + (and (authenticate-commits + repository + (list commit1 commit2) + #:keyring-reference + "master") + (guard (c ((unauthorized-commit-error? c) + (and (oid=? (git-authentication-error-commit c) + (commit-id commit3)) + (bytevector=? + (openpgp-public-key-fingerprint + (unauthorized-commit-error-signing-key c)) + (openpgp-public-key-fingerprint + (read-openpgp-packet + %ed25519-public-key-file)))))) + (authenticate-commits + repository + (list commit1 commit2 commit3) + #:keyring-reference + "master") + 'failed))))))) result: SKIP test-name: signed commits, .guix-authorizations, unauthorized merge location: /home/akyle/guix/tests/git-authenticate.scm:161 source: + (test-assert + "signed commits, .guix-authorizations, unauthorized merge" + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file + %ed25519-2-public-key-file + %ed25519-2-secret-key-file) + (with-temporary-git-repository + directory + `((add "signer1.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (add "signer2.key" + ,(call-with-input-file + %ed25519-2-public-key-file + get-string-all)) + (add ".guix-authorizations" + ,(object->string + `(authorizations + (version 0) + ((,(key-fingerprint %ed25519-public-key-file) + (name "Alice")))))) + (commit "zeroth commit") + (add "a.txt" "A") + (commit + "first commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (branch "devel") + (checkout "devel") + (add "devel/1.txt" "1") + (commit + "first devel commit" + (signer + ,(key-fingerprint %ed25519-2-public-key-file))) + (checkout "master") + (add "b.txt" "B") + (commit + "second commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (merge "devel" + "merge" + (signer + ,(key-fingerprint %ed25519-public-key-file)))) + (with-repository + directory + repository + (let ((master1 (find-commit repository "first commit")) + (master2 + (find-commit repository "second commit")) + (devel1 + (find-commit repository "first devel commit")) + (merge (find-commit repository "merge"))) + (define (correct? c commit) + (and (oid=? (git-authentication-error-commit c) + (commit-id commit)) + (bytevector=? + (openpgp-public-key-fingerprint + (unauthorized-commit-error-signing-key c)) + (openpgp-public-key-fingerprint + (read-openpgp-packet %ed25519-2-public-key-file))))) + (and (authenticate-commits + repository + (list master1 master2) + #:keyring-reference + "master") + (guard (c ((unauthorized-commit-error? c) + (correct? c devel1))) + (authenticate-commits + repository + (list master1 devel1) + #:keyring-reference + "master") + #f) + (guard (c ((unauthorized-commit-error? c) + (correct? c devel1))) + (authenticate-commits + repository + (list master1 master2 devel1 merge) + #:keyring-reference + "master") + #f))))))) result: SKIP test-name: signed commits, .guix-authorizations, authorized merge location: /home/akyle/guix/tests/git-authenticate.scm:230 source: + (test-assert + "signed commits, .guix-authorizations, authorized merge" + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file + %ed25519-2-public-key-file + %ed25519-2-secret-key-file) + (with-temporary-git-repository + directory + `((add "signer1.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (add "signer2.key" + ,(call-with-input-file + %ed25519-2-public-key-file + get-string-all)) + (add ".guix-authorizations" + ,(object->string + `(authorizations + (version 0) + ((,(key-fingerprint %ed25519-public-key-file) + (name "Alice")))))) + (commit "zeroth commit") + (add "a.txt" "A") + (commit + "first commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (branch "devel") + (checkout "devel") + (add ".guix-authorizations" + ,(object->string + `(authorizations + (version 0) + ((,(key-fingerprint %ed25519-public-key-file) + (name "Alice")) + (,(key-fingerprint %ed25519-2-public-key-file)))))) + (commit + "first devel commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "devel/2.txt" "2") + (commit + "second devel commit" + (signer + ,(key-fingerprint %ed25519-2-public-key-file))) + (checkout "master") + (add "b.txt" "B") + (commit + "second commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (merge "devel" + "merge" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "c.txt" "C") + (commit + "third commit" + (signer + ,(key-fingerprint %ed25519-2-public-key-file)))) + (with-repository + directory + repository + (let ((master1 (find-commit repository "first commit")) + (master2 + (find-commit repository "second commit")) + (devel1 + (find-commit repository "first devel commit")) + (devel2 + (find-commit repository "second devel commit")) + (merge (find-commit repository "merge")) + (master3 (find-commit repository "third commit"))) + (authenticate-commits + repository + (list master1 + master2 + devel1 + devel2 + merge + master3) + #:keyring-reference + "master")))))) result: SKIP test-name: signed commits, .guix-authorizations removed location: /home/akyle/guix/tests/git-authenticate.scm:290 source: + (test-assert + "signed commits, .guix-authorizations removed" + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file) + (with-temporary-git-repository + directory + `((add "signer.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (add ".guix-authorizations" + ,(object->string + `(authorizations + (version 0) + ((,(key-fingerprint %ed25519-public-key-file) + (name "Charlie")))))) + (commit "zeroth commit") + (add "a.txt" "A") + (commit + "first commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (remove ".guix-authorizations") + (commit + "second commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "b.txt" "B") + (commit + "third commit" + (signer + ,(key-fingerprint %ed25519-public-key-file)))) + (with-repository + directory + repository + (let ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second")) + (commit3 (find-commit repository "third"))) + (and (authenticate-commits + repository + (list commit1 commit2) + #:keyring-reference + "master") + (guard (c ((unauthorized-commit-error? c) + (oid=? (git-authentication-error-commit c) + (commit-id commit2)))) + (authenticate-commits + repository + (list commit1 commit2 commit3) + #:keyring-reference + "master") + 'failed))))))) result: SKIP FAIL: tests/gremlin =================== test-name: elf-dynamic-info-needed, executable location: /home/akyle/guix/tests/gremlin.scm:52 source: + (test-assert + "elf-dynamic-info-needed, executable" + (let* ((elf (call-with-input-file %guile-executable read-elf)) + (dyninfo (elf-dynamic-info elf))) + (or (not dyninfo) + (lset<= + string=? + (list (string-append "libguile-" (effective-version)) + "libc") + (map (lambda (lib) + (string-take lib (string-contains lib ".so"))) + (elf-dynamic-info-needed dyninfo)))))) actual-value: #t result: PASS ;;; (truth ("/gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/lib/libguile-3.0.so.1" "/gnu/store/1gkpbfxjx2sbchjhf19yjm4a8vkir0nm-libgc-8.0.4/lib/libgc.so.1" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libpthread.so.0" "/gnu/store/hjirgm7pwmc2biqz6d0fc1ajr3ha4v14-libffi-3.3/lib/libffi.so.7" "/gnu/store/4k552fq1p6q73mr9ww7g5y3m77p7cfbm-libunistring-0.9.10/lib/libunistring.so.2" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libcrypt.so.1" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libdl.so.2" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libm.so.6" "/gnu/store/47snyrq6pq6896m9dysp2s5vx53m6x08-gcc-10.3.0-lib/lib/libgcc_s.so.1" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libc.so.6" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/ld-linux-aarch64.so.1")) ;;; (needed ("/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libc.so.6" "/gnu/store/47snyrq6pq6896m9dysp2s5vx53m6x08-gcc-10.3.0-lib/lib/libgcc_s.so.1" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libm.so.6" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libdl.so.2" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libcrypt.so.1" "/gnu/store/4k552fq1p6q73mr9ww7g5y3m77p7cfbm-libunistring-0.9.10/lib/libunistring.so.2" "/gnu/store/hjirgm7pwmc2biqz6d0fc1ajr3ha4v14-libffi-3.3/lib/libffi.so.7" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libpthread.so.0" "/gnu/store/1gkpbfxjx2sbchjhf19yjm4a8vkir0nm-libgc-8.0.4/lib/libgc.so.1" "/gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/lib/libguile-3.0.so.1")) test-name: file-needed/recursive location: /home/akyle/guix/tests/gremlin.scm:70 source: + (test-assert + "file-needed/recursive" + (let* ((needed + (file-needed/recursive %guile-executable)) + (pipe (dynamic-wind + (lambda () + (setenv "LD_TRACE_LOADED_OBJECTS" "yup")) + (lambda () + (open-pipe* OPEN_READ %guile-executable)) + (lambda () (unsetenv "LD_TRACE_LOADED_OBJECTS"))))) + (define ldd-rx + (make-regexp + "^[[:blank:]]+([[:graph:]]+ => )?([[:graph:]]+) .*$")) + (define (read-ldd-output port) + (let loop ((result '())) + (match (read-line port) + ((? eof-object?) (reverse result)) + ((= (cut regexp-exec ldd-rx <>) m) + (if m + (loop (cons (match:substring m 2) result)) + (loop result)))))) + (define ground-truth + (remove + (cut string-prefix? "linux-vdso.so" <>) + (read-ldd-output pipe))) + (and (zero? (close-pipe pipe)) + (lset= string=? + (pk 'truth ground-truth) + (pk 'needed needed))))) actual-value: #f result: FAIL test-name: expand-origin location: /home/akyle/guix/tests/gremlin.scm:101 source: + (test-equal + "expand-origin" + '("OOO/../lib" + "OOO" + "../OOO/bar/OOO/baz" + "ORIGIN/foo") + (map (cut expand-origin <> "OOO") + '("$ORIGIN/../lib" + "${ORIGIN}" + "../${ORIGIN}/bar/$ORIGIN/baz" + "ORIGIN/foo"))) expected-value: ("OOO/../lib" "OOO" "../OOO/bar/OOO/baz" "ORIGIN/foo") actual-value: ("OOO/../lib" "OOO" "../OOO/bar/OOO/baz" "ORIGIN/foo") result: PASS t.c: In function 'main': t.c:1:15: warning: implicit declaration of function 'puts' [-Wimplicit-function-declaration] 1 | int main () { puts("hello"); } | ^~~~ test-name: strip-runpath location: /home/akyle/guix/tests/gremlin.scm:114 source: + (test-equal + "strip-runpath" + "hello\n" + (call-with-temporary-directory + (lambda (directory) + (with-directory-excursion + directory + (call-with-output-file + "t.c" + (lambda (port) + (display "int main () { puts(\"hello\"); }" port))) + (invoke + c-compiler + "t.c" + "-Wl,--enable-new-dtags" + "-Wl,-rpath=/foo" + "-Wl,-rpath=/bar") + (let* ((dyninfo + (elf-dynamic-info + (parse-elf + (call-with-input-file "a.out" get-bytevector-all)))) + (old (elf-dynamic-info-runpath dyninfo)) + (new (strip-runpath "a.out")) + (new* (strip-runpath "a.out"))) + (validate-needed-in-runpath "a.out") + (and (member "/foo" old) + (member "/bar" old) + (not (member "/foo" new)) + (not (member "/bar" new)) + (equal? new* new) + (let* ((pipe (open-input-pipe "./a.out")) + (str (get-string-all pipe))) + (close-pipe pipe) + str))))))) expected-value: "hello\n" actual-value: "hello\n" result: PASS t.c: In function 'main': t.c:1:15: warning: implicit declaration of function 'puts' [-Wimplicit-function-declaration] 1 | int main () { puts("hello"); } | ^~~~ test-name: set-file-runpath + file-runpath location: /home/akyle/guix/tests/gremlin.scm:142 source: + (test-equal + "set-file-runpath + file-runpath" + "hello\n" + (call-with-temporary-directory + (lambda (directory) + (with-directory-excursion + directory + (call-with-output-file + "t.c" + (lambda (port) + (display "int main () { puts(\"hello\"); }" port))) + (invoke + c-compiler + "t.c" + "-Wl,--enable-new-dtags" + "-Wl,-rpath=/xxxxxxxxx") + (let ((original-runpath (file-runpath "a.out"))) + (and (member "/xxxxxxxxx" original-runpath) + (guard (c ((runpath-too-long-error? c) + (string=? + "a.out" + (runpath-too-long-error-file c)))) + (set-file-runpath + "a.out" + (list (make-string 777 #\y)))) + (let ((runpath (delete "/xxxxxxxxx" original-runpath))) + (set-file-runpath "a.out" runpath) + (equal? runpath (file-runpath "a.out"))) + (let* ((pipe (open-input-pipe "./a.out")) + (str (get-string-all pipe))) + (close-pipe pipe) + str))))))) expected-value: "hello\n" actual-value: "hello\n" result: PASS test-name: elf-dynamic-info-soname location: /home/akyle/guix/tests/gremlin.scm:169 source: + (test-equal + "elf-dynamic-info-soname" + "libfoo.so.2" + (call-with-temporary-directory + (lambda (directory) + (with-directory-excursion + directory + (call-with-output-file + "t.c" + (lambda (port) (display "// empty file" port))) + (invoke + c-compiler + "t.c" + "-shared" + "-Wl,-soname,libfoo.so.2") + (let* ((dyninfo + (elf-dynamic-info + (parse-elf + (call-with-input-file "a.out" get-bytevector-all)))) + (soname (elf-dynamic-info-soname dyninfo))) + soname))))) expected-value: "libfoo.so.2" actual-value: "libfoo.so.2" result: PASS a.out: stripping RUNPATH to ("/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib" "/gnu/store/47snyrq6pq6896m9dysp2s5vx53m6x08-gcc-10.3.0-lib/lib" "/gnu/store/47snyrq6pq6896m9dysp2s5vx53m6x08-gcc-10.3.0-lib/lib/gcc/aarch64-unknown-linux-gnu/10.3.0/../../.." "/gnu/store/40lx91wz35qci25qzi9xfqvxwby85xha-profile/lib") (removed ("/foo" "/bar")) a.out: warning: RUNPATH contains bogus entries: ("/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib" "/gnu/store/47snyrq6pq6896m9dysp2s5vx53m6x08-gcc-10.3.0-lib/lib" "/gnu/store/47snyrq6pq6896m9dysp2s5vx53m6x08-gcc-10.3.0-lib/lib/gcc/aarch64-unknown-linux-gnu/10.3.0/../../.." "/gnu/store/40lx91wz35qci25qzi9xfqvxwby85xha-profile/lib") a.out: error: depends on 'libgcc_s.so.1', which cannot be found in RUNPATH () WARNING: (test-gremlin): imported module (guix build utils) overrides core binding `delete' SKIP: tests/hackage =================== Starting download of /tmp/guix-file.sVsZ4O From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'hackage.haskell.org' could not be verified: signer-not-found invalid Starting download of /tmp/guix-file.sVsZ4O From https://web.archive.org/web/20220102122608/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'web.archive.org' could not be verified: signer-not-found invalid Trying to use Disarchive to assemble /tmp/guix-file.sVsZ4O... could not find its Disarchive specification failed to download "/tmp/guix-file.sVsZ4O" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" test-name: hackage->guix-package test 1 location: /home/akyle/guix/tests/hackage.scm:189 source: + (test-assert + "hackage->guix-package test 1" + (eval-test-with-cabal test-cabal-1 match-ghc-foo)) actual-value: #t result: PASS Starting download of /tmp/guix-file.jg4aV6 From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'hackage.haskell.org' could not be verified: signer-not-found invalid Starting download of /tmp/guix-file.jg4aV6 From https://web.archive.org/web/20220102122608/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'web.archive.org' could not be verified: signer-not-found invalid Trying to use Disarchive to assemble /tmp/guix-file.jg4aV6... could not find its Disarchive specification failed to download "/tmp/guix-file.jg4aV6" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" test-name: hackage->guix-package test 2 location: /home/akyle/guix/tests/hackage.scm:192 source: + (test-assert + "hackage->guix-package test 2" + (eval-test-with-cabal test-cabal-2 match-ghc-foo)) actual-value: #t result: PASS Starting download of /tmp/guix-file.wDN8mZ From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'hackage.haskell.org' could not be verified: signer-not-found invalid Starting download of /tmp/guix-file.wDN8mZ From https://web.archive.org/web/20220102122609/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'web.archive.org' could not be verified: signer-not-found invalid Trying to use Disarchive to assemble /tmp/guix-file.wDN8mZ... could not find its Disarchive specification failed to download "/tmp/guix-file.wDN8mZ" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" test-name: hackage->guix-package test 3 location: /home/akyle/guix/tests/hackage.scm:195 source: + (test-assert + "hackage->guix-package test 3" + (eval-test-with-cabal + test-cabal-3 + match-ghc-foo + #:cabal-environment + '(("impl" . "ghc-7.8")))) actual-value: #t result: PASS Starting download of /tmp/guix-file.C34rgH From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'hackage.haskell.org' could not be verified: signer-not-found invalid Starting download of /tmp/guix-file.C34rgH From https://web.archive.org/web/20220102122609/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'web.archive.org' could not be verified: signer-not-found invalid Trying to use Disarchive to assemble /tmp/guix-file.C34rgH... could not find its Disarchive specification failed to download "/tmp/guix-file.C34rgH" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" test-name: hackage->guix-package test 4 location: /home/akyle/guix/tests/hackage.scm:199 source: + (test-assert + "hackage->guix-package test 4" + (eval-test-with-cabal + test-cabal-4 + match-ghc-foo + #:cabal-environment + '(("impl" . "ghc-7.8")))) actual-value: #t result: PASS Starting download of /tmp/guix-file.SDjeI2 From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'hackage.haskell.org' could not be verified: signer-not-found invalid Starting download of /tmp/guix-file.SDjeI2 From https://web.archive.org/web/20220102122609/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'web.archive.org' could not be verified: signer-not-found invalid Trying to use Disarchive to assemble /tmp/guix-file.SDjeI2... could not find its Disarchive specification failed to download "/tmp/guix-file.SDjeI2" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" test-name: hackage->guix-package test 5 location: /home/akyle/guix/tests/hackage.scm:203 source: + (test-assert + "hackage->guix-package test 5" + (eval-test-with-cabal + test-cabal-5 + match-ghc-foo + #:cabal-environment + '(("impl" . "ghc-7.8")))) actual-value: #t result: PASS Starting download of /tmp/guix-file.Genwhh From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'hackage.haskell.org' could not be verified: signer-not-found invalid Starting download of /tmp/guix-file.Genwhh From https://web.archive.org/web/20220102122610/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'web.archive.org' could not be verified: signer-not-found invalid Trying to use Disarchive to assemble /tmp/guix-file.Genwhh... could not find its Disarchive specification failed to download "/tmp/guix-file.Genwhh" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" test-name: hackage->guix-package test 6 location: /home/akyle/guix/tests/hackage.scm:226 source: + (test-assert + "hackage->guix-package test 6" + (eval-test-with-cabal + test-cabal-6 + match-ghc-foo-6)) actual-value: #t result: PASS Starting download of /tmp/guix-file.ZCjInm From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'hackage.haskell.org' could not be verified: signer-not-found invalid Starting download of /tmp/guix-file.ZCjInm From https://web.archive.org/web/20220102122610/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'web.archive.org' could not be verified: signer-not-found invalid Trying to use Disarchive to assemble /tmp/guix-file.ZCjInm... could not find its Disarchive specification failed to download "/tmp/guix-file.ZCjInm" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" test-name: hackage->guix-package test multiline desc (layout) location: /home/akyle/guix/tests/hackage.scm:244 source: + (test-assert + "hackage->guix-package test multiline desc (layout)" + (eval-test-with-cabal + test-cabal-multiline-layout + match-ghc-foo)) actual-value: #t result: PASS Starting download of /tmp/guix-file.wiR1Gu From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'hackage.haskell.org' could not be verified: signer-not-found invalid Starting download of /tmp/guix-file.wiR1Gu From https://web.archive.org/web/20220102122610/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'web.archive.org' could not be verified: signer-not-found invalid Trying to use Disarchive to assemble /tmp/guix-file.wiR1Gu... could not find its Disarchive specification failed to download "/tmp/guix-file.wiR1Gu" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" test-name: hackage->guix-package test multiline desc (braced) location: /home/akyle/guix/tests/hackage.scm:264 source: + (test-assert + "hackage->guix-package test multiline desc (braced)" + (eval-test-with-cabal + test-cabal-multiline-braced + match-ghc-foo)) actual-value: #t result: PASS Syntax error: unexpected token : (ghc-options (-Wall)) (at line 11, column 2) Syntax error: unexpected end of input ;;; (fail #f #f) test-name: hackage->guix-package test mixed layout location: /home/akyle/guix/tests/hackage.scm:284 source: + (test-assert + "hackage->guix-package test mixed layout" + (eval-test-with-cabal + test-cabal-mixed-layout + match-ghc-foo)) actual-value: #f result: XFAIL Starting download of /tmp/guix-file.z2NsqZ From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'hackage.haskell.org' could not be verified: signer-not-found invalid Starting download of /tmp/guix-file.z2NsqZ From https://web.archive.org/web/20220102122610/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'web.archive.org' could not be verified: signer-not-found invalid Trying to use Disarchive to assemble /tmp/guix-file.z2NsqZ... could not find its Disarchive specification failed to download "/tmp/guix-file.z2NsqZ" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" test-name: hackage->guix-package test flag executable location: /home/akyle/guix/tests/hackage.scm:309 source: + (test-assert + "hackage->guix-package test flag executable" + (eval-test-with-cabal + test-cabal-flag-executable + match-ghc-foo)) actual-value: #t result: PASS Starting download of /tmp/guix-file.FMlZDY From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'hackage.haskell.org' could not be verified: signer-not-found invalid Starting download of /tmp/guix-file.FMlZDY From https://web.archive.org/web/20220102122611/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'web.archive.org' could not be verified: signer-not-found invalid Trying to use Disarchive to assemble /tmp/guix-file.FMlZDY... could not find its Disarchive specification failed to download "/tmp/guix-file.FMlZDY" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" test-name: hackage->guix-package test cabal revision location: /home/akyle/guix/tests/hackage.scm:349 source: + (test-assert + "hackage->guix-package test cabal revision" + (eval-test-with-cabal + test-cabal-revision + match-ghc-foo-revision)) actual-value: #t result: PASS test-name: read-cabal test 1 location: /home/akyle/guix/tests/hackage.scm:352 source: + (test-assert + "read-cabal test 1" + (match (call-with-input-string + test-read-cabal-1 + read-cabal) + ((("name" ("test-me")) + ('section + 'library + (('if + ('flag "base4point8") + (("build-depends" ("base >= 4.8 && < 5"))) + (('if + ('flag "base4") + (("build-depends" ("base >= 4 && < 4.8"))) + (('if + ('flag "base3") + (("build-depends" ("base >= 3 && < 4"))) + (("build-depends" ("base < 3")))))))) + ('if + ('or + ('flag "base4point8") + ('and ('flag "base4") ('flag "base3"))) + (("build-depends" ("random"))) + ()) + ("build-depends" ("containers")) + ("exposed-modules" ("Test.QuickCheck.Exception"))))) + #t) + (x (pk 'fail x #f)))) actual-value: #t result: PASS Starting download of /tmp/guix-file.EhrmhS From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'hackage.haskell.org' could not be verified: signer-not-found invalid Starting download of /tmp/guix-file.EhrmhS From https://web.archive.org/web/20220102122611/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... X.509 certificate of 'web.archive.org' could not be verified: signer-not-found invalid Trying to use Disarchive to assemble /tmp/guix-file.EhrmhS... could not find its Disarchive specification failed to download "/tmp/guix-file.EhrmhS" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" test-name: hackage->guix-package test cabal import location: /home/akyle/guix/tests/hackage.scm:406 source: + (test-assert + "hackage->guix-package test cabal import" + (eval-test-with-cabal + test-cabal-import + match-ghc-foo-import)) actual-value: #t result: PASS FAIL: tests/home-import ======================= ;;; (fail (begin (use-modules (gnu home) (gnu packages) (gnu services)) (home-environment (packages (map specification->package (list "guile@2.0.9" "gcc@10" "glibc@2.19"))) (services (list)))) #f) test-name: manifest->code: No services location: /home/akyle/guix/tests/home-import.scm:160 source: + (test-assert + "manifest->code: No services" + (eval-test-with-home-environment + '() + (make-manifest (list guile-2.0.9 gcc glibc)) + match-home-environment-no-services)) actual-value: #f result: FAIL ;;; (fail (begin (use-modules (gnu home) (gnu packages) (gnu services) (guix transformations)) (define transform1 (options->transformation (quote ((foo . "bar"))))) (home-environment (packages (list (transform1 (specification->package "guile@2.0.9")) (specification->package "gcc@10") (specification->package "glibc@2.19"))) (services (list)))) #f) test-name: manifest->code: No services, package transformations location: /home/akyle/guix/tests/home-import.scm:166 source: + (test-assert + "manifest->code: No services, package transformations" + (eval-test-with-home-environment + '() + (make-manifest + (list (manifest-entry + (inherit guile-2.0.9) + (properties `((transformations (foo . "bar"))))) + gcc + glibc)) + match-home-environment-transformations)) actual-value: #f result: FAIL test-name: manifest->code: No packages nor services location: /home/akyle/guix/tests/home-import.scm:176 source: + (test-assert + "manifest->code: No packages nor services" + (eval-test-with-home-environment + '() + (make-manifest '()) + match-home-environment-no-services-nor-packages)) actual-value: #t result: PASS test-name: manifest->code: Bash service location: /home/akyle/guix/tests/home-import.scm:182 source: + (test-assert + "manifest->code: Bash service" + (eval-test-with-home-environment + '((".bashrc" . "echo 'hello guix'")) + (make-manifest '()) + match-home-environment-bash-service)) actual-value: #t result: PASS SKIP: tests/import-git ====================== test-name: latest-git-tag-version: no custom prefix, suffix, and delimiter location: /home/akyle/guix/tests/import-git.scm:50 source: + (test-equal + "latest-git-tag-version: no custom prefix, suffix, and delimiter" + "1.0.1" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "1.0.1" "Release 1.0.1")) + (let ((package (make-package directory "1.0.0"))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: custom prefix, no suffix and delimiter location: /home/akyle/guix/tests/import-git.scm:60 source: + (test-equal + "latest-git-tag-version: custom prefix, no suffix and delimiter" + "1.0.1" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "prefix-1.0.1" "Release 1.0.1")) + (let ((package + (make-package + directory + "1.0.0" + '((release-tag-prefix . "prefix-"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: custom suffix, no prefix and delimiter location: /home/akyle/guix/tests/import-git.scm:71 source: + (test-equal + "latest-git-tag-version: custom suffix, no prefix and delimiter" + "1.0.1" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "1.0.1-suffix-123" "Release 1.0.1")) + (let ((package + (make-package + directory + "1.0.0" + '((release-tag-suffix . "-suffix-[0-9]*"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: custom delimiter, no prefix and suffix location: /home/akyle/guix/tests/import-git.scm:82 source: + (test-equal + "latest-git-tag-version: custom delimiter, no prefix and suffix" + "2021.09.07" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "2021-09-07" "Release 2021-09-07")) + (let ((package + (make-package + directory + "2021-09-06" + '((release-tag-version-delimiter . "-"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: empty delimiter, no prefix and suffix location: /home/akyle/guix/tests/import-git.scm:93 source: + (test-equal + "latest-git-tag-version: empty delimiter, no prefix and suffix" + "20210907" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "20210907" "Release 20210907")) + (let ((package + (make-package + directory + "20210906" + '((release-tag-version-delimiter . ""))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: custom prefix and suffix, no delimiter location: /home/akyle/guix/tests/import-git.scm:104 source: + (test-equal + "latest-git-tag-version: custom prefix and suffix, no delimiter" + "2.0.0" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "Release-2.0.0suffix-1" "Release 2.0.0")) + (let ((package + (make-package + directory + "1.0.0" + '((release-tag-prefix . "Release-") + (release-tag-suffix . "suffix-[0-9]"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: custom prefix, suffix, and delimiter location: /home/akyle/guix/tests/import-git.scm:116 source: + (test-equal + "latest-git-tag-version: custom prefix, suffix, and delimiter" + "2.0.0" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "Release-2_0_0suffix-1" "Release 2.0.0")) + (let ((package + (make-package + directory + "1.0.0" + '((release-tag-prefix . "Release-") + (release-tag-suffix . "suffix-[0-9]") + (release-tag-version-delimiter . "_"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: only pre-releases available location: /home/akyle/guix/tests/import-git.scm:129 source: + (test-equal + "latest-git-tag-version: only pre-releases available" + #f + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "2.0.0-rc1" "Release candidate for 2.0.0")) + (let ((package (make-package directory "1.0.0"))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: accept pre-releases location: /home/akyle/guix/tests/import-git.scm:139 source: + (test-equal + "latest-git-tag-version: accept pre-releases" + "2.0.0-rc1" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "2.0.0-rc1" "Release candidate for 2.0.0")) + (let ((package + (make-package + directory + "1.0.0" + '((accept-pre-releases? . #t))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: accept pre-releases, and custom prefix location: /home/akyle/guix/tests/import-git.scm:150 source: + (test-equal + "latest-git-tag-version: accept pre-releases, and custom prefix" + "2.0.0-rc1" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "version-2.0.0-rc1" + "Release candidate for 2.0.0")) + (let ((package + (make-package + directory + "1.0.0" + '((accept-pre-releases? . #t) + (release-tag-prefix . "version-"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: accept pre-releases, and custom suffix location: /home/akyle/guix/tests/import-git.scm:162 source: + (test-equal + "latest-git-tag-version: accept pre-releases, and custom suffix" + "2.0.0-rc1" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "2.0.0-rc1-suffix" + "Release candidate for 2.0.0")) + (let ((package + (make-package + directory + "1.0.0" + '((accept-pre-releases? . #t) + (release-tag-suffix . "-suffix"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: accept pre-releases, delimiter conflicts with pre-release part location: /home/akyle/guix/tests/import-git.scm:174 source: + (test-equal + "latest-git-tag-version: accept pre-releases, delimiter conflicts with pre-release part" + "2.0.0_alpha" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "2_0_0_alpha" "Alpha release for 2.0.0")) + (let ((package + (make-package + directory + "1.0.0" + '((accept-pre-releases? . #t) + (release-tag-version-delimiter . "_"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: accept pre-releases, and custom suffix and prefix location: /home/akyle/guix/tests/import-git.scm:186 source: + (test-equal + "latest-git-tag-version: accept pre-releases, and custom suffix and prefix" + "2.0.0-alpha" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "prefix123-2.0.0-alpha-suffix" + "Alpha release for 2.0.0")) + (let ((package + (make-package + directory + "1.0.0" + '((accept-pre-releases? . #t) + (release-tag-prefix . "prefix[0-9]{3}-") + (release-tag-suffix . "-suffix"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: accept pre-releases, and custom suffix, prefix, and delimiter location: /home/akyle/guix/tests/import-git.scm:199 source: + (test-equal + "latest-git-tag-version: accept pre-releases, and custom suffix, prefix, and delimiter" + "2.0.0-alpha" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "prefix123-2-0-0-alpha-suffix" + "Alpha release for 2.0.0")) + (let ((package + (make-package + directory + "1.0.0" + '((accept-pre-releases? . #t) + (release-tag-prefix . "prefix[0-9]{3}-") + (release-tag-suffix . "-suffix") + (release-tag-version-delimiter . "-"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: accept pre-releases, no delimiter, and custom suffix, prefix location: /home/akyle/guix/tests/import-git.scm:213 source: + (test-equal + "latest-git-tag-version: accept pre-releases, no delimiter, and custom suffix, prefix" + "2alpha" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "prefix123-2alpha-suffix" + "Alpha release for version 2")) + (let ((package + (make-package + directory + "1.0.0" + '((accept-pre-releases? . #t) + (release-tag-prefix . "prefix[0-9]{3}-") + (release-tag-suffix . "-suffix") + (release-tag-version-delimiter . ""))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: no tags found location: /home/akyle/guix/tests/import-git.scm:227 source: + (test-equal + "latest-git-tag-version: no tags found" + #f + (with-temporary-git-repository + directory + '((add "a.txt" "A") (commit "First commit")) + (let ((package (make-package directory "1.0.0"))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: no valid tags found location: /home/akyle/guix/tests/import-git.scm:236 source: + (test-equal + "latest-git-tag-version: no valid tags found" + #f + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "Test" "Test tag")) + (let ((package (make-package directory "1.0.0"))) + (latest-git-tag-version package)))) result: SKIP SKIP: tests/inferior ==================== test-name: open-inferior location: /home/akyle/guix/tests/inferior.scm:54 source: + (test-equal + "open-inferior" + '(42 #t) + (let ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix"))) + (and (inferior? inferior) + (let ((a (inferior-eval '(apply * '(6 7)) inferior)) + (b (inferior-eval + '(@ (gnu packages base) coreutils) + inferior))) + (close-inferior inferior) + (list a (inferior-object? b)))))) expected-value: (42 #t) actual-value: (42 #t) result: PASS test-name: &inferior-exception location: /home/akyle/guix/tests/inferior.scm:65 source: + (test-equal + "&inferior-exception" + '(a b c d) + (let ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix"))) + (guard (c ((inferior-exception? c) + (close-inferior inferior) + (and (eq? inferior (inferior-exception-inferior c)) + (match (inferior-exception-stack c) + (((_ (files lines columns)) ..1) + (member "guix/repl.scm" files))) + (inferior-exception-arguments c)))) + (inferior-eval '(throw 'a 'b 'c 'd) inferior) + 'badness))) expected-value: (a b c d) actual-value: (a b c d) result: PASS test-name: &inferior-exception, legacy mode location: /home/akyle/guix/tests/inferior.scm:79 source: + (test-equal + "&inferior-exception, legacy mode" + '(a b c d) + (let ((inferior (open-inferior %top-builddir))) + (guard (c ((inferior-exception? c) + (close-inferior inferior) + (and (eq? inferior (inferior-exception-inferior c)) + (inferior-exception-arguments c)))) + (inferior-eval '(throw 'a 'b 'c 'd) inferior) + 'badness))) expected-value: (a b c d) actual-value: (a b c d) result: PASS test-name: inferior-packages location: /home/akyle/guix/tests/inferior.scm:91 source: + (test-equal + "inferior-packages" + (take (sort (fold-packages + (lambda (package lst) + (cons (list (package-name package) + (package-version package) + (package-home-page package) + (package-location package)) + lst)) + '()) + (lambda (x y) (string file: "gnu/packages/games.scm" line: 6587 column: 2>) ("0ad-data" "0.0.25b-alpha" "https://play0ad.com" #< file: "gnu/packages/games.scm" line: 6540 column: 2>) ("0xffff" "0.9" "https://github.com/pali/0xFFFF" #< file: "gnu/packages/flashing-tools.scm" line: 106 column: 2>) ("389-ds-base" "1.4.4.17" "https://directory.fedoraproject.org" #< file: "gnu/packages/openldap.scm" line: 204 column: 2>) ("4dtris" "0.4.3" "https://launchpad.net/4dtris/" #< file: "gnu/packages/games.scm" line: 8662 column: 2>) ("4store" "1.1.6" "https://github.com/4store/4store" #< file: "gnu/packages/databases.scm" line: 175 column: 2>) ("4ti2" "1.6.9" "http://www.4ti2.de/" #< file: "gnu/packages/maths.scm" line: 681 column: 2>) ("7kaa" "2.15.4p1" "https://7kfans.com/" #< file: "gnu/packages/games.scm" line: 12028 column: 2>) ("a2jmidid" "9" "https://github.com/jackaudio/a2jmidid" #< file: "gnu/packages/music.scm" line: 6752 column: 2>) ("a2ps" "4.14" "https://www.gnu.org/software/a2ps/" #< file: "gnu/packages/pretty-print.scm" line: 51 column: 2>)) actual-value: (("0ad" "0.0.25b-alpha" "https://play0ad.com" #< file: "gnu/packages/games.scm" line: 6587 column: 2>) ("0ad-data" "0.0.25b-alpha" "https://play0ad.com" #< file: "gnu/packages/games.scm" line: 6540 column: 2>) ("0xffff" "0.9" "https://github.com/pali/0xFFFF" #< file: "gnu/packages/flashing-tools.scm" line: 106 column: 2>) ("389-ds-base" "1.4.4.17" "https://directory.fedoraproject.org" #< file: "gnu/packages/openldap.scm" line: 204 column: 2>) ("4dtris" "0.4.3" "https://launchpad.net/4dtris/" #< file: "gnu/packages/games.scm" line: 8662 column: 2>) ("4store" "1.1.6" "https://github.com/4store/4store" #< file: "gnu/packages/databases.scm" line: 175 column: 2>) ("4ti2" "1.6.9" "http://www.4ti2.de/" #< file: "gnu/packages/maths.scm" line: 681 column: 2>) ("7kaa" "2.15.4p1" "https://7kfans.com/" #< file: "gnu/packages/games.scm" line: 12028 column: 2>) ("a2jmidid" "9" "https://github.com/jackaudio/a2jmidid" #< file: "gnu/packages/music.scm" line: 6752 column: 2>) ("a2ps" "4.14" "https://www.gnu.org/software/a2ps/" #< file: "gnu/packages/pretty-print.scm" line: 51 column: 2>)) result: PASS test-name: inferior-available-packages location: /home/akyle/guix/tests/inferior.scm:120 source: + (test-equal + "inferior-available-packages" + (take (sort (fold-available-packages + (lambda* (name + version + result + #:key + supported? + deprecated? + #:allow-other-keys) + (if (and supported? (not deprecated?)) + (alist-cons name version result) + result)) + '()) + (lambda (x y) (stringlist + (lambda (package) + (list (package-name package) + (package-version package) + (package-location package))))) + (list (map ->list (find-packages-by-name "guile" #f)) + (map ->list + (find-packages-by-name "guile" "2.2")))) + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix")) + (->list + (lambda (package) + (list (inferior-package-name package) + (inferior-package-version package) + (inferior-package-location package)))) + (lst1 (map ->list + (lookup-inferior-packages inferior "guile"))) + (lst2 (map ->list + (lookup-inferior-packages inferior "guile" "2.2")))) + (close-inferior inferior) + (list lst1 lst2))) expected-value: ((("guile" "3.0.7" #< file: "gnu/packages/guile.scm" line: 306 column: 2>) ("guile" "2.2.7" #< file: "gnu/packages/guile.scm" line: 247 column: 2>) ("guile" "2.2.4" #< file: "gnu/packages/guile.scm" line: 293 column: 2>) ("guile" "2.0.14" #< file: "gnu/packages/guile.scm" line: 147 column: 2>) ("guile" "1.8.8" #< file: "gnu/packages/guile.scm" line: 76 column: 2>)) (("guile" "2.2.7" #< file: "gnu/packages/guile.scm" line: 247 column: 2>) ("guile" "2.2.4" #< file: "gnu/packages/guile.scm" line: 293 column: 2>))) actual-value: ((("guile" "3.0.7" #< file: "gnu/packages/guile.scm" line: 306 column: 2>) ("guile" "2.2.7" #< file: "gnu/packages/guile.scm" line: 247 column: 2>) ("guile" "2.2.4" #< file: "gnu/packages/guile.scm" line: 293 column: 2>) ("guile" "2.0.14" #< file: "gnu/packages/guile.scm" line: 147 column: 2>) ("guile" "1.8.8" #< file: "gnu/packages/guile.scm" line: 76 column: 2>)) (("guile" "2.2.7" #< file: "gnu/packages/guile.scm" line: 247 column: 2>) ("guile" "2.2.4" #< file: "gnu/packages/guile.scm" line: 293 column: 2>))) result: PASS test-name: lookup-inferior-packages and eq?-ness location: /home/akyle/guix/tests/inferior.scm:161 source: + (test-assert + "lookup-inferior-packages and eq?-ness" + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix")) + (lst1 (lookup-inferior-packages inferior "guile")) + (lst2 (lookup-inferior-packages inferior "guile"))) + (close-inferior inferior) + (every eq? lst1 lst2))) actual-value: #t result: PASS test-name: inferior-package-inputs location: /home/akyle/guix/tests/inferior.scm:169 source: + (test-equal + "inferior-package-inputs" + (let ((->list + (match-lambda + ((label (? package? package) . rest) + `(,label + (package + ,(package-name package) + ,(package-version package) + ,(package-location package)) + ,@rest))))) + (list (map ->list (package-inputs guile-3.0-latest)) + (map ->list + (package-native-inputs guile-3.0-latest)) + (map ->list + (package-propagated-inputs guile-3.0-latest)))) + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix")) + (guile (first (lookup-inferior-packages inferior "guile"))) + (->list + (match-lambda + ((label (? inferior-package? package) . rest) + `(,label + (package + ,(inferior-package-name package) + ,(inferior-package-version package) + ,(inferior-package-location package)) + ,@rest)))) + (result + (list (map ->list (inferior-package-inputs guile)) + (map ->list + (inferior-package-native-inputs guile)) + (map ->list + (inferior-package-propagated-inputs guile))))) + (close-inferior inferior) + result)) expected-value: ((("libffi" (package "libffi" "3.3" #< file: "gnu/packages/libffi.scm" line: 44 column: 2>)) ("bash" (package "bash-minimal" "5.1.8" #< file: "gnu/packages/bash.scm" line: 215 column: 2>))) (("pkgconfig" (package "pkg-config" "0.29.2" #< file: "gnu/packages/pkg-config.scm" line: 36 column: 2>))) (("libunistring" (package "libunistring" "0.9.10" #< file: "gnu/packages/libunistring.scm" line: 35 column: 2>)) ("bdw-gc" (package "libgc" "8.0.4" #< file: "gnu/packages/bdw-gc.scm" line: 33 column: 2>)))) actual-value: ((("libffi" (package "libffi" "3.3" #< file: "gnu/packages/libffi.scm" line: 44 column: 2>)) ("bash" (package "bash-minimal" "5.1.8" #< file: "gnu/packages/bash.scm" line: 215 column: 2>))) (("pkgconfig" (package "pkg-config" "0.29.2" #< file: "gnu/packages/pkg-config.scm" line: 36 column: 2>))) (("libunistring" (package "libunistring" "0.9.10" #< file: "gnu/packages/libunistring.scm" line: 35 column: 2>)) ("bdw-gc" (package "libgc" "8.0.4" #< file: "gnu/packages/bdw-gc.scm" line: 33 column: 2>)))) result: PASS test-name: inferior-package-search-paths location: /home/akyle/guix/tests/inferior.scm:199 source: + (test-equal + "inferior-package-search-paths" + (package-native-search-paths guile-3.0) + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix")) + (guile (first (lookup-inferior-packages inferior "guile"))) + (result + (inferior-package-native-search-paths guile))) + (close-inferior inferior) + result)) expected-value: (#< variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #< variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>) actual-value: (#< variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #< variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>) result: PASS test-name: inferior-eval-with-store location: /home/akyle/guix/tests/inferior.scm:208 source: + (test-equal + "inferior-eval-with-store" + (add-text-to-store %store "foo" "Hello, world!") + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix"))) + (inferior-eval-with-store + inferior + %store + '(lambda (store) + (add-text-to-store store "foo" "Hello, world!"))))) expected-value: "/home/akyle/guix/test-tmp/store/lwnq1j3jfrv6wbqgv5j06h58fk3w186q-foo" actual-value: "/home/akyle/guix/test-tmp/store/lwnq1j3jfrv6wbqgv5j06h58fk3w186q-foo" result: PASS test-name: inferior-eval-with-store, &store-protocol-error location: /home/akyle/guix/tests/inferior.scm:217 source: + (test-assert + "inferior-eval-with-store, &store-protocol-error" + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix"))) + (guard (c ((store-protocol-error? c) + (string-contains + (store-protocol-error-message c) + "invalid character"))) + (inferior-eval-with-store + inferior + %store + '(lambda (store) + (add-text-to-store store "we|rd/?!@" "uh uh"))) + #f))) actual-value: 0 result: PASS test-name: inferior-eval-with-store, exception location: /home/akyle/guix/tests/inferior.scm:229 source: + (test-equal + "inferior-eval-with-store, exception" + '(the-answer = 42) + (let ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix"))) + (guard (c ((inferior-exception? c) + (close-inferior inferior) + (inferior-exception-arguments c))) + (inferior-eval-with-store + inferior + %store + '(lambda (store) (throw 'the-answer '= 42)))))) expected-value: (the-answer = 42) actual-value: (the-answer = 42) result: PASS test-name: inferior-eval-with-store, not a procedure location: /home/akyle/guix/tests/inferior.scm:240 source: + (test-equal + "inferior-eval-with-store, not a procedure" + 'wrong-type-arg + (let ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix"))) + (guard (c ((inferior-exception? c) + (close-inferior inferior) + (car (inferior-exception-arguments c)))) + (inferior-eval-with-store + inferior + %store + '(+ 1 2))))) expected-value: wrong-type-arg actual-value: wrong-type-arg result: PASS test-name: inferior-package-derivation location: /home/akyle/guix/tests/inferior.scm:249 source: + (test-equal + "inferior-package-derivation" + (map derivation-file-name + (list (package-derivation + %store + %bootstrap-guile + "x86_64-linux") + (package-derivation + %store + %bootstrap-guile + "armhf-linux"))) + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix")) + (packages (inferior-packages inferior)) + (guile (find (lambda (package) + (string=? + (package-name %bootstrap-guile) + (inferior-package-name package))) + packages))) + (map derivation-file-name + (list (inferior-package-derivation + %store + guile + "x86_64-linux") + (inferior-package-derivation + %store + guile + "armhf-linux"))))) expected-value: ("/home/akyle/guix/test-tmp/store/b2rk3f09r561qm2m0pavrkjgiqid4scf-guile-bootstrap-2.0.drv" "/home/akyle/guix/test-tmp/store/w904m3wrimbliv3q1rjx3fpzf8d7fcd5-guile-bootstrap-2.0.drv") actual-value: ("/home/akyle/guix/test-tmp/store/b2rk3f09r561qm2m0pavrkjgiqid4scf-guile-bootstrap-2.0.drv" "/home/akyle/guix/test-tmp/store/w904m3wrimbliv3q1rjx3fpzf8d7fcd5-guile-bootstrap-2.0.drv") result: PASS test-name: inferior-package-replacement location: /home/akyle/guix/tests/inferior.scm:267 source: + (test-equal + "inferior-package-replacement" + (package-derivation + %store + (package-replacement sqlite) + "x86_64-linux") + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix")) + (packages (inferior-packages inferior))) + (match (lookup-inferior-packages + inferior + (package-name sqlite) + (package-version sqlite)) + ((inferior-sqlite rest ...) + (inferior-package-derivation + %store + (inferior-package-replacement inferior-sqlite) + "x86_64-linux"))))) result: SKIP test-name: inferior-package->manifest-entry location: /home/akyle/guix/tests/inferior.scm:283 source: + (test-equal + "inferior-package->manifest-entry" + (manifest-entry->list + (package->manifest-entry + (first (find-best-packages-by-name "guile" #f)))) + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix")) + (guile (first (lookup-inferior-packages inferior "guile"))) + (entry (inferior-package->manifest-entry guile))) + (close-inferior inferior) + (manifest-entry->list entry))) expected-value: ("guile" "3.0.7" "out" (#< variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #< variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>) (("libunistring" "0.9.10" "out" () ()) ("libgc" "8.0.4" "out" () ()))) actual-value: ("guile" "3.0.7" "out" (#< variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #< variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>) (("libunistring" "0.9.10" "out" () ()) ("libgc" "8.0.4" "out" () ()))) result: PASS test-name: packages->manifest location: /home/akyle/guix/tests/inferior.scm:293 source: + (test-equal + "packages->manifest" + (map manifest-entry->list + (manifest-entries + (packages->manifest + (find-best-packages-by-name "guile" #f)))) + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix")) + (guile (first (lookup-inferior-packages inferior "guile"))) + (manifest (packages->manifest (list guile)))) + (close-inferior inferior) + (map manifest-entry->list + (manifest-entries manifest)))) expected-value: (("guile" "3.0.7" "out" (#< variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #< variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>) (("libunistring" "0.9.10" "out" () ()) ("libgc" "8.0.4" "out" () ())))) actual-value: (("guile" "3.0.7" "out" (#< variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #< variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>) (("libunistring" "0.9.10" "out" () ()) ("libgc" "8.0.4" "out" () ())))) result: PASS FAIL: tests/pack ================ @ build-started /home/akyle/guix/test-tmp/store/dh2m8626746z3a560lqz9vdlii5x6c31-profile.drv - aarch64-linux /home/akyle/guix/test-tmp/var/log/guix/drvs/dh//2m8626746z3a560lqz9vdlii5x6c31-profile.drv.bz2 20244 @ build-succeeded /home/akyle/guix/test-tmp/store/dh2m8626746z3a560lqz9vdlii5x6c31-profile.drv - @ build-started /home/akyle/guix/test-tmp/store/vpyz2fs5fhya2l0kwz1dhdfk8jn6r2d8-pack.tar.gz.drv - aarch64-linux /home/akyle/guix/test-tmp/var/log/guix/drvs/vp//yz2fs5fhya2l0kwz1dhdfk8jn6r2d8-pack.tar.gz.drv.bz2 20251 copying 3 store items [################# ] copying 3 store items /home/akyle/guix/test-tmp/store/9fhp3ahwxs06x6g4sq5176b5gw5k94hx-bootstrap-binaries-0/bin/tar: Option --mtime: Treating date '@1' as 1969-12-31 17:00:01 ./ ./bin/ ./bin/Guile ./home/ ./home/akyle/ ./home/akyle/guix/ ./home/akyle/guix/test-tmp/ ./home/akyle/guix/test-tmp/store/ ./home/akyle/guix/test-tmp/store/1vrprf9kw3bnaqps3dcsx1dpbp740khg-profile/ ./home/akyle/guix/test-tmp/store/1vrprf9kw3bnaqps3dcsx1dpbp740khg-profile/bin ./home/akyle/guix/test-tmp/store/1vrprf9kw3bnaqps3dcsx1dpbp740khg-profile/etc/ ./home/akyle/guix/test-tmp/store/1vrprf9kw3bnaqps3dcsx1dpbp740khg-profile/etc/profile ./home/akyle/guix/test-tmp/store/1vrprf9kw3bnaqps3dcsx1dpbp740khg-profile/lib ./home/akyle/guix/test-tmp/store/1vrprf9kw3bnaqps3dcsx1dpbp740khg-profile/manifest ./home/akyle/guix/test-tmp/store/1vrprf9kw3bnaqps3dcsx1dpbp740khg-profile/share ./home/akyle/guix/test-tmp/store/4py2w1gyzc5cfdr7pzlrjqvzh9d4b4ni-guile-bootstrap-2.0/ ./home/akyle/guix/test-tmp/store/4py2w1gyzc5cfdr7pzlrjqvzh9d4b4ni-guile-bootstrap-2.0/bin/ tar (child): ./home/akyle/guix/test-tmp/store/4py2w1gyzc5cfdr7pzlrjqvzh9d4b4ni-guile-bootstrap-2.0/bin/.guile-real /home/akyle/guix/test-tmp/store/9fhp3ahwxs06x6g4sq5176b5gw5k94hx-bootstrap-binaries-0/bin/gzip -6n: Cannot exec: No such file or directory tar (child): Error is not recoverable: exiting now /home/akyle/guix/test-tmp/store/9fhp3ahwxs06x6g4sq5176b5gw5k94hx-bootstrap-binaries-0/bin/tar: /home/akyle/guix/test-tmp/store/x3kqf5s1sgl7r35ssy5pz6xy6hjdip2z-pack.tar.gz: Wrote only 4096 of 10240 bytes /home/akyle/guix/test-tmp/store/9fhp3ahwxs06x6g4sq5176b5gw5k94hx-bootstrap-binaries-0/bin/tar: Child returned status 2 /home/akyle/guix/test-tmp/store/9fhp3ahwxs06x6g4sq5176b5gw5k94hx-bootstrap-binaries-0/bin/tar: Error is not recoverable: exiting now Backtrace: In ice-9/boot-9.scm: 160: 10 [catch #t # ...] In unknown file: ?: 9 [apply-smob/1 #] In ice-9/boot-9.scm: 66: 8 [call-with-prompt prompt0 ...] In ice-9/eval.scm: 432: 7 [eval # #] In ice-9/boot-9.scm: 2412: 6 [save-module-excursion #] 4089: 5 [#] 1734: 4 [%start-stack load-stack #] 1739: 3 [#] In unknown file: ?: 2 [primitive-load "/home/akyle/guix/test-tmp/store/dm02qqshc8cik3nb39qsxnhldhy4mlzd-pack.tar.gz-builder"] In ice-9/r4rs.scm: 90: 1 [dynamic-wind # ...] In guix/build/utils.scm: 761: 0 [invoke "/home/akyle/guix/test-tmp/store/9fhp3ahwxs06x6g4sq5176b5gw5k94hx-bootstrap-binaries-0/bin/tar" ...] guix/build/utils.scm:761:6: In procedure invoke: guix/build/utils.scm:761:6: Throw to key `srfi-34' with args `(#)'. builder for `/home/akyle/guix/test-tmp/store/vpyz2fs5fhya2l0kwz1dhdfk8jn6r2d8-pack.tar.gz.drv' failed with exit code 1 @ build-failed /home/akyle/guix/test-tmp/store/vpyz2fs5fhya2l0kwz1dhdfk8jn6r2d8-pack.tar.gz.drv - 1 builder for `/home/akyle/guix/test-tmp/store/vpyz2fs5fhya2l0kwz1dhdfk8jn6r2d8-pack.tar.gz.drv' failed with exit code 1 cannot build derivation `/home/akyle/guix/test-tmp/store/wqzz8f2rrmai5vywd92j6gif6vpmgwm3-check-tarball.drv': 1 dependencies couldn't be built test-name: self-contained-tarball location: /home/akyle/guix/tests/pack.scm:67 source: + (test-assert + "self-contained-tarball" + (let ((guile (package-derivation %store %bootstrap-guile))) + (run-with-store + %store + (mlet* %store-monad + ((profile + -> + (profile + (content + (packages->manifest (list %bootstrap-guile))) + (hooks '()) + (locales? #f))) + (tarball + (self-contained-tarball + "pack" + profile + #:symlinks + '(("/bin/Guile" -> "bin/guile")) + #:compressor + %gzip-compressor + #:archiver + %tar-bootstrap)) + (check (gexp->derivation + "check-tarball" + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules + (guix build utils) + (srfi srfi-1)) + (define store + (string-append + "." + (%store-directory) + "/")) + (define (canonical? file) + (let ((st (lstat file))) + (or (not (string-prefix? store file)) + (eq? 'symlink (stat:type st)) + (and (= 1 (stat:mtime st)) + (zero? (logand + 146 + (stat:mode st))))))) + (define bin + (string-append + "." + (ungexp profile) + "/bin")) + (setenv + "PATH" + (string-append + (ungexp %tar-bootstrap) + "/bin")) + (system* "tar" "xvf" (ungexp tarball)) + (mkdir (ungexp output)) + (exit (and (file-exists? + (string-append bin "/guile")) + (file-exists? store) + (every canonical? + (find-files + "." + (const #t) + #:directories? + #t)) + (string=? + (string-append + (ungexp %bootstrap-guile) + "/bin") + (readlink bin)) + (string=? + (string-append + ".." + (ungexp profile) + "/bin/guile") + (readlink "bin/Guile")))))))))) + (built-derivations (list check))) + #:guile-for-build + guile))) actual-value: #f actual-error: + (%exception + #<&store-protocol-error message: "build of `/home/akyle/guix/test-tmp/store/wqzz8f2rrmai5vywd92j6gif6vpmgwm3-check-tarball.drv' failed" status: 100>) result: FAIL test-name: self-contained-tarball + localstatedir location: /home/akyle/guix/tests/pack.scm:126 source: + (test-assert + "self-contained-tarball + localstatedir" + (let ((guile (package-derivation store %bootstrap-guile))) + (run-with-store + store + (mlet* %store-monad + ((guile (set-guile-for-build (default-guile))) + (profile + (profile-derivation + (packages->manifest (list %bootstrap-guile)) + #:hooks + '() + #:locales? + #f)) + (tarball + (self-contained-tarball + "tar-pack" + profile + #:localstatedir? + #t)) + (check (gexp->derivation + "check-tarball" + (gexp (let ((bin (string-append + "." + (ungexp profile) + "/bin"))) + (setenv + "PATH" + (string-append + (ungexp %tar-bootstrap) + "/bin")) + (system* "tar" "xvf" (ungexp tarball)) + (mkdir (ungexp output)) + (exit (and (file-exists? + "var/guix/db/db.sqlite") + (string=? + (string-append + (ungexp %bootstrap-guile) + "/bin") + (readlink bin))))))))) + (built-derivations (list check))) + #:guile-for-build + guile))) actual-value: #t result: PASS test-name: self-contained-tarball + localstatedir, UTF-8 file names location: /home/akyle/guix/tests/pack.scm:149 source: + (test-assert + "self-contained-tarball + localstatedir, UTF-8 file names" + (let ((guile (package-derivation store %bootstrap-guile))) + (run-with-store + store + (mlet* %store-monad + ((guile (set-guile-for-build (default-guile))) + (tree (interned-file-tree + `("directory-with-utf8-file-names" + directory + ("?" regular (data "alpha")) + ("?" regular (data "lambda"))))) + (tarball + (self-contained-tarball + "tar-pack" + tree + #:localstatedir? + #t)) + (check (gexp->derivation + "check-tarball" + (with-extensions + (list guile-sqlite3 guile-gcrypt) + (with-imported-modules + (source-module-closure '((guix store database))) + (gexp (begin + (use-modules + (guix store database) + (rnrs io ports) + (srfi srfi-1)) + (define (valid-file? basename data) + (define file + (string-append + "./" + (ungexp tree) + "/" + basename)) + (string=? + (call-with-input-file + (pk 'file file) + get-string-all) + data)) + (setenv + "PATH" + (string-append + (ungexp %tar-bootstrap) + "/bin")) + (system* "tar" "xvf" (ungexp tarball)) + (sql-schema + (ungexp + (local-file + (search-path + %load-path + "guix/store/schema.sql")))) + (with-database + "var/guix/db/db.sqlite" + db + (setenv + "GUIX_LOCPATH" + (ungexp-native + (file-append + glibc-utf8-locales + "/lib/locale"))) + (setlocale LC_ALL "en_US.utf8") + (mkdir (ungexp output)) + (exit (and (every valid-file? + '("?" "?") + '("alpha" "lambda")) + (integer? + (path-id + db + (ungexp tree))))))))))))) + (built-derivations (list check))) + #:guile-for-build + guile))) actual-value: #t result: PASS test-name: docker-image + localstatedir location: /home/akyle/guix/tests/pack.scm:200 source: + (test-assert + "docker-image + localstatedir" + (let ((guile (package-derivation store %bootstrap-guile))) + (run-with-store + store + (mlet* %store-monad + ((guile (set-guile-for-build (default-guile))) + (profile + (profile-derivation + (packages->manifest (list %bootstrap-guile)) + #:hooks + '() + #:locales? + #f)) + (tarball + (docker-image + "docker-pack" + profile + #:symlinks + '(("/bin/Guile" -> "bin/guile")) + #:localstatedir? + #t)) + (check (gexp->derivation + "check-tarball" + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules + (guix build utils) + (ice-9 match)) + (define bin + (string-append + "." + (ungexp profile) + "/bin")) + (setenv + "PATH" + (string-append + (ungexp %tar-bootstrap) + "/bin")) + (mkdir "base") + (with-directory-excursion + "base" + (invoke "tar" "xvf" (ungexp tarball))) + (match (find-files "base" "layer.tar") + ((layer) (invoke "tar" "xvf" layer))) + (when (and (file-exists? + (string-append bin "/guile")) + (file-exists? + "var/guix/db/db.sqlite") + (file-is-directory? "tmp") + (string=? + (string-append + (ungexp %bootstrap-guile) + "/bin") + (pk 'binlink (readlink bin))) + (string=? + (string-append + (ungexp profile) + "/bin/guile") + (pk 'guilelink + (readlink "bin/Guile")))) + (mkdir (ungexp output))))))))) + (built-derivations (list check))) + #:guile-for-build + guile))) actual-value: #t result: PASS test-name: squashfs-image + localstatedir location: /home/akyle/guix/tests/pack.scm:241 source: + (test-assert + "squashfs-image + localstatedir" + (let ((guile (package-derivation store %bootstrap-guile))) + (run-with-store + store + (mlet* %store-monad + ((guile (set-guile-for-build (default-guile))) + (profile + (profile-derivation + (packages->manifest (list %bootstrap-guile)) + #:hooks + '() + #:locales? + #f)) + (image (squashfs-image + "squashfs-pack" + profile + #:symlinks + '(("/bin" -> "bin")) + #:localstatedir? + #t)) + (check (gexp->derivation + "check-tarball" + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules + (guix build utils) + (ice-9 match)) + (define bin + (string-append + "." + (ungexp profile) + "/bin")) + (setenv + "PATH" + (string-append + (ungexp squashfs-tools) + "/bin")) + (invoke "unsquashfs" (ungexp image)) + (with-directory-excursion + "squashfs-root" + (when (and (file-exists? + (string-append bin "/guile")) + (file-exists? + "var/guix/db/db.sqlite") + (string=? + (string-append + (ungexp %bootstrap-guile) + "/bin") + (pk 'binlink (readlink bin))) + (string=? + (string-drop + (string-append + (ungexp profile) + "/bin") + 1) + (pk 'guilelink + (readlink "bin")))) + (mkdir (ungexp output)))))))))) + (built-derivations (list check))) + #:guile-for-build + guile))) actual-value: #t result: PASS /home/akyle/guix/tests/pack.scm:163:23: warning: importing module (guix config) from the host substitute: substitute: updating substitutes from 'https://ci.guix.gnu.org'... 0.0% substitute: updating substitutes from 'https://ci.guix.gnu.org'... 100.0% substitute: substitute: updating substitutes from 'https://bordeaux.guix.gnu.org'... 0.0% substitute: updating substitutes from 'https://bordeaux.guix.gnu.org'... 100.0% substitute: substitute: updating substitutes from 'https://ci.guix.gnu.org'... 0.0% substitute: updating substitutes from 'https://ci.guix.gnu.org'... 100.0% substitute: substitute: updating substitutes from 'https://bordeaux.guix.gnu.org'... 0.0% substitute: updating substitutes from 'https://bordeaux.guix.gnu.org'... 100.0% substitute: substitute: updating substitutes from 'https://ci.guix.gnu.org'... 0.0% substitute: updating substitutes from 'https://ci.guix.gnu.org'... 100.0% substitute: substitute: updating substitutes from 'https://bordeaux.guix.gnu.org'... 0.0% substitute: updating substitutes from 'https://bordeaux.guix.gnu.org'... 100.0% substitute: substitute: updating substitutes from 'https://ci.guix.gnu.org'... 0.0% substitute: updating substitutes from 'https://ci.guix.gnu.org'... 100.0% substitute: substitute: updating substitutes from 'https://bordeaux.guix.gnu.org'... 0.0% substitute: updating substitutes from 'https://bordeaux.guix.gnu.org'... 100.0% building path(s) `/gnu/store/78yhgz0c5lgd5718015n9yhicky9q798-module-import' building path(s) `/gnu/store/jigi9gzz3i8m105wgsl2mpx8774lvn6w-data.tar.gz' copying 3 store items [################# ] copying 3 store items /gnu/store/vd9yacfwqgifkrqj3hhgyp358bfcb41q-bootstrap-binaries-0/bin/tar: Option --mtime: Treating date '@1' as 1970-01-01 00:00:01 ./ ./gnu/ ./gnu/store/ ./gnu/store/chsrhxr7qap5560nvrisw9yp7bqs2bmp-bash tar (child): /gnu/store/vd9yacfwqgifkrqj3hhgyp358bfcb41q-bootstrap-binaries-0/bin/gzip -6n: Cannot exec: No such file or directory tar (child): Error is not recoverable: exiting now /gnu/store/vd9yacfwqgifkrqj3hhgyp358bfcb41q-bootstrap-binaries-0/bin/tar: /gnu/store/jigi9gzz3i8m105wgsl2mpx8774lvn6w-data.tar.gz: Wrote only 4096 of 10240 bytes /gnu/store/vd9yacfwqgifkrqj3hhgyp358bfcb41q-bootstrap-binaries-0/bin/tar: Child returned status 2 /gnu/store/vd9yacfwqgifkrqj3hhgyp358bfcb41q-bootstrap-binaries-0/bin/tar: Error is not recoverable: exiting now Backtrace: 2 (primitive-load "/gnu/store/yh9z6j7pxqycc2hpra4daipgqvp?") In ice-9/boot-9.scm: 142:2 1 (dynamic-wind _ _ #) In guix/build/utils.scm: 761:6 0 (invoke "/gnu/store/vd9yacfwqgifkrqj3hhgyp358bfcb41q-b?" ?) guix/build/utils.scm:761:6: In procedure invoke: ERROR: 1. &invoke-error: program: "/gnu/store/vd9yacfwqgifkrqj3hhgyp358bfcb41q-bootstrap-binaries-0/bin/tar" arguments: ("-cvf" "/gnu/store/jigi9gzz3i8m105wgsl2mpx8774lvn6w-data.tar.gz" "." "-I" "/gnu/store/vd9yacfwqgifkrqj3hhgyp358bfcb41q-bootstrap-binaries-0/bin/gzip -6n" "--sort=name" "--format=gnu" "--mtime=@1" "--owner=root:0" "--group=root:0" "--hard-dereference" "--check-links") exit-status: 2 term-signal: #f stop-signal: #f builder for `/gnu/store/vlydwn87792vbqzw8zc2kl4hk5nrfzfl-data.tar.gz.drv' failed with exit code 1 cannot build derivation `/gnu/store/zjcdf1hz9g08hm2rp7jfpcf3x058zsxr-deb-pack.deb.drv': 1 dependencies couldn't be built cannot build derivation `/gnu/store/ywd6ianhkqhksypa4plh010w9y101vl8-check-deb-pack.drv': 1 dependencies couldn't be built test-name: deb archive with symlinks and control files location: /home/akyle/guix/tests/pack.scm:280 source: + (test-assert + "deb archive with symlinks and control files" + (let ((guile (package-derivation store %bootstrap-guile))) + (run-with-store + store + (mlet* %store-monad + ((guile (set-guile-for-build (default-guile))) + (profile + (profile-derivation + (packages->manifest (list %bootstrap-guile)) + #:hooks + '() + #:locales? + #f)) + (deb (debian-archive + "deb-pack" + profile + #:compressor + %gzip-compressor + #:symlinks + '(("/opt/gnu/bin" -> "bin")) + #:archiver + %tar-bootstrap + #:extra-options + (list #:triggers-file + (plain-file + "triggers" + "activate-noawait /usr/share/icons/hicolor\n") + #:postinst-file + (plain-file + "postinst" + "echo running configure script\n")))) + (check (gexp->derivation + "check-deb-pack" + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules + (guix build utils) + (ice-9 match) + (ice-9 popen) + (ice-9 rdelim) + (ice-9 textual-ports) + (rnrs base)) + (setenv + "PATH" + (string-join + (list (string-append + (ungexp-native %tar-bootstrap) + "/bin") + (string-append + (ungexp-native dpkg) + "/bin") + (string-append + (ungexp-native %ar-bootstrap) + "/bin")) + ":")) + (let* ((port (open-pipe* + OPEN_READ + "dpkg" + "--info" + (ungexp deb))) + (info (get-string-all port)) + (exit-val + (status:exit-val + (close-pipe port)))) + (assert (zero? exit-val)) + (assert + (string-contains + info + (string-append + "Package: " + (ungexp-native + (package-name + %bootstrap-guile))))) + (assert + (string-contains + info + (string-append + "Version: " + (ungexp-native + (package-version + %bootstrap-guile)))))) + (invoke "ar" "-xv" (ungexp deb)) + (assert (file-exists? "debian-binary")) + (assert (file-exists? "data.tar.gz")) + (assert (file-exists? "control.tar.gz")) + (define hard-links + (let ((port (open-pipe* + OPEN_READ + "tar" + "-tvf" + "data.tar.gz"))) + (let loop ((hard-links '())) + (match (read-line port) + ((? eof-object?) + (assert + (zero? (status:exit-val + (close-pipe + port)))) + hard-links) + (line (if (string-prefix? + "u" + line) + (loop (cons line + hard-links)) + (loop hard-links))))))) + (unless + (null? hard-links) + (error "hard links found in data.tar.gz" + hard-links)) + (invoke "tar" "-xf" "control.tar.gz") + (assert (file-exists? "control")) + (assert + (and (file-exists? "postinst") + (= 73 + (logand + 73 + (stat:perms + (stat "postinst")))))) + (assert (file-exists? "triggers")) + (mkdir (ungexp output)))))))) + (built-derivations (list check))) + #:guile-for-build + guile))) actual-value: #f actual-error: + (%exception + #<&store-protocol-error message: "build of `/gnu/store/ywd6ianhkqhksypa4plh010w9y101vl8-check-deb-pack.drv' failed" status: 100>) result: FAIL SKIP: tests/pypi ================ test-name: guix-package->pypi-name, old URL style location: /home/akyle/guix/tests/pypi.scm:154 source: + (test-equal + "guix-package->pypi-name, old URL style" + "psutil" + (guix-package->pypi-name + (dummy-package + "foo" + (source + (dummy-origin + (uri "https://pypi.org/packages/source/p/psutil/psutil-4.3.0.tar.gz")))))) expected-value: "psutil" actual-value: "psutil" result: PASS test-name: guix-package->pypi-name, new URL style location: /home/akyle/guix/tests/pypi.scm:162 source: + (test-equal + "guix-package->pypi-name, new URL style" + "certbot" + (guix-package->pypi-name + (dummy-package + "foo" + (source + (dummy-origin + (uri "https://pypi.org/packages/a2/3b/4756e6a0ceb14e084042a2a65c615d68d25621c6fd446d0fc10d14c4ce7d/certbot-0.8.1.tar.gz")))))) expected-value: "certbot" actual-value: "certbot" result: PASS test-name: guix-package->pypi-name, several URLs location: /home/akyle/guix/tests/pypi.scm:170 source: + (test-equal + "guix-package->pypi-name, several URLs" + "cram" + (guix-package->pypi-name + (dummy-package + "foo" + (source + (dummy-origin + (uri (list "https://bitheap.org/cram/cram-0.7.tar.gz" + (pypi-uri "cram" "0.7")))))))) expected-value: "cram" actual-value: "cram" result: PASS test-name: guix-package->pypi-name, honor 'upstream-name' location: /home/akyle/guix/tests/pypi.scm:179 source: + (test-equal + "guix-package->pypi-name, honor 'upstream-name'" + "bar-3" + (guix-package->pypi-name + (dummy-package + "foo" + (properties '((upstream-name . "bar-3")))))) expected-value: "bar-3" actual-value: "bar-3" result: PASS test-name: specification->requirement-name location: /home/akyle/guix/tests/pypi.scm:186 source: + (test-equal + "specification->requirement-name" + '("Fizzy" + "PickyThing" + "SomethingWithMarker" + "requests" + "pip") + (map specification->requirement-name + test-specifications)) expected-value: ("Fizzy" "PickyThing" "SomethingWithMarker" "requests" "pip") actual-value: ("Fizzy" "PickyThing" "SomethingWithMarker" "requests" "pip") result: PASS test-name: parse-requires.txt location: /home/akyle/guix/tests/pypi.scm:190 source: + (test-equal + "parse-requires.txt" + (list '("foo" "bar") '("pytest")) + (mock ((ice-9 ports) + call-with-input-file + call-with-input-string) + (parse-requires.txt test-requires.txt))) expected-value: (("foo" "bar") ("pytest")) actual-value: (("foo" "bar") ("pytest")) result: PASS test-name: parse-requires.txt - Beaker location: /home/akyle/guix/tests/pypi.scm:196 source: + (test-equal + "parse-requires.txt - Beaker" + (list '() '("Mock" "coverage")) + (mock ((ice-9 ports) + call-with-input-file + call-with-input-string) + (parse-requires.txt test-requires.txt-beaker))) expected-value: (() ("Mock" "coverage")) actual-value: (() ("Mock" "coverage")) result: PASS test-name: parse-wheel-metadata, with extras location: /home/akyle/guix/tests/pypi.scm:202 source: + (test-equal + "parse-wheel-metadata, with extras" + (list '("wrapt" "bar") '("tox" "bumpversion")) + (mock ((ice-9 ports) + call-with-input-file + call-with-input-string) + (parse-wheel-metadata test-metadata-with-extras))) expected-value: (("wrapt" "bar") ("tox" "bumpversion")) actual-value: (("wrapt" "bar") ("tox" "bumpversion")) result: PASS test-name: parse-wheel-metadata, with extras - Jedi location: /home/akyle/guix/tests/pypi.scm:208 source: + (test-equal + "parse-wheel-metadata, with extras - Jedi" + (list '("parso") '("pytest")) + (mock ((ice-9 ports) + call-with-input-file + call-with-input-string) + (parse-wheel-metadata + test-metadata-with-extras-jedi))) expected-value: (("parso") ("pytest")) actual-value: (("parso") ("pytest")) result: PASS test-name: pypi->guix-package, no wheel location: /home/akyle/guix/tests/pypi.scm:214 source: + (test-assert + "pypi->guix-package, no wheel" + (mock ((guix import utils) + url-fetch + (lambda (url file-name) + (match url + ("https://example.com/foo-1.0.0.tar.gz" + (begin + (mkdir-p "foo-1.0.0/src/bizarre.egg-info") + (with-output-to-file + "foo-1.0.0/src/bizarre.egg-info/requires.txt" + (lambda () (display test-requires.txt))) + (parameterize + ((current-output-port (%make-void-port "rw+"))) + (system* "tar" "czvf" file-name "foo-1.0.0/")) + (delete-file-recursively "foo-1.0.0") + (set! test-source-hash + (call-with-input-file file-name port-sha256)))) + ("https://example.com/foo-1.0.0-py2.py3-none-any.whl" + #f) + (_ (error "Unexpected URL: " url))))) + (mock ((guix http-client) + http-fetch + (lambda (url . rest) + (match url + ("https://pypi.org/pypi/foo/json" + (values + (open-input-string test-json-1) + (string-length test-json-1))) + ("https://example.com/foo-1.0.0-py2.py3-none-any.whl" + #f) + (_ (error "Unexpected URL: " url))))) + (match (pypi->guix-package "foo") + (('package + ('name "python-foo") + ('version "1.0.0") + ('source + ('origin + ('method 'url-fetch) + ('uri ('pypi-uri "foo" 'version)) + ('sha256 ('base32 (? string? hash))))) + ('build-system 'python-build-system) + ('propagated-inputs + ('list 'python-bar 'python-foo)) + ('native-inputs ('list 'python-pytest)) + ('home-page "http://example.com") + ('synopsis "summary") + ('description "summary") + ('license 'license:lgpl2.0)) + (and (string=? + (bytevector->nix-base32-string test-source-hash) + hash) + (equal? + (pypi->guix-package "foo" #:version "1.0.0") + (pypi->guix-package "foo")) + (catch 'quit + (lambda () + (pypi->guix-package + "foo" + #:version + "42")) + (const #t)))) + (x (pk 'fail x #f)))))) actual-value: #t result: PASS test-name: pypi->guix-package, wheels location: /home/akyle/guix/tests/pypi.scm:271 source: + (test-assert + "pypi->guix-package, wheels" + (mock ((guix import utils) + url-fetch + (lambda (url file-name) + (match url + ("https://example.com/foo-1.0.0.tar.gz" + (begin + (mkdir-p "foo-1.0.0/foo.egg-info/") + (with-output-to-file + "foo-1.0.0/foo.egg-info/requires.txt" + (lambda () + (display + "wrong data to make sure we're testing wheels "))) + (parameterize + ((current-output-port (%make-void-port "rw+"))) + (system* "tar" "czvf" file-name "foo-1.0.0/")) + (delete-file-recursively "foo-1.0.0") + (set! test-source-hash + (call-with-input-file file-name port-sha256)))) + ("https://example.com/foo-1.0.0-py2.py3-none-any.whl" + (begin + (mkdir "foo-1.0.0.dist-info") + (with-output-to-file + "foo-1.0.0.dist-info/METADATA" + (lambda () (display test-metadata))) + (let ((zip-file (string-append file-name ".zip"))) + (system* + "zip" + "-q" + zip-file + "foo-1.0.0.dist-info/METADATA") + (rename-file zip-file file-name)) + (delete-file-recursively "foo-1.0.0.dist-info"))) + (_ (error "Unexpected URL: " url))))) + (mock ((guix http-client) + http-fetch + (lambda (url . rest) + (match url + ("https://pypi.org/pypi/foo/json" + (values + (open-input-string test-json-1) + (string-length test-json-1))) + ("https://example.com/foo-1.0.0-py2.py3-none-any.whl" + #f) + (_ (error "Unexpected URL: " url))))) + (invalidate-memoization! pypi->guix-package) + (match (pypi->guix-package "foo") + (('package + ('name "python-foo") + ('version "1.0.0") + ('source + ('origin + ('method 'url-fetch) + ('uri ('pypi-uri "foo" 'version)) + ('sha256 ('base32 (? string? hash))))) + ('build-system 'python-build-system) + ('propagated-inputs + ('list 'python-bar 'python-baz)) + ('native-inputs ('list 'python-pytest)) + ('home-page "http://example.com") + ('synopsis "summary") + ('description "summary") + ('license 'license:lgpl2.0)) + (string=? + (bytevector->nix-base32-string test-source-hash) + hash)) + (x (pk 'fail x #f)))))) result: SKIP test-name: pypi->guix-package, no usable requirement file. location: /home/akyle/guix/tests/pypi.scm:334 source: + (test-assert + "pypi->guix-package, no usable requirement file." + (mock ((guix import utils) + url-fetch + (lambda (url file-name) + (match url + ("https://example.com/foo-1.0.0.tar.gz" + (mkdir-p "foo-1.0.0/foo.egg-info/") + (parameterize + ((current-output-port (%make-void-port "rw+"))) + (system* "tar" "czvf" file-name "foo-1.0.0/")) + (delete-file-recursively "foo-1.0.0") + (set! test-source-hash + (call-with-input-file file-name port-sha256))) + ("https://example.com/foo-1.0.0-py2.py3-none-any.whl" + #f) + (_ (error "Unexpected URL: " url))))) + (mock ((guix http-client) + http-fetch + (lambda (url . rest) + (match url + ("https://pypi.org/pypi/foo/json" + (values + (open-input-string test-json-1) + (string-length test-json-1))) + ("https://example.com/foo-1.0.0-py2.py3-none-any.whl" + #f) + (_ (error "Unexpected URL: " url))))) + (invalidate-memoization! pypi->guix-package) + (match (pypi->guix-package "foo") + (('package + ('name "python-foo") + ('version "1.0.0") + ('source + ('origin + ('method 'url-fetch) + ('uri ('pypi-uri "foo" 'version)) + ('sha256 ('base32 (? string? hash))))) + ('build-system 'python-build-system) + ('home-page "http://example.com") + ('synopsis "summary") + ('description "summary") + ('license 'license:lgpl2.0)) + (string=? + (bytevector->nix-base32-string test-source-hash) + hash)) + (x (pk 'fail x #f)))))) actual-value: #t result: PASS test-name: pypi->guix-package, package name contains "-" followed by digits location: /home/akyle/guix/tests/pypi.scm:380 source: + (test-assert + "pypi->guix-package, package name contains \"-\" followed by digits" + (mock ((guix import utils) + url-fetch + (lambda (url file-name) + (match url + ("https://example.com/foo-99-1.0.0.tar.gz" + (begin + (mkdir-p "foo-99-1.0.0/src/bizarre.egg-info") + (with-output-to-file + "foo-99-1.0.0/src/bizarre.egg-info/requires.txt" + (lambda () (display test-requires.txt))) + (parameterize + ((current-output-port (%make-void-port "rw+"))) + (system* "tar" "czvf" file-name "foo-99-1.0.0/")) + (delete-file-recursively "foo-99-1.0.0") + (set! test-source-hash + (call-with-input-file file-name port-sha256)))) + ("https://example.com/foo-99-1.0.0-py2.py3-none-any.whl" + #f) + (_ (error "Unexpected URL: " url))))) + (mock ((guix http-client) + http-fetch + (lambda (url . rest) + (match url + ("https://pypi.org/pypi/foo-99/json" + (values + (open-input-string test-json-2) + (string-length test-json-2))) + ("https://example.com/foo-99-1.0.0-py2.py3-none-any.whl" + #f) + (_ (error "Unexpected URL: " url))))) + (match (pypi->guix-package "foo-99") + (('package + ('name "python-foo-99") + ('version "1.0.0") + ('source + ('origin + ('method 'url-fetch) + ('uri ('pypi-uri "foo-99" 'version)) + ('sha256 ('base32 (? string? hash))))) + ('properties + ('quote (("upstream-name" . "foo-99")))) + ('build-system 'python-build-system) + ('propagated-inputs + ('list 'python-bar 'python-foo)) + ('native-inputs ('list 'python-pytest)) + ('home-page "http://example.com") + ('synopsis "summary") + ('description "summary") + ('license 'license:lgpl2.0)) + (string=? + (bytevector->nix-base32-string test-source-hash) + hash)) + (x (pk 'fail x #f)))))) actual-value: #t result: PASS error: no source release for pypi package foo 42 warning: Cannot guess requirements from source archive: no requires.txt file found. RUN: tests/services/configuration ================================= test-name: default value, no serialization location: /home/akyle/guix/tests/services/configuration.scm:39 source: + (test-equal + "default value, no serialization" + 80 + (port-configuration-port (port-configuration))) expected-value: 80 actual-value: 80 result: PASS test-name: default value, custom serializer location: /home/akyle/guix/tests/services/configuration.scm:46 source: + (test-equal + "default value, custom serializer" + 80 + (port-configuration-cs-port + (port-configuration-cs))) expected-value: 80 actual-value: 80 result: PASS test-name: no default value, provided location: /home/akyle/guix/tests/services/configuration.scm:54 source: + (test-equal + "no default value, provided" + 55 + (port-configuration-ndv-port + (port-configuration-ndv (port 55)))) expected-value: 55 actual-value: 55 result: PASS test-name: no default value, not provided location: /home/akyle/guix/tests/services/configuration.scm:59 source: + (test-assert + "no default value, not provided" + (guard (c ((configuration-error? c) #t)) + (port-configuration-ndv-port + (port-configuration-ndv)))) actual-value: #t result: PASS test-name: serialize-configuration location: /home/akyle/guix/tests/services/configuration.scm:70 source: + (test-assert + "serialize-configuration" + (gexp? (let ((config (serializable-configuration))) + (serialize-configuration + config + serializable-configuration-fields)))) actual-value: #t result: PASS test-name: serialize-configuration with no-serialization location: /home/akyle/guix/tests/services/configuration.scm:79 source: + (test-assert + "serialize-configuration with no-serialization" + (not (false-if-exception + (let ((config (serializable-configuration))) + (serialize-configuration + config + serializable-configuration-fields))))) actual-value: #t result: PASS test-name: serialize-configuration with prefix location: /home/akyle/guix/tests/services/configuration.scm:92 source: + (test-assert + "serialize-configuration with prefix" + (gexp? (let ((config (configuration-with-prefix))) + (serialize-configuration + config + configuration-with-prefix-fields)))) actual-value: #t result: PASS test-name: maybe value serialization location: /home/akyle/guix/tests/services/configuration.scm:109 source: + (test-equal + "maybe value serialization" + "port=80" + (serialize-maybe-number "port" 80)) expected-value: "port=80" actual-value: "port=80" result: PASS test-name: maybe value without serialization no procedure bound location: /home/akyle/guix/tests/services/configuration.scm:119 source: + (test-assert + "maybe value without serialization no procedure bound" + (not (defined? 'serialize-maybe-string))) actual-value: #t result: PASS SKIP: tests/upstream ==================== test-name: coalesce-sources same version location: /home/akyle/guix/tests/upstream.scm:30 source: + (test-equal + "coalesce-sources same version" + (list (upstream-source + (package "foo") + (version "1") + (urls '("ftp://example.org/foo-1.tar.xz" + "ftp://example.org/foo-1.tar.gz")) + (signature-urls + '("ftp://example.org/foo-1.tar.xz.sig" + "ftp://example.org/foo-1.tar.gz.sig")))) + (coalesce-sources + (list (upstream-source + (package "foo") + (version "1") + (urls '("ftp://example.org/foo-1.tar.gz")) + (signature-urls + '("ftp://example.org/foo-1.tar.gz.sig"))) + (upstream-source + (package "foo") + (version "1") + (urls '("ftp://example.org/foo-1.tar.xz")) + (signature-urls + '("ftp://example.org/foo-1.tar.xz.sig")))))) result: SKIP RUN: tests/offload ================== test-name: #f location: /home/akyle/guix/tests/offload.scm:55 source: + (test-assert + (machine-matches? + (deprecated-build-machine "i686-linux") + (build-requirements (system "i686-linux")))) actual-value: #t result: PASS test-name: #f location: /home/akyle/guix/tests/offload.scm:60 source: + (test-assert + (machine-matches? + (new-build-machine '("i686-linux")) + (build-requirements (system "i686-linux")))) actual-value: #t result: PASS test-name: #f location: /home/akyle/guix/tests/offload.scm:66 source: + (test-assert + (machine-matches? + (new-build-machine + '("armhf-linux" + "aarch64-linux" + "i686-linux" + "x86_64-linux")) + (build-requirements (system "armhf-linux")))) actual-value: #t result: PASS /home/akyle/guix/tests/offload.scm:41:2: warning: The 'system' field is deprecated, please use 'systems' instead. FAIL: tests/guix-build-branch ============================= accepted connection from pid 22979, user akyle + guix build --version guix build (GNU Guix) UNKNOWN Copyright (C) 2022 the Guix authors License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. + guile -c '(getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)' ++ guix build guile-gcrypt -d accepted connection from pid 23002, user akyle + orig_drv=/home/akyle/guix/test-tmp/store/y1m0s0g70pd3s79wz94a45mfvrp10dqy-guile-gcrypt-0.3.0.drv ++ guix build guile-gcrypt --with-branch=guile-gcrypt=master -d accepted connection from pid 23009, user akyle updating checkout of 'https://notabug.org/cwebber/guile-gcrypt.git'... guix build: error: cannot fetch branch 'master' from https://notabug.org/cwebber/guile-gcrypt.git: the SSL certificate is invalid + latest_drv= FAIL tests/guix-build-branch.sh (exit status: 1) FAIL: tests/guix-git-authenticate ================================= accepted connection from pid 23117, user akyle + '[' -d /home/akyle/guix/.git ']' + guile -c '(use-modules (git)) (member "refs/heads/keyring" (branch-list (repository-open ".")))' + intro_commit=9edb3f66fd807b096b48283debdcddccfea34bad + intro_signer='BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA' + cache_key=test-23127 + guix git authenticate 9edb3f66fd807b096b48283debdcddccfea34bad 'BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA' --cache-key=test-23127 --stats --end=9549f0283a78fe36f2d4ff2a04ef8ad6b0c02604 guix git: error: Git error: cannot locate remote-tracking branch 'keyring' FAIL tests/guix-git-authenticate.sh (exit status: 1) FAIL: tests/guix-pack ===================== accepted connection from pid 23356, user akyle + guile -c '(getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)' + guix pack --version guix pack (GNU Guix) UNKNOWN Copyright (C) 2022 the Guix authors License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. + GUIX_BUILD_OPTIONS=--no-substitutes + export GUIX_BUILD_OPTIONS ++ mktemp -d + test_directory=/tmp/tmp.46hMeTPkcE + trap 'chmod -Rf +w "$test_directory"; rm -rf "$test_directory"' EXIT ++ guix pack coreutils -d --no-grafts accepted connection from pid 23380, user akyle + drv=/home/akyle/guix/test-tmp/store/9gfknj9wjy691kwgrkly42fm7xbvknr9-coreutils-tarball-pack.tar.gz.drv + guix gc -R /home/akyle/guix/test-tmp/store/9gfknj9wjy691kwgrkly42fm7xbvknr9-coreutils-tarball-pack.tar.gz.drv ++ guix build coreutils -d --no-grafts accepted connection from pid 23387, user akyle accepted connection from pid 23389, user akyle + grep /home/akyle/guix/test-tmp/store/c7mf7sphr0mi6z78qzl7k76zwp0zz9q8-coreutils-8.32.drv /home/akyle/guix/test-tmp/store/c7mf7sphr0mi6z78qzl7k76zwp0zz9q8-coreutils-8.32.drv ++ guix pack idutils -d --no-grafts --target=arm-linux-gnueabihf accepted connection from pid 23402, user akyle + drv=/home/akyle/guix/test-tmp/store/49w3kin5hr4nrb5rj3j59y14h09s86ya-idutils-tarball-pack.tar.gz.drv + guix gc -R /home/akyle/guix/test-tmp/store/49w3kin5hr4nrb5rj3j59y14h09s86ya-idutils-tarball-pack.tar.gz.drv ++ guix build idutils --target=arm-linux-gnueabihf -d --no-grafts accepted connection from pid 23409, user akyle accepted connection from pid 23411, user akyle + grep /home/akyle/guix/test-tmp/store/4mllxwhp38rfsp6mz1qxjazk5i00vi5d-idutils-4.6.drv /home/akyle/guix/test-tmp/store/4mllxwhp38rfsp6mz1qxjazk5i00vi5d-idutils-4.6.drv + guix gc -R /home/akyle/guix/test-tmp/store/49w3kin5hr4nrb5rj3j59y14h09s86ya-idutils-tarball-pack.tar.gz.drv ++ guix build idutils -d --no-grafts accepted connection from pid 23424, user akyle accepted connection from pid 23426, user akyle + grep /home/akyle/guix/test-tmp/store/mw99p6zb7bns9kn57adbja3yyvhv0k09-idutils-4.6.drv + guix pack --compression=none --bootstrap guile-bootstrap accepted connection from pid 23439, user akyle The following derivation will be built: /home/akyle/guix/test-tmp/store/b0lhqg3dnyq9hwrr6lfb8gq2gppmxgnz-guile-bootstrap-tarball-pack.tar.xz.drv building /home/akyle/guix/test-tmp/store/b0lhqg3dnyq9hwrr6lfb8gq2gppmxgnz-guile-bootstrap-tarball-pack.tar.xz.drv... builder for `/home/akyle/guix/test-tmp/store/b0lhqg3dnyq9hwrr6lfb8gq2gppmxgnz-guile-bootstrap-tarball-pack.tar.xz.drv' failed with exit code 1 build of /home/akyle/guix/test-tmp/store/b0lhqg3dnyq9hwrr6lfb8gq2gppmxgnz-guile-bootstrap-tarball-pack.tar.xz.drv failed View build log at '/home/akyle/guix/test-tmp/var/log/guix/drvs/b0/lhqg3dnyq9hwrr6lfb8gq2gppmxgnz-guile-bootstrap-tarball-pack.tar.xz.drv.bz2'. guix pack: error: build of `/home/akyle/guix/test-tmp/store/b0lhqg3dnyq9hwrr6lfb8gq2gppmxgnz-guile-bootstrap-tarball-pack.tar.xz.drv' failed + chmod -Rf +w /tmp/tmp.46hMeTPkcE + rm -rf /tmp/tmp.46hMeTPkcE FAIL tests/guix-pack.sh (exit status: 1) FAIL: tests/guix-home ===================== accepted connection from pid 25764, user akyle + set -e + guix home --version guix show (GNU Guix) UNKNOWN Copyright (C) 2022 the Guix authors License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. ++ guile -c '(use-modules (guix config))(display %storedir)' + NIX_STORE_DIR=/gnu/store ++ guile -c '(use-modules (guix config))(display %localstatedir)' + localstatedir=/var + GUIX_DAEMON_SOCKET=/var/guix/daemon-socket/socket + export NIX_STORE_DIR GUIX_DAEMON_SOCKET + guile -c '(use-modules (guix)) (exit (false-if-exception (open-connection)))' ++ dirname /gnu/store + STORE_PARENT=/gnu + export STORE_PARENT + test /gnu = / ++ mktemp -d + test_directory=/tmp/tmp.yuNYsByhPF + trap 'chmod -Rf +w "$test_directory"; rm -rf "$test_directory"' EXIT + cd /tmp/tmp.yuNYsByhPF + HOME=/tmp/tmp.yuNYsByhPF + export HOME + printf '# dot-bashrc test file for guix home' + cat + guix home reconfigure /tmp/tmp.yuNYsByhPF/home.scm substitute: substitute: updating substitutes from 'https://ci.guix.gnu.org'... 0.0% substitute: updating substitutes from 'https://ci.guix.gnu.org'... 50.0% substitute: updating substitutes from 'https://ci.guix.gnu.org'... 100.0% substitute: substitute: updating substitutes from 'https://bordeaux.guix.gnu.org'... 0.0% substitute: updating substitutes from 'https://bordeaux.guix.gnu.org'... 50.0% substitute: updating substitutes from 'https://bordeaux.guix.gnu.org'... 100.0% The following derivations will be built: /gnu/store/5y6r0ak51wwsgwyz185s93vaija93k9y-home.drv /gnu/store/5afdyf17y9b9acyqsglrqwn7rwxlg50f-on-first-login.drv /gnu/store/63xi2j7wfp9lhbx9q4i5v6zhr79lq6gk-guix-1.3.0-17.2a49ddb.drv /gnu/store/hlh3g4hy16ckzwqbz2aa4gh63xsyyfsj-activate.drv /gnu/store/68sp81p13kc6adrli2b290vls0bm135j-update-symlinks.drv building /gnu/store/63xi2j7wfp9lhbx9q4i5v6zhr79lq6gk-guix-1.3.0-17.2a49ddb.drv... WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete' starting phase `set-SOURCE-DATE-EPOCH' phase `set-SOURCE-DATE-EPOCH' succeeded after 0.0 seconds starting phase `set-paths' environment variable `PATH' set to `/gnu/store/8v88l7x1z3w9394fw5z84s12ai7va7q4-pkg-config-0.29.2/bin:/gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/bin:/gnu/store/5lvdabvwgn5m1s6i8kwrmw773chp0xxs-gnutls-3.7.2/bin:/gnu/store/mp8jbpqy9250wikic1yb5c7kiyff2lwc-autoconf-2.69/bin:/gnu/store/k0mrs61m8cf31xg2sf6zbak59gmn85kl-automake-1.16.3/bin:/gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin:/gnu/store/hycbwzbcimhs7zkmh4ngqqbj4nw1dvpm-texinfo-6.7/bin:/gnu/store/x4sxy2rwfl5ln4z57ghgki6zn9ivvgcw-graphviz-2.49.0/bin:/gnu/store/g2g9kqjp155adm2jdl40dfgb2gpk9qa0-help2man-1.48.3/bin:/gnu/store/wmvdpbf3rzdrpsw9ybpj7rghndkr9fvh-po4a-0.63/bin:/gnu/store/hdgbh3h3skl0g7vfv3240s6l7nhbnj2i-bzip2-1.0.8/bin:/gnu/store/98jvn7i78fcb3jf4xvvl2262f2ap7h8b-gzip-1.10/bin:/gnu/store/m0mvm01wcmgy7ggbcfl7c7jjy3d9alyz-sqlite-3.36.0/bin:/gnu/store/7avhaxgw42al1z8wj737jqakdcv2fizm-libgcrypt-1.8.8/bin:/gnu/store/yvpq2z131c1j4580q97ql6x2b7miwn2v-util-linux-2.37.1/bin:/gnu/store/yvpq2z131c1j4580q97ql6x2b7miwn2v-util-linux-2.37.1/sbin:/gnu/store/c28x11b4igs807mj0rgwlp22sr548djc-disarchive-0.4.0/bin:/gnu/store/d8kx7i62bzcd8ladkzwrchcrd60f7bfj-tar-1.34/bin:/gnu/store/6ascvgl36zxymlpldh8x8igv7pkizi5s-gzip-1.10/bin:/gnu/store/dmca74p8b9ik05mrsnvbviflbxrz9qaw-bzip2-1.0.8/bin:/gnu/store/s3577mn5iz2gjgkrava2sm914bgbnkd8-xz-5.2.5/bin:/gnu/store/61b8q6rgdfgd2ffdnyqk6gq2ckrnm007-file-5.39/bin:/gnu/store/2mvffg3isy144py579g5ajwyjh04xbmp-diffutils-3.8/bin:/gnu/store/b34jl32gsdw4rvm78a82m4q50i6p1d7l-patch-2.7.6/bin:/gnu/store/zxaz9cg2b7x6c1z545x861zqllj8vz6h-findutils-4.8.0/bin:/gnu/store/sb75h0di8w5mhpn4wfhk7za6c7x3c97c-gawk-5.1.0/bin:/gnu/store/skrsx5h5h011al604grc3rqa2dhqp2wc-sed-4.8/bin:/gnu/store/vl9pxlycbk5ff0i7jbgyrh0rb2dl07lx-grep-3.6/bin:/gnu/store/firkqph0zalxwjv5g4cdjm4zh3kl3fax-coreutils-8.32/bin:/gnu/store/zjhq95bn5kmlhiqdsvcyy1nhyphxi8yb-make-4.3/bin:/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin:/gnu/store/zhpqig154gpqkgc964wmdnf6b889jfsq-ld-wrapper-0/bin:/gnu/store/h8052068pq3a6rc903982ad2dd5ssxgk-binutils-2.37/bin:/gnu/store/ky9xbrj6slwvgwa4536xbs5lradbqfk5-gcc-10.3.0/bin:/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/bin:/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/sbin:/gnu/store/0phibcqzvpa3yq7sciv7m95xwyzyy35l-p11-kit-0.23.22/bin:/gnu/store/1f00pxx38wfn13g0hqgd6zn3af4f3hlk-nettle-3.7.3/bin:/gnu/store/g9f6phnp6a8l15rqwn3wf9ahvfa1f1qd-libidn2-2.3.1/bin:/gnu/store/xjq3vfcskv4pzwmvyildc1jkvx0j1xdc-libtasn1-4.17.0/bin:/gnu/store/06jl2arnnax7s5rj12d4mwbk60ick0lw-libgpg-error-1.42/bin' environment variable `PKG_CONFIG_PATH' set to `/gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/lib/pkgconfig:/gnu/store/5lvdabvwgn5m1s6i8kwrmw773chp0xxs-gnutls-3.7.2/lib/pkgconfig:/gnu/store/b78i56xi0pc5knf94a21jgn39690dkqv-guile-lib-0.2.7/lib/pkgconfig:/gnu/store/x4sxy2rwfl5ln4z57ghgki6zn9ivvgcw-graphviz-2.49.0/lib/pkgconfig:/gnu/store/m0mvm01wcmgy7ggbcfl7c7jjy3d9alyz-sqlite-3.36.0/lib/pkgconfig:/gnu/store/7avhaxgw42al1z8wj737jqakdcv2fizm-libgcrypt-1.8.8/lib/pkgconfig:/gnu/store/s3577mn5iz2gjgkrava2sm914bgbnkd8-xz-5.2.5/lib/pkgconfig:/gnu/store/61b8q6rgdfgd2ffdnyqk6gq2ckrnm007-file-5.39/lib/pkgconfig:/gnu/store/1gkpbfxjx2sbchjhf19yjm4a8vkir0nm-libgc-8.0.4/lib/pkgconfig:/gnu/store/0phibcqzvpa3yq7sciv7m95xwyzyy35l-p11-kit-0.23.22/lib/pkgconfig:/gnu/store/rhrxyws0zzq02zpk6y9hhcbiibwag5ls-zlib-1.2.11/lib/pkgconfig:/gnu/store/1f00pxx38wfn13g0hqgd6zn3af4f3hlk-nettle-3.7.3/lib/pkgconfig:/gnu/store/g9f6phnp6a8l15rqwn3wf9ahvfa1f1qd-libidn2-2.3.1/lib/pkgconfig:/gnu/store/xjq3vfcskv4pzwmvyildc1jkvx0j1xdc-libtasn1-4.17.0/lib/pkgconfig:/gnu/store/06jl2arnnax7s5rj12d4mwbk60ick0lw-libgpg-error-1.42/lib/pkgconfig:/gnu/store/b16z4xk0sa81z9vfmhfkz9cyi61ry9mq-gmp-6.2.1/lib/pkgconfig' environment variable `GUILE_LOAD_PATH' set to `/gnu/store/5lvdabvwgn5m1s6i8kwrmw773chp0xxs-gnutls-3.7.2/share/guile/site/3.0:/gnu/store/vd65jrc7a97xfr40nkscgqy7n7a5yb7q-guile-avahi-0.4.0-1.6d43caf/share/guile/site/3.0:/gnu/store/irbvbmhg3az7riz1yq97mq639aqi7jiq-guile-gcrypt-0.3.0/share/guile/site/3.0:/gnu/store/y0mb1753jx0s9j15zcgs8151qj6y02lc-guile-json-4.5.2/share/guile/site/3.0:/gnu/store/b78i56xi0pc5knf94a21jgn39690dkqv-guile-lib-0.2.7/share/guile/site/3.0:/gnu/store/w374348icmm798mibnj5b3gyn8lw83br-guile-sqlite3-0.1.2/share/guile/site/3.0:/gnu/store/hjf09vgpv4kl8ks9aqzgzyqkibaspsz2-guile-zlib-0.1.0/share/guile/site/3.0:/gnu/store/f8r0spjrcxa048n8j36187vlwfqv903w-guile-lzlib-0.0.2/share/guile/site/3.0:/gnu/store/bk99r7by6k2kqxa6m6m60cjncbg49fii-guile-zstd-0.1.1/share/guile/site/3.0:/gnu/store/xafk8xg2fr5x6iynam1vzhd5nzbnq83s-guile-ssh-0.13.1/share/guile/site/3.0:/gnu/store/5mizjr000dzg6mkazl1ydp5wdf5iw80k-guile-git-0.5.2/share/guile/site/3.0:/gnu/store/c28x11b4igs807mj0rgwlp22sr548djc-disarchive-0.4.0/share/guile/site/3.0:/gnu/store/zca305yizn2wah7bj6z8x2ihcqg6qiz2-guile-lzma-0.1.1/share/guile/site/3.0:/gnu/store/byzmvyjgdnrnibfz10gwc2ghkb885cbn-guile-bytestructures-1.0.10/share/guile/site/3.0' environment variable `GUILE_LOAD_COMPILED_PATH' set to `/gnu/store/5lvdabvwgn5m1s6i8kwrmw773chp0xxs-gnutls-3.7.2/lib/guile/3.0/site-ccache:/gnu/store/5lvdabvwgn5m1s6i8kwrmw773chp0xxs-gnutls-3.7.2/share/guile/site/3.0:/gnu/store/vd65jrc7a97xfr40nkscgqy7n7a5yb7q-guile-avahi-0.4.0-1.6d43caf/share/guile/site/3.0:/gnu/store/irbvbmhg3az7riz1yq97mq639aqi7jiq-guile-gcrypt-0.3.0/lib/guile/3.0/site-ccache:/gnu/store/irbvbmhg3az7riz1yq97mq639aqi7jiq-guile-gcrypt-0.3.0/share/guile/site/3.0:/gnu/store/y0mb1753jx0s9j15zcgs8151qj6y02lc-guile-json-4.5.2/lib/guile/3.0/site-ccache:/gnu/store/y0mb1753jx0s9j15zcgs8151qj6y02lc-guile-json-4.5.2/share/guile/site/3.0:/gnu/store/b78i56xi0pc5knf94a21jgn39690dkqv-guile-lib-0.2.7/lib/guile/3.0/site-ccache:/gnu/store/b78i56xi0pc5knf94a21jgn39690dkqv-guile-lib-0.2.7/share/guile/site/3.0:/gnu/store/w374348icmm798mibnj5b3gyn8lw83br-guile-sqlite3-0.1.2/lib/guile/3.0/site-ccache:/gnu/store/w374348icmm798mibnj5b3gyn8lw83br-guile-sqlite3-0.1.2/share/guile/site/3.0:/gnu/store/hjf09vgpv4kl8ks9aqzgzyqkibaspsz2-guile-zlib-0.1.0/lib/guile/3.0/site-ccache:/gnu/store/hjf09vgpv4kl8ks9aqzgzyqkibaspsz2-guile-zlib-0.1.0/share/guile/site/3.0:/gnu/store/f8r0spjrcxa048n8j36187vlwfqv903w-guile-lzlib-0.0.2/lib/guile/3.0/site-ccache:/gnu/store/f8r0spjrcxa048n8j36187vlwfqv903w-guile-lzlib-0.0.2/share/guile/site/3.0:/gnu/store/bk99r7by6k2kqxa6m6m60cjncbg49fii-guile-zstd-0.1.1/lib/guile/3.0/site-ccache:/gnu/store/bk99r7by6k2kqxa6m6m60cjncbg49fii-guile-zstd-0.1.1/share/guile/site/3.0:/gnu/store/xafk8xg2fr5x6iynam1vzhd5nzbnq83s-guile-ssh-0.13.1/lib/guile/3.0/site-ccache:/gnu/store/xafk8xg2fr5x6iynam1vzhd5nzbnq83s-guile-ssh-0.13.1/share/guile/site/3.0:/gnu/store/5mizjr000dzg6mkazl1ydp5wdf5iw80k-guile-git-0.5.2/lib/guile/3.0/site-ccache:/gnu/store/5mizjr000dzg6mkazl1ydp5wdf5iw80k-guile-git-0.5.2/share/guile/site/3.0:/gnu/store/c28x11b4igs807mj0rgwlp22sr548djc-disarchive-0.4.0/lib/guile/3.0/site-ccache:/gnu/store/c28x11b4igs807mj0rgwlp22sr548djc-disarchive-0.4.0/share/guile/site/3.0:/gnu/store/zca305yizn2wah7bj6z8x2ihcqg6qiz2-guile-lzma-0.1.1/lib/guile/3.0/site-ccache:/gnu/store/zca305yizn2wah7bj6z8x2ihcqg6qiz2-guile-lzma-0.1.1/share/guile/site/3.0:/gnu/store/byzmvyjgdnrnibfz10gwc2ghkb885cbn-guile-bytestructures-1.0.10/lib/guile/3.0/site-ccache:/gnu/store/byzmvyjgdnrnibfz10gwc2ghkb885cbn-guile-bytestructures-1.0.10/share/guile/site/3.0' environment variable `ACLOCAL_PATH' set to `/gnu/store/8v88l7x1z3w9394fw5z84s12ai7va7q4-pkg-config-0.29.2/share/aclocal:/gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/share/aclocal:/gnu/store/k0mrs61m8cf31xg2sf6zbak59gmn85kl-automake-1.16.3/share/aclocal:/gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/share/aclocal:/gnu/store/7avhaxgw42al1z8wj737jqakdcv2fizm-libgcrypt-1.8.8/share/aclocal:/gnu/store/06jl2arnnax7s5rj12d4mwbk60ick0lw-libgpg-error-1.42/share/aclocal' environment variable `INFOPATH' set to `/gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/share/info:/gnu/store/5lvdabvwgn5m1s6i8kwrmw773chp0xxs-gnutls-3.7.2/share/info:/gnu/store/vd65jrc7a97xfr40nkscgqy7n7a5yb7q-guile-avahi-0.4.0-1.6d43caf/share/info:/gnu/store/irbvbmhg3az7riz1yq97mq639aqi7jiq-guile-gcrypt-0.3.0/share/info:/gnu/store/b78i56xi0pc5knf94a21jgn39690dkqv-guile-lib-0.2.7/share/info:/gnu/store/xafk8xg2fr5x6iynam1vzhd5nzbnq83s-guile-ssh-0.13.1/share/info:/gnu/store/5mizjr000dzg6mkazl1ydp5wdf5iw80k-guile-git-0.5.2/share/info:/gnu/store/mp8jbpqy9250wikic1yb5c7kiyff2lwc-autoconf-2.69/share/info:/gnu/store/k0mrs61m8cf31xg2sf6zbak59gmn85kl-automake-1.16.3/share/info:/gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/share/info:/gnu/store/hycbwzbcimhs7zkmh4ngqqbj4nw1dvpm-texinfo-6.7/share/info:/gnu/store/g2g9kqjp155adm2jdl40dfgb2gpk9qa0-help2man-1.48.3/share/info:/gnu/store/98jvn7i78fcb3jf4xvvl2262f2ap7h8b-gzip-1.10/share/info:/gnu/store/7avhaxgw42al1z8wj737jqakdcv2fizm-libgcrypt-1.8.8/share/info:/gnu/store/d8kx7i62bzcd8ladkzwrchcrd60f7bfj-tar-1.34/share/info:/gnu/store/6ascvgl36zxymlpldh8x8igv7pkizi5s-gzip-1.10/share/info:/gnu/store/2mvffg3isy144py579g5ajwyjh04xbmp-diffutils-3.8/share/info:/gnu/store/zxaz9cg2b7x6c1z545x861zqllj8vz6h-findutils-4.8.0/share/info:/gnu/store/sb75h0di8w5mhpn4wfhk7za6c7x3c97c-gawk-5.1.0/share/info:/gnu/store/skrsx5h5h011al604grc3rqa2dhqp2wc-sed-4.8/share/info:/gnu/store/vl9pxlycbk5ff0i7jbgyrh0rb2dl07lx-grep-3.6/share/info:/gnu/store/firkqph0zalxwjv5g4cdjm4zh3kl3fax-coreutils-8.32/share/info:/gnu/store/zjhq95bn5kmlhiqdsvcyy1nhyphxi8yb-make-4.3/share/info:/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/share/info:/gnu/store/h8052068pq3a6rc903982ad2dd5ssxgk-binutils-2.37/share/info:/gnu/store/ky9xbrj6slwvgwa4536xbs5lradbqfk5-gcc-10.3.0/share/info:/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/share/info:/gnu/store/4k552fq1p6q73mr9ww7g5y3m77p7cfbm-libunistring-0.9.10/share/info:/gnu/store/g9f6phnp6a8l15rqwn3wf9ahvfa1f1qd-libidn2-2.3.1/share/info:/gnu/store/xjq3vfcskv4pzwmvyildc1jkvx0j1xdc-libtasn1-4.17.0/share/info:/gnu/store/06jl2arnnax7s5rj12d4mwbk60ick0lw-libgpg-error-1.42/share/info:/gnu/store/b16z4xk0sa81z9vfmhfkz9cyi61ry9mq-gmp-6.2.1/share/info' environment variable `BASH_LOADABLES_PATH' unset environment variable `C_INCLUDE_PATH' set to `/gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/include:/gnu/store/5lvdabvwgn5m1s6i8kwrmw773chp0xxs-gnutls-3.7.2/include:/gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/include:/gnu/store/x4sxy2rwfl5ln4z57ghgki6zn9ivvgcw-graphviz-2.49.0/include:/gnu/store/hdgbh3h3skl0g7vfv3240s6l7nhbnj2i-bzip2-1.0.8/include:/gnu/store/m0mvm01wcmgy7ggbcfl7c7jjy3d9alyz-sqlite-3.36.0/include:/gnu/store/7avhaxgw42al1z8wj737jqakdcv2fizm-libgcrypt-1.8.8/include:/gnu/store/dmca74p8b9ik05mrsnvbviflbxrz9qaw-bzip2-1.0.8/include:/gnu/store/s3577mn5iz2gjgkrava2sm914bgbnkd8-xz-5.2.5/include:/gnu/store/61b8q6rgdfgd2ffdnyqk6gq2ckrnm007-file-5.39/include:/gnu/store/sb75h0di8w5mhpn4wfhk7za6c7x3c97c-gawk-5.1.0/include:/gnu/store/zjhq95bn5kmlhiqdsvcyy1nhyphxi8yb-make-4.3/include:/gnu/store/h8052068pq3a6rc903982ad2dd5ssxgk-binutils-2.37/include:/gnu/store/ky9xbrj6slwvgwa4536xbs5lradbqfk5-gcc-10.3.0/include:/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/include:/gnu/store/1gkpbfxjx2sbchjhf19yjm4a8vkir0nm-libgc-8.0.4/include:/gnu/store/4k552fq1p6q73mr9ww7g5y3m77p7cfbm-libunistring-0.9.10/include:/gnu/store/0phibcqzvpa3yq7sciv7m95xwyzyy35l-p11-kit-0.23.22/include:/gnu/store/rhrxyws0zzq02zpk6y9hhcbiibwag5ls-zlib-1.2.11/include:/gnu/store/1f00pxx38wfn13g0hqgd6zn3af4f3hlk-nettle-3.7.3/include:/gnu/store/g9f6phnp6a8l15rqwn3wf9ahvfa1f1qd-libidn2-2.3.1/include:/gnu/store/xjq3vfcskv4pzwmvyildc1jkvx0j1xdc-libtasn1-4.17.0/include:/gnu/store/06jl2arnnax7s5rj12d4mwbk60ick0lw-libgpg-error-1.42/include:/gnu/store/swpaxgk7xzgs4lkmw450wiak8iy8snsm-linux-libre-headers-5.10.35/include:/gnu/store/b16z4xk0sa81z9vfmhfkz9cyi61ry9mq-gmp-6.2.1/include' environment variable `CPLUS_INCLUDE_PATH' set to `/gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/include:/gnu/store/5lvdabvwgn5m1s6i8kwrmw773chp0xxs-gnutls-3.7.2/include:/gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/include:/gnu/store/x4sxy2rwfl5ln4z57ghgki6zn9ivvgcw-graphviz-2.49.0/include:/gnu/store/hdgbh3h3skl0g7vfv3240s6l7nhbnj2i-bzip2-1.0.8/include:/gnu/store/m0mvm01wcmgy7ggbcfl7c7jjy3d9alyz-sqlite-3.36.0/include:/gnu/store/7avhaxgw42al1z8wj737jqakdcv2fizm-libgcrypt-1.8.8/include:/gnu/store/dmca74p8b9ik05mrsnvbviflbxrz9qaw-bzip2-1.0.8/include:/gnu/store/s3577mn5iz2gjgkrava2sm914bgbnkd8-xz-5.2.5/include:/gnu/store/61b8q6rgdfgd2ffdnyqk6gq2ckrnm007-file-5.39/include:/gnu/store/sb75h0di8w5mhpn4wfhk7za6c7x3c97c-gawk-5.1.0/include:/gnu/store/zjhq95bn5kmlhiqdsvcyy1nhyphxi8yb-make-4.3/include:/gnu/store/h8052068pq3a6rc903982ad2dd5ssxgk-binutils-2.37/include:/gnu/store/ky9xbrj6slwvgwa4536xbs5lradbqfk5-gcc-10.3.0/include/c++:/gnu/store/ky9xbrj6slwvgwa4536xbs5lradbqfk5-gcc-10.3.0/include:/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/include:/gnu/store/1gkpbfxjx2sbchjhf19yjm4a8vkir0nm-libgc-8.0.4/include:/gnu/store/4k552fq1p6q73mr9ww7g5y3m77p7cfbm-libunistring-0.9.10/include:/gnu/store/0phibcqzvpa3yq7sciv7m95xwyzyy35l-p11-kit-0.23.22/include:/gnu/store/rhrxyws0zzq02zpk6y9hhcbiibwag5ls-zlib-1.2.11/include:/gnu/store/1f00pxx38wfn13g0hqgd6zn3af4f3hlk-nettle-3.7.3/include:/gnu/store/g9f6phnp6a8l15rqwn3wf9ahvfa1f1qd-libidn2-2.3.1/include:/gnu/store/xjq3vfcskv4pzwmvyildc1jkvx0j1xdc-libtasn1-4.17.0/include:/gnu/store/06jl2arnnax7s5rj12d4mwbk60ick0lw-libgpg-error-1.42/include:/gnu/store/swpaxgk7xzgs4lkmw450wiak8iy8snsm-linux-libre-headers-5.10.35/include:/gnu/store/b16z4xk0sa81z9vfmhfkz9cyi61ry9mq-gmp-6.2.1/include' environment variable `LIBRARY_PATH' set to `/gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/lib:/gnu/store/5lvdabvwgn5m1s6i8kwrmw773chp0xxs-gnutls-3.7.2/lib:/gnu/store/vd65jrc7a97xfr40nkscgqy7n7a5yb7q-guile-avahi-0.4.0-1.6d43caf/lib:/gnu/store/irbvbmhg3az7riz1yq97mq639aqi7jiq-guile-gcrypt-0.3.0/lib:/gnu/store/y0mb1753jx0s9j15zcgs8151qj6y02lc-guile-json-4.5.2/lib:/gnu/store/b78i56xi0pc5knf94a21jgn39690dkqv-guile-lib-0.2.7/lib:/gnu/store/w374348icmm798mibnj5b3gyn8lw83br-guile-sqlite3-0.1.2/lib:/gnu/store/hjf09vgpv4kl8ks9aqzgzyqkibaspsz2-guile-zlib-0.1.0/lib:/gnu/store/f8r0spjrcxa048n8j36187vlwfqv903w-guile-lzlib-0.0.2/lib:/gnu/store/bk99r7by6k2kqxa6m6m60cjncbg49fii-guile-zstd-0.1.1/lib:/gnu/store/xafk8xg2fr5x6iynam1vzhd5nzbnq83s-guile-ssh-0.13.1/lib:/gnu/store/5mizjr000dzg6mkazl1ydp5wdf5iw80k-guile-git-0.5.2/lib:/gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/lib:/gnu/store/hycbwzbcimhs7zkmh4ngqqbj4nw1dvpm-texinfo-6.7/lib:/gnu/store/x4sxy2rwfl5ln4z57ghgki6zn9ivvgcw-graphviz-2.49.0/lib:/gnu/store/g2g9kqjp155adm2jdl40dfgb2gpk9qa0-help2man-1.48.3/lib:/gnu/store/wmvdpbf3rzdrpsw9ybpj7rghndkr9fvh-po4a-0.63/lib:/gnu/store/hdgbh3h3skl0g7vfv3240s6l7nhbnj2i-bzip2-1.0.8/lib:/gnu/store/m0mvm01wcmgy7ggbcfl7c7jjy3d9alyz-sqlite-3.36.0/lib:/gnu/store/7avhaxgw42al1z8wj737jqakdcv2fizm-libgcrypt-1.8.8/lib:/gnu/store/c28x11b4igs807mj0rgwlp22sr548djc-disarchive-0.4.0/lib:/gnu/store/zca305yizn2wah7bj6z8x2ihcqg6qiz2-guile-lzma-0.1.1/lib:/gnu/store/n4z63g40dkabhij03sl5837g0kc24waa-glibc-utf8-locales-2.33/lib:/gnu/store/dmca74p8b9ik05mrsnvbviflbxrz9qaw-bzip2-1.0.8/lib:/gnu/store/s3577mn5iz2gjgkrava2sm914bgbnkd8-xz-5.2.5/lib:/gnu/store/61b8q6rgdfgd2ffdnyqk6gq2ckrnm007-file-5.39/lib:/gnu/store/sb75h0di8w5mhpn4wfhk7za6c7x3c97c-gawk-5.1.0/lib:/gnu/store/h8052068pq3a6rc903982ad2dd5ssxgk-binutils-2.37/lib:/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib:/gnu/store/66nrq0ra6d3jnsc24cms9lgzbyb9spr8-glibc-2.33-static/lib:/gnu/store/mnxbr2w45qrfi4bi7khl2yj56rjz9vbi-glibc-utf8-locales-2.33/lib:/gnu/store/1gkpbfxjx2sbchjhf19yjm4a8vkir0nm-libgc-8.0.4/lib:/gnu/store/4k552fq1p6q73mr9ww7g5y3m77p7cfbm-libunistring-0.9.10/lib:/gnu/store/0phibcqzvpa3yq7sciv7m95xwyzyy35l-p11-kit-0.23.22/lib:/gnu/store/rhrxyws0zzq02zpk6y9hhcbiibwag5ls-zlib-1.2.11/lib:/gnu/store/1f00pxx38wfn13g0hqgd6zn3af4f3hlk-nettle-3.7.3/lib:/gnu/store/g9f6phnp6a8l15rqwn3wf9ahvfa1f1qd-libidn2-2.3.1/lib:/gnu/store/xjq3vfcskv4pzwmvyildc1jkvx0j1xdc-libtasn1-4.17.0/lib:/gnu/store/byzmvyjgdnrnibfz10gwc2ghkb885cbn-guile-bytestructures-1.0.10/lib:/gnu/store/06jl2arnnax7s5rj12d4mwbk60ick0lw-libgpg-error-1.42/lib:/gnu/store/b16z4xk0sa81z9vfmhfkz9cyi61ry9mq-gmp-6.2.1/lib' environment variable `GUIX_LOCPATH' set to `/gnu/store/n4z63g40dkabhij03sl5837g0kc24waa-glibc-utf8-locales-2.33/lib/locale:/gnu/store/mnxbr2w45qrfi4bi7khl2yj56rjz9vbi-glibc-utf8-locales-2.33/lib/locale' phase `set-paths' succeeded after 0.0 seconds starting phase `install-locale' using 'en_US.utf8' locale for category "LC_ALL" phase `install-locale' succeeded after 0.0 seconds starting phase `unpack' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/NEWS' -> `./NEWS' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix.scm' -> `./guix.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/.gitattributes' -> `./.gitattributes' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/README' -> `./README' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu.scm' -> `./gnu.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/.mailmap' -> `./.mailmap' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/CODE-OF-CONDUCT' -> `./CODE-OF-CONDUCT' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/ROADMAP' -> `./ROADMAP' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/bootstrap' -> `./bootstrap' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/HACKING' -> `./HACKING' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/AUTHORS' -> `./AUTHORS' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/config-daemon.ac' -> `./config-daemon.ac' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/.guix-channel' -> `./.guix-channel' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/.dir-locals.el' -> `./.dir-locals.el' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/.guix-authorizations' -> `./.guix-authorizations' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/Makefile.am' -> `./Makefile.am' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/.gitignore' -> `./.gitignore' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/COPYING' -> `./COPYING' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/configure.ac' -> `./configure.ac' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/ChangeLog' -> `./ChangeLog' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/THANKS' -> `./THANKS' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/TODO' -> `./TODO' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/base32.scm' -> `./tests/base32.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/workers.scm' -> `./tests/workers.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-environment.sh' -> `./tests/guix-environment.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/base16.scm' -> `./tests/base16.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/syscalls.scm' -> `./tests/syscalls.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/inferior.scm' -> `./tests/inferior.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/services.scm' -> `./tests/services.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/containers.scm' -> `./tests/containers.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/records.scm' -> `./tests/records.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/opam.scm' -> `./tests/opam.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-git-authenticate.sh' -> `./tests/guix-git-authenticate.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-package.sh' -> `./tests/guix-package.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/combinators.scm' -> `./tests/combinators.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/go.scm' -> `./tests/go.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-describe.sh' -> `./tests/guix-describe.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-pack-relocatable.sh' -> `./tests/guix-pack-relocatable.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/cve-sample.json' -> `./tests/cve-sample.json' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-hash.sh' -> `./tests/guix-hash.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-build-branch.sh' -> `./tests/guix-build-branch.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-gc.sh' -> `./tests/guix-gc.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/pypi.scm' -> `./tests/pypi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/cache.scm' -> `./tests/cache.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/derivations.scm' -> `./tests/derivations.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/transformations.scm' -> `./tests/transformations.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/store-roots.scm' -> `./tests/store-roots.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/processes.scm' -> `./tests/processes.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/ipfs.scm' -> `./tests/ipfs.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/home-import.scm' -> `./tests/home-import.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-package-net.sh' -> `./tests/guix-package-net.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/accounts.scm' -> `./tests/accounts.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/monads.scm' -> `./tests/monads.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/upstream.scm' -> `./tests/upstream.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/gnu-maintenance.scm' -> `./tests/gnu-maintenance.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/system.scm' -> `./tests/system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/test.drv' -> `./tests/test.drv' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/git-authenticate.scm' -> `./tests/git-authenticate.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/scripts.scm' -> `./tests/scripts.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/challenge.scm' -> `./tests/challenge.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/import-git.scm' -> `./tests/import-git.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-authenticate.sh' -> `./tests/guix-authenticate.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/offload.scm' -> `./tests/offload.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/egg.scm' -> `./tests/egg.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-graph.sh' -> `./tests/guix-graph.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/lint.scm' -> `./tests/lint.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/minetest.scm' -> `./tests/minetest.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/crate.scm' -> `./tests/crate.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-daemon.sh' -> `./tests/guix-daemon.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/hackage.scm' -> `./tests/hackage.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-system.sh' -> `./tests/guix-system.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/file-systems.scm' -> `./tests/file-systems.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/style.scm' -> `./tests/style.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/print.scm' -> `./tests/print.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/build-utils.scm' -> `./tests/build-utils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/bournish.scm' -> `./tests/bournish.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/openpgp.scm' -> `./tests/openpgp.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/publish.scm' -> `./tests/publish.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/store-deduplication.scm' -> `./tests/store-deduplication.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/size.scm' -> `./tests/size.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/boot-parameters.scm' -> `./tests/boot-parameters.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/sets.scm' -> `./tests/sets.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-lint.sh' -> `./tests/guix-lint.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/swh.scm' -> `./tests/swh.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/utils.scm' -> `./tests/utils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-archive.sh' -> `./tests/guix-archive.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/graph.scm' -> `./tests/graph.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-build.sh' -> `./tests/guix-build.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/debug-link.scm' -> `./tests/debug-link.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/glob.scm' -> `./tests/glob.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/cran.scm' -> `./tests/cran.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/base64.scm' -> `./tests/base64.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-shell.sh' -> `./tests/guix-shell.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-download.sh' -> `./tests/guix-download.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/builders.scm' -> `./tests/builders.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/nar.scm' -> `./tests/nar.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/cpio.scm' -> `./tests/cpio.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/modules.scm' -> `./tests/modules.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-environment-container.sh' -> `./tests/guix-environment-container.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/union.scm' -> `./tests/union.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/pki.scm' -> `./tests/pki.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/gremlin.scm' -> `./tests/gremlin.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/grafts.scm' -> `./tests/grafts.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-home.sh' -> `./tests/guix-home.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/substitute.scm' -> `./tests/substitute.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-pack-localstatedir.sh' -> `./tests/guix-pack-localstatedir.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/packages.scm' -> `./tests/packages.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/ui.scm' -> `./tests/ui.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/search-paths.scm' -> `./tests/search-paths.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-pack.sh' -> `./tests/guix-pack.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/status.scm' -> `./tests/status.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/store-database.scm' -> `./tests/store-database.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/texlive.scm' -> `./tests/texlive.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/channels.scm' -> `./tests/channels.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/cpan.scm' -> `./tests/cpan.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-repl.sh' -> `./tests/guix-repl.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/discovery.scm' -> `./tests/discovery.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/elpa.scm' -> `./tests/elpa.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/profiles.scm' -> `./tests/profiles.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/networking.scm' -> `./tests/networking.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/store.scm' -> `./tests/store.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/guix-package-aliases.sh' -> `./tests/guix-package-aliases.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/gexp.scm' -> `./tests/gexp.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/uuid.scm' -> `./tests/uuid.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/pack.scm' -> `./tests/pack.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/cve.scm' -> `./tests/cve.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/import-utils.scm' -> `./tests/import-utils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/gem.scm' -> `./tests/gem.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/git.scm' -> `./tests/git.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/keys/ed25519-2.pub' -> `./tests/keys/ed25519-2.pub' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/keys/ed25519.sec' -> `./tests/keys/ed25519.sec' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/keys/ed25519.pub' -> `./tests/keys/ed25519.pub' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/keys/dsa.pub' -> `./tests/keys/dsa.pub' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/keys/signing-key.sec' -> `./tests/keys/signing-key.sec' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/keys/civodul.pub' -> `./tests/keys/civodul.pub' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/keys/signing-key.pub' -> `./tests/keys/signing-key.pub' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/keys/ed25519-3.pub' -> `./tests/keys/ed25519-3.pub' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/keys/ed25519-2.sec' -> `./tests/keys/ed25519-2.sec' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/keys/rsa.pub' -> `./tests/keys/rsa.pub' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/keys/ed25519-3.sec' -> `./tests/keys/ed25519-3.sec' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/services/configuration.scm' -> `./tests/services/configuration.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/services/linux.scm' -> `./tests/services/linux.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/services/telephony.scm' -> `./tests/services/telephony.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/tests/services/file-sharing.scm' -> `./tests/services/file-sharing.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/ru.po' -> `./po/guix/ru.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/it.po' -> `./po/guix/it.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/da.po' -> `./po/guix/da.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/oc.po' -> `./po/guix/oc.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/es.po' -> `./po/guix/es.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/zh_CN.po' -> `./po/guix/zh_CN.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/vi.po' -> `./po/guix/vi.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/de.po' -> `./po/guix/de.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/eo.po' -> `./po/guix/eo.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/sk.po' -> `./po/guix/sk.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/sr.po' -> `./po/guix/sr.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/pt_BR.po' -> `./po/guix/pt_BR.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/Makevars' -> `./po/guix/Makevars' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/pl.po' -> `./po/guix/pl.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/fr.po' -> `./po/guix/fr.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/sv.po' -> `./po/guix/sv.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/si.po' -> `./po/guix/si.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/hu.po' -> `./po/guix/hu.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/ko.po' -> `./po/guix/ko.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/LINGUAS' -> `./po/guix/LINGUAS' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/nl.po' -> `./po/guix/nl.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/ta.po' -> `./po/guix/ta.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/POTFILES.in' -> `./po/guix/POTFILES.in' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/guix/cs.po' -> `./po/guix/cs.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-manual.ko.po' -> `./po/doc/guix-manual.ko.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-manual.fa.po' -> `./po/doc/guix-manual.fa.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-manual.pt_BR.po' -> `./po/doc/guix-manual.pt_BR.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-manual.sk.po' -> `./po/doc/guix-manual.sk.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-manual.de.po' -> `./po/doc/guix-manual.de.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-cookbook.fa.po' -> `./po/doc/guix-cookbook.fa.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-cookbook.zh_Hans.po' -> `./po/doc/guix-cookbook.zh_Hans.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-cookbook.ko.po' -> `./po/doc/guix-cookbook.ko.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/local.mk' -> `./po/doc/local.mk' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-cookbook.sk.po' -> `./po/doc/guix-cookbook.sk.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-manual.it.po' -> `./po/doc/guix-manual.it.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-manual.zh_CN.po' -> `./po/doc/guix-manual.zh_CN.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-manual.es.po' -> `./po/doc/guix-manual.es.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-cookbook.fr.po' -> `./po/doc/guix-cookbook.fr.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-cookbook.de.po' -> `./po/doc/guix-cookbook.de.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-manual.fr.po' -> `./po/doc/guix-manual.fr.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-manual.ru.po' -> `./po/doc/guix-manual.ru.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-cookbook.es.po' -> `./po/doc/guix-cookbook.es.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/doc/guix-cookbook.ru.po' -> `./po/doc/guix-cookbook.ru.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/it.po' -> `./po/packages/it.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/da.po' -> `./po/packages/da.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/oc.po' -> `./po/packages/oc.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/es.po' -> `./po/packages/es.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/zh_CN.po' -> `./po/packages/zh_CN.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/de.po' -> `./po/packages/de.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/eo.po' -> `./po/packages/eo.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/sk.po' -> `./po/packages/sk.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/sr.po' -> `./po/packages/sr.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/pt_BR.po' -> `./po/packages/pt_BR.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/Makevars' -> `./po/packages/Makevars' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/pl.po' -> `./po/packages/pl.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/fr.po' -> `./po/packages/fr.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/hu.po' -> `./po/packages/hu.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/ko.po' -> `./po/packages/ko.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/LINGUAS' -> `./po/packages/LINGUAS' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/fa.po' -> `./po/packages/fa.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/nl.po' -> `./po/packages/nl.po' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/po/packages/POTFILES.in' -> `./po/packages/POTFILES.in' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/disarchive-manifest.scm' -> `./etc/disarchive-manifest.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/system-tests.scm' -> `./etc/system-tests.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/guix-gc.timer' -> `./etc/guix-gc.timer' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/guix-gc.service.in' -> `./etc/guix-gc.service.in' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/gnu-store.mount.in' -> `./etc/gnu-store.mount.in' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/indent-code.el' -> `./etc/indent-code.el' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/historical-authorizations' -> `./etc/historical-authorizations' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/guix-install.sh' -> `./etc/guix-install.sh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/guix-daemon.service.in' -> `./etc/guix-daemon.service.in' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/news.scm' -> `./etc/news.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/source-manifest.scm' -> `./etc/source-manifest.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/guix-daemon.cil.in' -> `./etc/guix-daemon.cil.in' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/guix-daemon.conf.in' -> `./etc/guix-daemon.conf.in' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/release-manifest.scm' -> `./etc/release-manifest.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/guix-publish.service.in' -> `./etc/guix-publish.service.in' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/guix-publish.conf.in' -> `./etc/guix-publish.conf.in' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/committer.scm.in' -> `./etc/committer.scm.in' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/copyright.el' -> `./etc/copyright.el' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/openrc/guix-daemon.in' -> `./etc/openrc/guix-daemon.in' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/git/pre-push' -> `./etc/git/pre-push' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/git/gitconfig' -> `./etc/git/gitconfig' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/snippets/text-mode/guix-commit-message-rename-package' -> `./etc/snippets/text-mode/guix-commit-message-rename-package' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/snippets/text-mode/guix-commit-message-update-package' -> `./etc/snippets/text-mode/guix-commit-message-update-package' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/snippets/text-mode/guix-commit-message-use-https-home-page' -> `./etc/snippets/text-mode/guix-commit-message-use-https-home-page' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/snippets/text-mode/guix-commit-message-add-cl-package' -> `./etc/snippets/text-mode/guix-commit-message-add-cl-package' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/snippets/text-mode/guix-commit-message-add-package' -> `./etc/snippets/text-mode/guix-commit-message-add-package' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/snippets/scheme-mode/guix-git-reference' -> `./etc/snippets/scheme-mode/guix-git-reference' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/snippets/scheme-mode/guix-package' -> `./etc/snippets/scheme-mode/guix-package' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/snippets/scheme-mode/guix-cvs-reference' -> `./etc/snippets/scheme-mode/guix-cvs-reference' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/snippets/scheme-mode/guix-bzr-reference' -> `./etc/snippets/scheme-mode/guix-bzr-reference' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/snippets/scheme-mode/guix-hg-reference' -> `./etc/snippets/scheme-mode/guix-hg-reference' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/snippets/scheme-mode/guix-origin' -> `./etc/snippets/scheme-mode/guix-origin' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/snippets/scheme-mode/guix-svn-reference' -> `./etc/snippets/scheme-mode/guix-svn-reference' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/init.d/guix-daemon.in' -> `./etc/init.d/guix-daemon.in' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/substitutes/bordeaux.guix.gnu.org.pub' -> `./etc/substitutes/bordeaux.guix.gnu.org.pub' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/substitutes/berlin.guix.gnu.org.pub' -> `./etc/substitutes/berlin.guix.gnu.org.pub' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/substitutes/ci.guix.gnu.org.pub' -> `./etc/substitutes/ci.guix.gnu.org.pub' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/substitutes/ci.guix.info.pub' -> `./etc/substitutes/ci.guix.info.pub' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/completion/zsh/_guix' -> `./etc/completion/zsh/_guix' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/completion/bash/guix-daemon' -> `./etc/completion/bash/guix-daemon' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/completion/bash/guix' -> `./etc/completion/bash/guix' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/etc/completion/fish/guix.fish' -> `./etc/completion/fish/guix.fish' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/home.scm' -> `./gnu/home.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services.scm' -> `./gnu/services.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer.scm' -> `./gnu/installer.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/artwork.scm' -> `./gnu/artwork.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system.scm' -> `./gnu/system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/local.mk' -> `./gnu/local.mk' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/bootloader.scm' -> `./gnu/bootloader.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/platform.scm' -> `./gnu/platform.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/image.scm' -> `./gnu/image.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages.scm' -> `./gnu/packages.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests.scm' -> `./gnu/tests.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/ci.scm' -> `./gnu/ci.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/machine.scm' -> `./gnu/machine.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/monitoring.scm' -> `./gnu/tests/monitoring.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/messaging.scm' -> `./gnu/tests/messaging.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/ssh.scm' -> `./gnu/tests/ssh.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/docker.scm' -> `./gnu/tests/docker.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/reconfigure.scm' -> `./gnu/tests/reconfigure.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/install.scm' -> `./gnu/tests/install.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/web.scm' -> `./gnu/tests/web.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/virtualization.scm' -> `./gnu/tests/virtualization.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/package-management.scm' -> `./gnu/tests/package-management.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/nfs.scm' -> `./gnu/tests/nfs.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/guix.scm' -> `./gnu/tests/guix.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/singularity.scm' -> `./gnu/tests/singularity.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/base.scm' -> `./gnu/tests/base.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/rsync.scm' -> `./gnu/tests/rsync.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/version-control.scm' -> `./gnu/tests/version-control.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/telephony.scm' -> `./gnu/tests/telephony.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/linux-modules.scm' -> `./gnu/tests/linux-modules.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/mail.scm' -> `./gnu/tests/mail.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/file-sharing.scm' -> `./gnu/tests/file-sharing.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/ldap.scm' -> `./gnu/tests/ldap.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/databases.scm' -> `./gnu/tests/databases.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/ganeti.scm' -> `./gnu/tests/ganeti.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/cups.scm' -> `./gnu/tests/cups.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/ci.scm' -> `./gnu/tests/ci.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/desktop.scm' -> `./gnu/tests/desktop.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/networking.scm' -> `./gnu/tests/networking.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/dict.scm' -> `./gnu/tests/dict.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/audio.scm' -> `./gnu/tests/audio.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/security-token.scm' -> `./gnu/tests/security-token.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/tests/data/jami-dummy-account.dat' -> `./gnu/tests/data/jami-dummy-account.dat' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/bootloader/depthcharge.scm' -> `./gnu/bootloader/depthcharge.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/bootloader/extlinux.scm' -> `./gnu/bootloader/extlinux.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/bootloader/u-boot.scm' -> `./gnu/bootloader/u-boot.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/bootloader/grub.scm' -> `./gnu/bootloader/grub.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/final.scm' -> `./gnu/installer/final.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/timezone.scm' -> `./gnu/installer/timezone.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/proxy.scm' -> `./gnu/installer/proxy.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/substitutes.scm' -> `./gnu/installer/substitutes.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt.scm' -> `./gnu/installer/newt.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/services.scm' -> `./gnu/installer/services.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/locale.scm' -> `./gnu/installer/locale.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/hostname.scm' -> `./gnu/installer/hostname.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/parted.scm' -> `./gnu/installer/parted.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/keymap.scm' -> `./gnu/installer/keymap.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/utils.scm' -> `./gnu/installer/utils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/user.scm' -> `./gnu/installer/user.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/steps.scm' -> `./gnu/installer/steps.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/tests.scm' -> `./gnu/installer/tests.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/connman.scm' -> `./gnu/installer/connman.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/record.scm' -> `./gnu/installer/record.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt/final.scm' -> `./gnu/installer/newt/final.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt/network.scm' -> `./gnu/installer/newt/network.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt/timezone.scm' -> `./gnu/installer/newt/timezone.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt/substitutes.scm' -> `./gnu/installer/newt/substitutes.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt/services.scm' -> `./gnu/installer/newt/services.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt/locale.scm' -> `./gnu/installer/newt/locale.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt/menu.scm' -> `./gnu/installer/newt/menu.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt/partition.scm' -> `./gnu/installer/newt/partition.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt/welcome.scm' -> `./gnu/installer/newt/welcome.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt/hostname.scm' -> `./gnu/installer/newt/hostname.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt/keymap.scm' -> `./gnu/installer/newt/keymap.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt/utils.scm' -> `./gnu/installer/newt/utils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt/user.scm' -> `./gnu/installer/newt/user.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt/parameters.scm' -> `./gnu/installer/newt/parameters.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt/wifi.scm' -> `./gnu/installer/newt/wifi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt/ethernet.scm' -> `./gnu/installer/newt/ethernet.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/newt/page.scm' -> `./gnu/installer/newt/page.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/installer/aux-files/logo.txt' -> `./gnu/installer/aux-files/logo.txt' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/platforms/arm.scm' -> `./gnu/platforms/arm.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/platforms/hurd.scm' -> `./gnu/platforms/hurd.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/chromium-extension.scm' -> `./gnu/build/chromium-extension.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/install.scm' -> `./gnu/build/install.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/secret-service.scm' -> `./gnu/build/secret-service.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/locale.scm' -> `./gnu/build/locale.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/linux-container.scm' -> `./gnu/build/linux-container.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/accounts.scm' -> `./gnu/build/accounts.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/marionette.scm' -> `./gnu/build/marionette.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/cross-toolchain.scm' -> `./gnu/build/cross-toolchain.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/linux-boot.scm' -> `./gnu/build/linux-boot.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/svg.scm' -> `./gnu/build/svg.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/jami-service.scm' -> `./gnu/build/jami-service.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/bootloader.scm' -> `./gnu/build/bootloader.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/file-systems.scm' -> `./gnu/build/file-systems.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/linux-modules.scm' -> `./gnu/build/linux-modules.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/image.scm' -> `./gnu/build/image.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/activation.scm' -> `./gnu/build/activation.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/hurd-boot.scm' -> `./gnu/build/hurd-boot.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/linux-initrd.scm' -> `./gnu/build/linux-initrd.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/build/shepherd.scm' -> `./gnu/build/shepherd.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/install.scm' -> `./gnu/system/install.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/locale.scm' -> `./gnu/system/locale.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/mapped-devices.scm' -> `./gnu/system/mapped-devices.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/linux-container.scm' -> `./gnu/system/linux-container.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/accounts.scm' -> `./gnu/system/accounts.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/keyboard.scm' -> `./gnu/system/keyboard.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/file-systems.scm' -> `./gnu/system/file-systems.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/shadow.scm' -> `./gnu/system/shadow.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/image.scm' -> `./gnu/system/image.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/hurd.scm' -> `./gnu/system/hurd.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/nss.scm' -> `./gnu/system/nss.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/setuid.scm' -> `./gnu/system/setuid.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/pam.scm' -> `./gnu/system/pam.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/linux-initrd.scm' -> `./gnu/system/linux-initrd.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/vm.scm' -> `./gnu/system/vm.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/uuid.scm' -> `./gnu/system/uuid.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/examples/bare-bones.tmpl' -> `./gnu/system/examples/bare-bones.tmpl' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/examples/yggdrasil.tmpl' -> `./gnu/system/examples/yggdrasil.tmpl' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/examples/docker-image.tmpl' -> `./gnu/system/examples/docker-image.tmpl' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/examples/vm-image.tmpl' -> `./gnu/system/examples/vm-image.tmpl' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/examples/lightweight-desktop.tmpl' -> `./gnu/system/examples/lightweight-desktop.tmpl' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/examples/desktop.tmpl' -> `./gnu/system/examples/desktop.tmpl' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/examples/asus-c201.tmpl' -> `./gnu/system/examples/asus-c201.tmpl' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/examples/beaglebone-black.tmpl' -> `./gnu/system/examples/beaglebone-black.tmpl' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/examples/bare-hurd.tmpl' -> `./gnu/system/examples/bare-hurd.tmpl' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/images/pinebook-pro.scm' -> `./gnu/system/images/pinebook-pro.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/images/pine64.scm' -> `./gnu/system/images/pine64.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/images/novena.scm' -> `./gnu/system/images/novena.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/images/hurd.scm' -> `./gnu/system/images/hurd.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/system/images/rock64.scm' -> `./gnu/system/images/rock64.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/machine/ssh.scm' -> `./gnu/machine/ssh.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/machine/digital-ocean.scm' -> `./gnu/machine/digital-ocean.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/cybersecurity.scm' -> `./gnu/packages/cybersecurity.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/fltk.scm' -> `./gnu/packages/fltk.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/dvtm.scm' -> `./gnu/packages/dvtm.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/monitoring.scm' -> `./gnu/packages/monitoring.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/libffcall.scm' -> `./gnu/packages/libffcall.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/inkscape.scm' -> `./gnu/packages/inkscape.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/curl.scm' -> `./gnu/packages/curl.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/python-science.scm' -> `./gnu/packages/python-science.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/loko.scm' -> `./gnu/packages/loko.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/haskell-check.scm' -> `./gnu/packages/haskell-check.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/freeipmi.scm' -> `./gnu/packages/freeipmi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/lxqt.scm' -> `./gnu/packages/lxqt.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/profiling.scm' -> `./gnu/packages/profiling.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ghostscript.scm' -> `./gnu/packages/ghostscript.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/pkg-config.scm' -> `./gnu/packages/pkg-config.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/groff.scm' -> `./gnu/packages/groff.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/xdisorg.scm' -> `./gnu/packages/xdisorg.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/mtools.scm' -> `./gnu/packages/mtools.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/scsi.scm' -> `./gnu/packages/scsi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/kde-frameworks.scm' -> `./gnu/packages/kde-frameworks.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/uucp.scm' -> `./gnu/packages/uucp.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/python-xyz.scm' -> `./gnu/packages/python-xyz.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/musl.scm' -> `./gnu/packages/musl.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/fcitx.scm' -> `./gnu/packages/fcitx.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/avr.scm' -> `./gnu/packages/avr.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gnu-pw-mgr.scm' -> `./gnu/packages/gnu-pw-mgr.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/calendar.scm' -> `./gnu/packages/calendar.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/messaging.scm' -> `./gnu/packages/messaging.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/openldap.scm' -> `./gnu/packages/openldap.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/admin.scm' -> `./gnu/packages/admin.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ssh.scm' -> `./gnu/packages/ssh.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/docker.scm' -> `./gnu/packages/docker.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/marst.scm' -> `./gnu/packages/marst.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/python-web.scm' -> `./gnu/packages/python-web.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/authentication.scm' -> `./gnu/packages/authentication.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/cluster.scm' -> `./gnu/packages/cluster.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/texinfo.scm' -> `./gnu/packages/texinfo.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/make-bootstrap.scm' -> `./gnu/packages/make-bootstrap.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/sml.scm' -> `./gnu/packages/sml.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ed.scm' -> `./gnu/packages/ed.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/julia.scm' -> `./gnu/packages/julia.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gcal.scm' -> `./gnu/packages/gcal.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/printers.scm' -> `./gnu/packages/printers.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/idutils.scm' -> `./gnu/packages/idutils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/chemistry.scm' -> `./gnu/packages/chemistry.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/openbox.scm' -> `./gnu/packages/openbox.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/bdw-gc.scm' -> `./gnu/packages/bdw-gc.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/wm.scm' -> `./gnu/packages/wm.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/web.scm' -> `./gnu/packages/web.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/racket.scm' -> `./gnu/packages/racket.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/guile-wm.scm' -> `./gnu/packages/guile-wm.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/installers.scm' -> `./gnu/packages/installers.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/rocm.scm' -> `./gnu/packages/rocm.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/virtualization.scm' -> `./gnu/packages/virtualization.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/apl.scm' -> `./gnu/packages/apl.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/sawfish.scm' -> `./gnu/packages/sawfish.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/nim.scm' -> `./gnu/packages/nim.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/mono.scm' -> `./gnu/packages/mono.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/augeas.scm' -> `./gnu/packages/augeas.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/mcrypt.scm' -> `./gnu/packages/mcrypt.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/samba.scm' -> `./gnu/packages/samba.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/boost.scm' -> `./gnu/packages/boost.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/apr.scm' -> `./gnu/packages/apr.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gd.scm' -> `./gnu/packages/gd.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/spreadsheet.scm' -> `./gnu/packages/spreadsheet.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/kde-internet.scm' -> `./gnu/packages/kde-internet.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gtk.scm' -> `./gnu/packages/gtk.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/backup.scm' -> `./gnu/packages/backup.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/attr.scm' -> `./gnu/packages/attr.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/popt.scm' -> `./gnu/packages/popt.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/less.scm' -> `./gnu/packages/less.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/vpn.scm' -> `./gnu/packages/vpn.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/sqlite.scm' -> `./gnu/packages/sqlite.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/robotics.scm' -> `./gnu/packages/robotics.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/package-management.scm' -> `./gnu/packages/package-management.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/nfs.scm' -> `./gnu/packages/nfs.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/dlang.scm' -> `./gnu/packages/dlang.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/elm.scm' -> `./gnu/packages/elm.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/uglifyjs.scm' -> `./gnu/packages/uglifyjs.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/openkinect.scm' -> `./gnu/packages/openkinect.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ruby.scm' -> `./gnu/packages/ruby.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/cross-base.scm' -> `./gnu/packages/cross-base.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/fvwm.scm' -> `./gnu/packages/fvwm.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/imagemagick.scm' -> `./gnu/packages/imagemagick.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/xnee.scm' -> `./gnu/packages/xnee.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/check.scm' -> `./gnu/packages/check.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/mpd.scm' -> `./gnu/packages/mpd.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/python-crypto.scm' -> `./gnu/packages/python-crypto.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/java-graphics.scm' -> `./gnu/packages/java-graphics.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/dunst.scm' -> `./gnu/packages/dunst.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gnupg.scm' -> `./gnu/packages/gnupg.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/tex.scm' -> `./gnu/packages/tex.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/llvm.scm' -> `./gnu/packages/llvm.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/solidity.scm' -> `./gnu/packages/solidity.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/tls.scm' -> `./gnu/packages/tls.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/lua.scm' -> `./gnu/packages/lua.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/irc.scm' -> `./gnu/packages/irc.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/microcom.scm' -> `./gnu/packages/microcom.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/uml.scm' -> `./gnu/packages/uml.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/convmv.scm' -> `./gnu/packages/convmv.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/rpm.scm' -> `./gnu/packages/rpm.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aspell.scm' -> `./gnu/packages/aspell.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/electronics.scm' -> `./gnu/packages/electronics.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/lout.scm' -> `./gnu/packages/lout.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/dc.scm' -> `./gnu/packages/dc.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/jose.scm' -> `./gnu/packages/jose.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/esolangs.scm' -> `./gnu/packages/esolangs.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/rpc.scm' -> `./gnu/packages/rpc.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/libftdi.scm' -> `./gnu/packages/libftdi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/pcre.scm' -> `./gnu/packages/pcre.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/xiph.scm' -> `./gnu/packages/xiph.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/animation.scm' -> `./gnu/packages/animation.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/lighting.scm' -> `./gnu/packages/lighting.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/piet.scm' -> `./gnu/packages/piet.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/maven.scm' -> `./gnu/packages/maven.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/cobol.scm' -> `./gnu/packages/cobol.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/guile-xyz.scm' -> `./gnu/packages/guile-xyz.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/rails.scm' -> `./gnu/packages/rails.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/rust-apps.scm' -> `./gnu/packages/rust-apps.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/storage.scm' -> `./gnu/packages/storage.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/telegram.scm' -> `./gnu/packages/telegram.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/configuration-management.scm' -> `./gnu/packages/configuration-management.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/zile.scm' -> `./gnu/packages/zile.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/freedesktop.scm' -> `./gnu/packages/freedesktop.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/xorg.scm' -> `./gnu/packages/xorg.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/kde-multimedia.scm' -> `./gnu/packages/kde-multimedia.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/image-processing.scm' -> `./gnu/packages/image-processing.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/video.scm' -> `./gnu/packages/video.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/dhall.scm' -> `./gnu/packages/dhall.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/base.scm' -> `./gnu/packages/base.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/image-viewers.scm' -> `./gnu/packages/image-viewers.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/firmware.scm' -> `./gnu/packages/firmware.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/task-management.scm' -> `./gnu/packages/task-management.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/busybox.scm' -> `./gnu/packages/busybox.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/mastodon.scm' -> `./gnu/packages/mastodon.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/fonts.scm' -> `./gnu/packages/fonts.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ncdu.scm' -> `./gnu/packages/ncdu.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/elf.scm' -> `./gnu/packages/elf.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ipfs.scm' -> `./gnu/packages/ipfs.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/build-tools.scm' -> `./gnu/packages/build-tools.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/medical.scm' -> `./gnu/packages/medical.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/unicode.scm' -> `./gnu/packages/unicode.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/crates-graphics.scm' -> `./gnu/packages/crates-graphics.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/vim.scm' -> `./gnu/packages/vim.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/scribus.scm' -> `./gnu/packages/scribus.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ld-wrapper.in' -> `./gnu/packages/ld-wrapper.in' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/hyperledger.scm' -> `./gnu/packages/hyperledger.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/stenography.scm' -> `./gnu/packages/stenography.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/skribilo.scm' -> `./gnu/packages/skribilo.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/fribidi.scm' -> `./gnu/packages/fribidi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/synergy.scm' -> `./gnu/packages/synergy.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/libunistring.scm' -> `./gnu/packages/libunistring.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/xfig.scm' -> `./gnu/packages/xfig.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/man.scm' -> `./gnu/packages/man.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/instrumentation.scm' -> `./gnu/packages/instrumentation.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/fontutils.scm' -> `./gnu/packages/fontutils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gobby.scm' -> `./gnu/packages/gobby.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/rust.scm' -> `./gnu/packages/rust.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/web-browsers.scm' -> `./gnu/packages/web-browsers.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/datamash.scm' -> `./gnu/packages/datamash.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/forth.scm' -> `./gnu/packages/forth.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/usb-modeswitch.scm' -> `./gnu/packages/usb-modeswitch.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/chez.scm' -> `./gnu/packages/chez.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/simulation.scm' -> `./gnu/packages/simulation.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/golang.scm' -> `./gnu/packages/golang.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/moe.scm' -> `./gnu/packages/moe.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/javascript.scm' -> `./gnu/packages/javascript.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/astronomy.scm' -> `./gnu/packages/astronomy.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/file.scm' -> `./gnu/packages/file.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/webkit.scm' -> `./gnu/packages/webkit.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/kde-utils.scm' -> `./gnu/packages/kde-utils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/raspberry-pi.scm' -> `./gnu/packages/raspberry-pi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/onc-rpc.scm' -> `./gnu/packages/onc-rpc.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/rrdtool.scm' -> `./gnu/packages/rrdtool.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/julia-jll.scm' -> `./gnu/packages/julia-jll.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/bioconductor.scm' -> `./gnu/packages/bioconductor.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/libffi.scm' -> `./gnu/packages/libffi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/libdaemon.scm' -> `./gnu/packages/libdaemon.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/logo.scm' -> `./gnu/packages/logo.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/opencl.scm' -> `./gnu/packages/opencl.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gxmessage.scm' -> `./gnu/packages/gxmessage.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ccache.scm' -> `./gnu/packages/ccache.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/time.scm' -> `./gnu/packages/time.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/embedded.scm' -> `./gnu/packages/embedded.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gnunet.scm' -> `./gnu/packages/gnunet.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/mate.scm' -> `./gnu/packages/mate.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/display-managers.scm' -> `./gnu/packages/display-managers.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/idris.scm' -> `./gnu/packages/idris.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/search.scm' -> `./gnu/packages/search.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/cdrom.scm' -> `./gnu/packages/cdrom.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/julia-xyz.scm' -> `./gnu/packages/julia-xyz.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/polkit.scm' -> `./gnu/packages/polkit.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/pumpio.scm' -> `./gnu/packages/pumpio.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/enlightenment.scm' -> `./gnu/packages/enlightenment.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/pep.scm' -> `./gnu/packages/pep.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/suckless.scm' -> `./gnu/packages/suckless.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/linux.scm' -> `./gnu/packages/linux.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/pretty-print.scm' -> `./gnu/packages/pretty-print.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/plan9.scm' -> `./gnu/packages/plan9.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/heads.scm' -> `./gnu/packages/heads.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/terminals.scm' -> `./gnu/packages/terminals.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/emulators.scm' -> `./gnu/packages/emulators.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gv.scm' -> `./gnu/packages/gv.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/squirrel.scm' -> `./gnu/packages/squirrel.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/entr.scm' -> `./gnu/packages/entr.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/anthy.scm' -> `./gnu/packages/anthy.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/tv.scm' -> `./gnu/packages/tv.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ots.scm' -> `./gnu/packages/ots.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/maths.scm' -> `./gnu/packages/maths.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/serveez.scm' -> `./gnu/packages/serveez.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patchutils.scm' -> `./gnu/packages/patchutils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/license.scm' -> `./gnu/packages/license.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/phabricator.scm' -> `./gnu/packages/phabricator.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/erlang.scm' -> `./gnu/packages/erlang.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gpodder.scm' -> `./gnu/packages/gpodder.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/shellutils.scm' -> `./gnu/packages/shellutils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/cyrus-sasl.scm' -> `./gnu/packages/cyrus-sasl.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/cppi.scm' -> `./gnu/packages/cppi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/conky.scm' -> `./gnu/packages/conky.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/kawa.scm' -> `./gnu/packages/kawa.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/debian.scm' -> `./gnu/packages/debian.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/lesstif.scm' -> `./gnu/packages/lesstif.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/antivirus.scm' -> `./gnu/packages/antivirus.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/kerberos.scm' -> `./gnu/packages/kerberos.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/stalonetray.scm' -> `./gnu/packages/stalonetray.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/pascal.scm' -> `./gnu/packages/pascal.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/python-compression.scm' -> `./gnu/packages/python-compression.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/crypto.scm' -> `./gnu/packages/crypto.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/direct-connect.scm' -> `./gnu/packages/direct-connect.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/purescript.scm' -> `./gnu/packages/purescript.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/java-compression.scm' -> `./gnu/packages/java-compression.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/chicken.scm' -> `./gnu/packages/chicken.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/minetest.scm' -> `./gnu/packages/minetest.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/haskell-apps.scm' -> `./gnu/packages/haskell-apps.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/readline.scm' -> `./gnu/packages/readline.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/prolog.scm' -> `./gnu/packages/prolog.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/flashing-tools.scm' -> `./gnu/packages/flashing-tools.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/commencement.scm' -> `./gnu/packages/commencement.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/tmux.scm' -> `./gnu/packages/tmux.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/compton.scm' -> `./gnu/packages/compton.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/zig.scm' -> `./gnu/packages/zig.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/axoloti.scm' -> `./gnu/packages/axoloti.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/valgrind.scm' -> `./gnu/packages/valgrind.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/hexedit.scm' -> `./gnu/packages/hexedit.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/magic-wormhole.scm' -> `./gnu/packages/magic-wormhole.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/dictionaries.scm' -> `./gnu/packages/dictionaries.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/perl-check.scm' -> `./gnu/packages/perl-check.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/unrtf.scm' -> `./gnu/packages/unrtf.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/wordnet.scm' -> `./gnu/packages/wordnet.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/lego.scm' -> `./gnu/packages/lego.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/orpheus.scm' -> `./gnu/packages/orpheus.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/acl.scm' -> `./gnu/packages/acl.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/file-systems.scm' -> `./gnu/packages/file-systems.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gps.scm' -> `./gnu/packages/gps.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/presentation.scm' -> `./gnu/packages/presentation.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/shells.scm' -> `./gnu/packages/shells.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/selinux.scm' -> `./gnu/packages/selinux.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ocaml.scm' -> `./gnu/packages/ocaml.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/python-build.scm' -> `./gnu/packages/python-build.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/node-xyz.scm' -> `./gnu/packages/node-xyz.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/multiprecision.scm' -> `./gnu/packages/multiprecision.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/guile.scm' -> `./gnu/packages/guile.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/kde-systemtools.scm' -> `./gnu/packages/kde-systemtools.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/figlet.scm' -> `./gnu/packages/figlet.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/easyrpg.scm' -> `./gnu/packages/easyrpg.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/enchant.scm' -> `./gnu/packages/enchant.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/mp3.scm' -> `./gnu/packages/mp3.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/lisp-check.scm' -> `./gnu/packages/lisp-check.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/djvu.scm' -> `./gnu/packages/djvu.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/kodi.scm' -> `./gnu/packages/kodi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/m4.scm' -> `./gnu/packages/m4.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/openpgp.scm' -> `./gnu/packages/openpgp.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/wicd.scm' -> `./gnu/packages/wicd.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/perl.scm' -> `./gnu/packages/perl.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/wget.scm' -> `./gnu/packages/wget.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/hunspell.scm' -> `./gnu/packages/hunspell.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/nutrition.scm' -> `./gnu/packages/nutrition.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/music.scm' -> `./gnu/packages/music.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gimp.scm' -> `./gnu/packages/gimp.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/rsync.scm' -> `./gnu/packages/rsync.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/c.scm' -> `./gnu/packages/c.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/kde-pim.scm' -> `./gnu/packages/kde-pim.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gkrellm.scm' -> `./gnu/packages/gkrellm.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/android.scm' -> `./gnu/packages/android.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/haskell-crypto.scm' -> `./gnu/packages/haskell-crypto.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/version-control.scm' -> `./gnu/packages/version-control.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/tryton.scm' -> `./gnu/packages/tryton.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/libreoffice.scm' -> `./gnu/packages/libreoffice.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gettext.scm' -> `./gnu/packages/gettext.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/slang.scm' -> `./gnu/packages/slang.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/smalltalk.scm' -> `./gnu/packages/smalltalk.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/glib.scm' -> `./gnu/packages/glib.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/jami.scm' -> `./gnu/packages/jami.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/efi.scm' -> `./gnu/packages/efi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/finance.scm' -> `./gnu/packages/finance.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/telephony.scm' -> `./gnu/packages/telephony.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/jemalloc.scm' -> `./gnu/packages/jemalloc.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/wine.scm' -> `./gnu/packages/wine.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/libidn.scm' -> `./gnu/packages/libidn.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/jupyter.scm' -> `./gnu/packages/jupyter.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gsasl.scm' -> `./gnu/packages/gsasl.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ibus.scm' -> `./gnu/packages/ibus.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/syndication.scm' -> `./gnu/packages/syndication.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/protobuf.scm' -> `./gnu/packages/protobuf.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/libbsd.scm' -> `./gnu/packages/libbsd.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gnome.scm' -> `./gnu/packages/gnome.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/coq.scm' -> `./gnu/packages/coq.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/wdiff.scm' -> `./gnu/packages/wdiff.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/vulkan.scm' -> `./gnu/packages/vulkan.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/browser-extensions.scm' -> `./gnu/packages/browser-extensions.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ftp.scm' -> `./gnu/packages/ftp.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gstreamer.scm' -> `./gnu/packages/gstreamer.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gnuzilla.scm' -> `./gnu/packages/gnuzilla.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/haskell-xyz.scm' -> `./gnu/packages/haskell-xyz.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/dejagnu.scm' -> `./gnu/packages/dejagnu.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/scanner.scm' -> `./gnu/packages/scanner.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gperf.scm' -> `./gnu/packages/gperf.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/avahi.scm' -> `./gnu/packages/avahi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/sagemath.scm' -> `./gnu/packages/sagemath.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/toys.scm' -> `./gnu/packages/toys.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/wv.scm' -> `./gnu/packages/wv.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/mercury.scm' -> `./gnu/packages/mercury.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ragel.scm' -> `./gnu/packages/ragel.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/fabric-management.scm' -> `./gnu/packages/fabric-management.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/lxde.scm' -> `./gnu/packages/lxde.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/graph.scm' -> `./gnu/packages/graph.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/vlang.scm' -> `./gnu/packages/vlang.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/photo.scm' -> `./gnu/packages/photo.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/terraform.scm' -> `./gnu/packages/terraform.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/image.scm' -> `./gnu/packages/image.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/engineering.scm' -> `./gnu/packages/engineering.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/bash.scm' -> `./gnu/packages/bash.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/language.scm' -> `./gnu/packages/language.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/zwave.scm' -> `./gnu/packages/zwave.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/sequoia.scm' -> `./gnu/packages/sequoia.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/noweb.scm' -> `./gnu/packages/noweb.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/task-runners.scm' -> `./gnu/packages/task-runners.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/wxwidgets.scm' -> `./gnu/packages/wxwidgets.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/cvassistant.scm' -> `./gnu/packages/cvassistant.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ratpoison.scm' -> `./gnu/packages/ratpoison.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/hurd.scm' -> `./gnu/packages/hurd.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/game-development.scm' -> `./gnu/packages/game-development.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/pv.scm' -> `./gnu/packages/pv.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/dav.scm' -> `./gnu/packages/dav.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/re2c.scm' -> `./gnu/packages/re2c.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/cook.scm' -> `./gnu/packages/cook.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ninja.scm' -> `./gnu/packages/ninja.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/adns.scm' -> `./gnu/packages/adns.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/mail.scm' -> `./gnu/packages/mail.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/regex.scm' -> `./gnu/packages/regex.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/pantheon.scm' -> `./gnu/packages/pantheon.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/benchmark.scm' -> `./gnu/packages/benchmark.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/matrix.scm' -> `./gnu/packages/matrix.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/nickle.scm' -> `./gnu/packages/nickle.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/qt.scm' -> `./gnu/packages/qt.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/haskell-web.scm' -> `./gnu/packages/haskell-web.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/tbb.scm' -> `./gnu/packages/tbb.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/cran.scm' -> `./gnu/packages/cran.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/orange.scm' -> `./gnu/packages/orange.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/opencog.scm' -> `./gnu/packages/opencog.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/nss.scm' -> `./gnu/packages/nss.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/databases.scm' -> `./gnu/packages/databases.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/autotools.scm' -> `./gnu/packages/autotools.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/agda.scm' -> `./gnu/packages/agda.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/openstack.scm' -> `./gnu/packages/openstack.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/hardware.scm' -> `./gnu/packages/hardware.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/mingw.scm' -> `./gnu/packages/mingw.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/bittorrent.scm' -> `./gnu/packages/bittorrent.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/perl-web.scm' -> `./gnu/packages/perl-web.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/libunwind.scm' -> `./gnu/packages/libunwind.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/pth.scm' -> `./gnu/packages/pth.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/xfce.scm' -> `./gnu/packages/xfce.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/motti.scm' -> `./gnu/packages/motti.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/nettle.scm' -> `./gnu/packages/nettle.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/xml.scm' -> `./gnu/packages/xml.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/lisp.scm' -> `./gnu/packages/lisp.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/parallel.scm' -> `./gnu/packages/parallel.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/libusb.scm' -> `./gnu/packages/libusb.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/fcitx5.scm' -> `./gnu/packages/fcitx5.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/documentation.scm' -> `./gnu/packages/documentation.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/batik.scm' -> `./gnu/packages/batik.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/scheme.scm' -> `./gnu/packages/scheme.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/machine-learning.scm' -> `./gnu/packages/machine-learning.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/sssd.scm' -> `./gnu/packages/sssd.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patool.scm' -> `./gnu/packages/patool.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gnustep.scm' -> `./gnu/packages/gnustep.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/fpga.scm' -> `./gnu/packages/fpga.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/bootstrap.scm' -> `./gnu/packages/bootstrap.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/crates-io.scm' -> `./gnu/packages/crates-io.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/cpio.scm' -> `./gnu/packages/cpio.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/geo.scm' -> `./gnu/packages/geo.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/debug.scm' -> `./gnu/packages/debug.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/i2p.scm' -> `./gnu/packages/i2p.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/libphidget.scm' -> `./gnu/packages/libphidget.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/tor.scm' -> `./gnu/packages/tor.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/perl6.scm' -> `./gnu/packages/perl6.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/moreutils.scm' -> `./gnu/packages/moreutils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/nicotine.scm' -> `./gnu/packages/nicotine.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/netpbm.scm' -> `./gnu/packages/netpbm.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/rcm.scm' -> `./gnu/packages/rcm.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/statistics.scm' -> `./gnu/packages/statistics.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/java-maths.scm' -> `./gnu/packages/java-maths.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/pciutils.scm' -> `./gnu/packages/pciutils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/pdf.scm' -> `./gnu/packages/pdf.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/chromium.scm' -> `./gnu/packages/chromium.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/django.scm' -> `./gnu/packages/django.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/algebra.scm' -> `./gnu/packages/algebra.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/text-editors.scm' -> `./gnu/packages/text-editors.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/vnc.scm' -> `./gnu/packages/vnc.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/sync.scm' -> `./gnu/packages/sync.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/cups.scm' -> `./gnu/packages/cups.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/education.scm' -> `./gnu/packages/education.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/groovy.scm' -> `./gnu/packages/groovy.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/distributed.scm' -> `./gnu/packages/distributed.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/plotutils.scm' -> `./gnu/packages/plotutils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/flex.scm' -> `./gnu/packages/flex.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/perl-compression.scm' -> `./gnu/packages/perl-compression.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ebook.scm' -> `./gnu/packages/ebook.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/clojure.scm' -> `./gnu/packages/clojure.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/accessibility.scm' -> `./gnu/packages/accessibility.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/stb.scm' -> `./gnu/packages/stb.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/cryptsetup.scm' -> `./gnu/packages/cryptsetup.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/calcurse.scm' -> `./gnu/packages/calcurse.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/genealogy.scm' -> `./gnu/packages/genealogy.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/skarnet.scm' -> `./gnu/packages/skarnet.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ocr.scm' -> `./gnu/packages/ocr.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/cpp.scm' -> `./gnu/packages/cpp.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/lean.scm' -> `./gnu/packages/lean.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/java.scm' -> `./gnu/packages/java.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/syncthing.scm' -> `./gnu/packages/syncthing.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/iso-codes.scm' -> `./gnu/packages/iso-codes.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/node.scm' -> `./gnu/packages/node.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/graphviz.scm' -> `./gnu/packages/graphviz.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/mes.scm' -> `./gnu/packages/mes.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/password-utils.scm' -> `./gnu/packages/password-utils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/abduco.scm' -> `./gnu/packages/abduco.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/serialization.scm' -> `./gnu/packages/serialization.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/nano.scm' -> `./gnu/packages/nano.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/certs.scm' -> `./gnu/packages/certs.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/cinnamon.scm' -> `./gnu/packages/cinnamon.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/acct.scm' -> `./gnu/packages/acct.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/libcanberra.scm' -> `./gnu/packages/libcanberra.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/logging.scm' -> `./gnu/packages/logging.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gawk.scm' -> `./gnu/packages/gawk.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gcc.scm' -> `./gnu/packages/gcc.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/libsigsegv.scm' -> `./gnu/packages/libsigsegv.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/php.scm' -> `./gnu/packages/php.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/graphics.scm' -> `./gnu/packages/graphics.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ada.scm' -> `./gnu/packages/ada.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/irods.scm' -> `./gnu/packages/irods.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/inklingreader.scm' -> `./gnu/packages/inklingreader.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/pure.scm' -> `./gnu/packages/pure.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/rdf.scm' -> `./gnu/packages/rdf.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/maven-parent-pom.scm' -> `./gnu/packages/maven-parent-pom.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/tcl.scm' -> `./gnu/packages/tcl.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/kde.scm' -> `./gnu/packages/kde.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/speech.scm' -> `./gnu/packages/speech.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/sphinx.scm' -> `./gnu/packages/sphinx.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/lsof.scm' -> `./gnu/packages/lsof.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/libedit.scm' -> `./gnu/packages/libedit.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/markup.scm' -> `./gnu/packages/markup.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/disk.scm' -> `./gnu/packages/disk.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/screen.scm' -> `./gnu/packages/screen.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/dbm.scm' -> `./gnu/packages/dbm.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/cedille.scm' -> `./gnu/packages/cedille.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/games.scm' -> `./gnu/packages/games.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/rednotebook.scm' -> `./gnu/packages/rednotebook.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/haskell.scm' -> `./gnu/packages/haskell.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gnucash.scm' -> `./gnu/packages/gnucash.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/lirc.scm' -> `./gnu/packages/lirc.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/upnp.scm' -> `./gnu/packages/upnp.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/connman.scm' -> `./gnu/packages/connman.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/mpi.scm' -> `./gnu/packages/mpi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/swig.scm' -> `./gnu/packages/swig.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/mc.scm' -> `./gnu/packages/mc.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/perl-maths.scm' -> `./gnu/packages/perl-maths.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ntp.scm' -> `./gnu/packages/ntp.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ncurses.scm' -> `./gnu/packages/ncurses.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/bison.scm' -> `./gnu/packages/bison.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gdb.scm' -> `./gnu/packages/gdb.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/ci.scm' -> `./gnu/packages/ci.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/python.scm' -> `./gnu/packages/python.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/python-check.scm' -> `./gnu/packages/python-check.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/radio.scm' -> `./gnu/packages/radio.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/code.scm' -> `./gnu/packages/code.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/assembly.scm' -> `./gnu/packages/assembly.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/simh.scm' -> `./gnu/packages/simh.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/nvi.scm' -> `./gnu/packages/nvi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/networking.scm' -> `./gnu/packages/networking.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/poedit.scm' -> `./gnu/packages/poedit.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/libevent.scm' -> `./gnu/packages/libevent.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/emacs.scm' -> `./gnu/packages/emacs.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/digest.scm' -> `./gnu/packages/digest.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/abiword.scm' -> `./gnu/packages/abiword.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/elixir.scm' -> `./gnu/packages/elixir.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gnu-doc.scm' -> `./gnu/packages/gnu-doc.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/kde-plasma.scm' -> `./gnu/packages/kde-plasma.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gl.scm' -> `./gnu/packages/gl.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/wireservice.scm' -> `./gnu/packages/wireservice.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/emacs-xyz.scm' -> `./gnu/packages/emacs-xyz.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/dns.scm' -> `./gnu/packages/dns.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/audio.scm' -> `./gnu/packages/audio.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/hugs.scm' -> `./gnu/packages/hugs.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/dico.scm' -> `./gnu/packages/dico.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/bootloaders.scm' -> `./gnu/packages/bootloaders.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/compression.scm' -> `./gnu/packages/compression.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/pulseaudio.scm' -> `./gnu/packages/pulseaudio.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/jrnl.scm' -> `./gnu/packages/jrnl.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/gnome-xyz.scm' -> `./gnu/packages/gnome-xyz.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/rush.scm' -> `./gnu/packages/rush.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/crates-gtk.scm' -> `./gnu/packages/crates-gtk.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/docbook.scm' -> `./gnu/packages/docbook.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/icu4c.scm' -> `./gnu/packages/icu4c.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/rdesktop.scm' -> `./gnu/packages/rdesktop.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/bioinformatics.scm' -> `./gnu/packages/bioinformatics.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/genimage.scm' -> `./gnu/packages/genimage.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/diffoscope.scm' -> `./gnu/packages/diffoscope.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/w3m.scm' -> `./gnu/packages/w3m.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/linphone.scm' -> `./gnu/packages/linphone.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/textutils.scm' -> `./gnu/packages/textutils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/key-mon.scm' -> `./gnu/packages/key-mon.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/lisp-xyz.scm' -> `./gnu/packages/lisp-xyz.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/security-token.scm' -> `./gnu/packages/security-token.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/sdl.scm' -> `./gnu/packages/sdl.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aidc.scm' -> `./gnu/packages/aidc.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/arcan.scm' -> `./gnu/packages/arcan.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/autogen.scm' -> `./gnu/packages/autogen.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/spice.scm' -> `./gnu/packages/spice.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/cmake.scm' -> `./gnu/packages/cmake.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/pem.scm' -> `./gnu/packages/pem.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/datastructures.scm' -> `./gnu/packages/datastructures.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/pack-audit.c' -> `./gnu/packages/aux-files/pack-audit.c' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/guile-launcher.c' -> `./gnu/packages/aux-files/guile-launcher.c' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/guix.vim' -> `./gnu/packages/aux-files/guix.vim' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/run-in-namespace.c' -> `./gnu/packages/aux-files/run-in-namespace.c' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/5.15-arm.conf' -> `./gnu/packages/aux-files/linux-libre/5.15-arm.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/5.15-arm64.conf' -> `./gnu/packages/aux-files/linux-libre/5.15-arm64.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/4.19-i686.conf' -> `./gnu/packages/aux-files/linux-libre/4.19-i686.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/5.10-i686.conf' -> `./gnu/packages/aux-files/linux-libre/5.10-i686.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/5.15-x86_64.conf' -> `./gnu/packages/aux-files/linux-libre/5.15-x86_64.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/5.15-i686.conf' -> `./gnu/packages/aux-files/linux-libre/5.15-i686.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/5.10-x86_64.conf' -> `./gnu/packages/aux-files/linux-libre/5.10-x86_64.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/5.4-x86_64.conf' -> `./gnu/packages/aux-files/linux-libre/5.4-x86_64.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/4.4-x86_64.conf' -> `./gnu/packages/aux-files/linux-libre/4.4-x86_64.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/5.10-arm64.conf' -> `./gnu/packages/aux-files/linux-libre/5.10-arm64.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/4.19-arm.conf' -> `./gnu/packages/aux-files/linux-libre/4.19-arm.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/4.9-x86_64.conf' -> `./gnu/packages/aux-files/linux-libre/4.9-x86_64.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/5.4-arm.conf' -> `./gnu/packages/aux-files/linux-libre/5.4-arm.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/4.14-i686.conf' -> `./gnu/packages/aux-files/linux-libre/4.14-i686.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/5.4-i686.conf' -> `./gnu/packages/aux-files/linux-libre/5.4-i686.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/4.19-arm64.conf' -> `./gnu/packages/aux-files/linux-libre/4.19-arm64.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf' -> `./gnu/packages/aux-files/linux-libre/4.19-x86_64.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/5.4-arm64.conf' -> `./gnu/packages/aux-files/linux-libre/5.4-arm64.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/5.10-arm.conf' -> `./gnu/packages/aux-files/linux-libre/5.10-arm.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/4.14-arm.conf' -> `./gnu/packages/aux-files/linux-libre/4.14-arm.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/4.14-x86_64.conf' -> `./gnu/packages/aux-files/linux-libre/4.14-x86_64.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/4.4-i686.conf' -> `./gnu/packages/aux-files/linux-libre/4.4-i686.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/linux-libre/4.9-i686.conf' -> `./gnu/packages/aux-files/linux-libre/4.9-i686.conf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/emacs/guix-emacs.el' -> `./gnu/packages/aux-files/emacs/guix-emacs.el' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/chromium/master-preferences.json' -> `./gnu/packages/aux-files/chromium/master-preferences.json' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/python/sitecustomize.py' -> `./gnu/packages/aux-files/python/sitecustomize.py' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/aux-files/python/sanity-check.py' -> `./gnu/packages/aux-files/python/sanity-check.py' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-fix-texi2pod.patch' -> `./gnu/packages/patches/gcc-fix-texi2pod.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/qtbase-use-TZDIR.patch' -> `./gnu/packages/patches/qtbase-use-TZDIR.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pthreadpool-system-libraries.patch' -> `./gnu/packages/patches/pthreadpool-system-libraries.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/openmpi-mtl-priorities.patch' -> `./gnu/packages/patches/openmpi-mtl-priorities.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libmpeg2-arm-private-symbols.patch' -> `./gnu/packages/patches/libmpeg2-arm-private-symbols.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-locales-2.28.patch' -> `./gnu/packages/patches/glibc-locales-2.28.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/aegisub-boost68.patch' -> `./gnu/packages/patches/aegisub-boost68.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/coreutils-ls.patch' -> `./gnu/packages/patches/coreutils-ls.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ghc-8.0-fall-back-to-madv_dontneed.patch' -> `./gnu/packages/patches/ghc-8.0-fall-back-to-madv_dontneed.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/java-antlr4-Add-standalone-generator.patch' -> `./gnu/packages/patches/java-antlr4-Add-standalone-generator.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/c++-gsl-find-system-gtest.patch' -> `./gnu/packages/patches/c++-gsl-find-system-gtest.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/procmail-ambiguous-getline-debian.patch' -> `./gnu/packages/patches/procmail-ambiguous-getline-debian.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kobodeluxe-const-charp-conversion.patch' -> `./gnu/packages/patches/kobodeluxe-const-charp-conversion.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/module-init-tools-moduledir.patch' -> `./gnu/packages/patches/module-init-tools-moduledir.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/luit-posix.patch' -> `./gnu/packages/patches/luit-posix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kmscon-runtime-keymap-switch.patch' -> `./gnu/packages/patches/kmscon-runtime-keymap-switch.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xsane-fix-pdf-floats.patch' -> `./gnu/packages/patches/xsane-fix-pdf-floats.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/wpa-supplicant-CVE-2021-30004.patch' -> `./gnu/packages/patches/wpa-supplicant-CVE-2021-30004.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/emacs-ignore-empty-xim-styles.patch' -> `./gnu/packages/patches/emacs-ignore-empty-xim-styles.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-waitress-fix-tests.patch' -> `./gnu/packages/patches/python-waitress-fix-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/giara-fix-login.patch' -> `./gnu/packages/patches/giara-fix-login.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libexpected-nofetch.patch' -> `./gnu/packages/patches/libexpected-nofetch.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/llvm-3.5-fix-clang-build-with-gcc5.patch' -> `./gnu/packages/patches/llvm-3.5-fix-clang-build-with-gcc5.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/vinagre-newer-rdp-parameters.patch' -> `./gnu/packages/patches/vinagre-newer-rdp-parameters.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libtommath-fix-linkage.patch' -> `./gnu/packages/patches/libtommath-fix-linkage.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-zipbomb-part1.patch' -> `./gnu/packages/patches/unzip-zipbomb-part1.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/vte-CVE-2012-2738-pt2.patch' -> `./gnu/packages/patches/vte-CVE-2012-2738-pt2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/grub-setup-root.patch' -> `./gnu/packages/patches/grub-setup-root.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lierolibre-remove-arch-warning.patch' -> `./gnu/packages/patches/lierolibre-remove-arch-warning.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ark-skip-xar-test.patch' -> `./gnu/packages/patches/ark-skip-xar-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/fasthenry-spUtils.patch' -> `./gnu/packages/patches/fasthenry-spUtils.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-flask-restful-werkzeug-compat.patch' -> `./gnu/packages/patches/python-flask-restful-werkzeug-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xf86-video-voodoo-pcitag.patch' -> `./gnu/packages/patches/xf86-video-voodoo-pcitag.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/aegis-constness-error.patch' -> `./gnu/packages/patches/aegis-constness-error.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/awesome-reproducible-png.patch' -> `./gnu/packages/patches/awesome-reproducible-png.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lm-sensors-hwmon-attrs.patch' -> `./gnu/packages/patches/lm-sensors-hwmon-attrs.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/calibre-no-updates-dialog.patch' -> `./gnu/packages/patches/calibre-no-updates-dialog.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ppsspp-disable-upgrade-and-gold.patch' -> `./gnu/packages/patches/ppsspp-disable-upgrade-and-gold.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mcrypt-CVE-2012-4426.patch' -> `./gnu/packages/patches/mcrypt-CVE-2012-4426.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rtags-separate-rct.patch' -> `./gnu/packages/patches/rtags-separate-rct.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/onnx-skip-model-downloads.patch' -> `./gnu/packages/patches/onnx-skip-model-downloads.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/emacs-telega-test-env.patch' -> `./gnu/packages/patches/emacs-telega-test-env.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/hdf5-config-date.patch' -> `./gnu/packages/patches/hdf5-config-date.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bpftrace-disable-bfd-disasm.patch' -> `./gnu/packages/patches/bpftrace-disable-bfd-disasm.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tcc-boot-0.9.27.patch' -> `./gnu/packages/patches/tcc-boot-0.9.27.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/aws-c-auth-install-private-headers.patch' -> `./gnu/packages/patches/aws-c-auth-install-private-headers.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mtools-mformat-uninitialized.patch' -> `./gnu/packages/patches/mtools-mformat-uninitialized.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-6-libsanitizer-mode-size.patch' -> `./gnu/packages/patches/gcc-6-libsanitizer-mode-size.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/llhttp-bootstrap-CVE-2020-8287.patch' -> `./gnu/packages/patches/llhttp-bootstrap-CVE-2020-8287.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/dstat-skip-devices-without-io.patch' -> `./gnu/packages/patches/dstat-skip-devices-without-io.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xplanet-1.3.1-xpUtil-Add2017LeapSecond.cpp.patch' -> `./gnu/packages/patches/xplanet-1.3.1-xpUtil-Add2017LeapSecond.cpp.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lierolibre-newer-libconfig.patch' -> `./gnu/packages/patches/lierolibre-newer-libconfig.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rocm-opencl-runtime-4.3-nocltrace.patch' -> `./gnu/packages/patches/rocm-opencl-runtime-4.3-nocltrace.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/fifo-map-remove-catch.hpp.patch' -> `./gnu/packages/patches/fifo-map-remove-catch.hpp.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libcaca-CVE-2021-3410-pt1.patch' -> `./gnu/packages/patches/libcaca-CVE-2021-3410-pt1.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/audiofile-Fix-index-overflow-in-IMA.cpp.patch' -> `./gnu/packages/patches/audiofile-Fix-index-overflow-in-IMA.cpp.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/foobillard++-pkg-config.patch' -> `./gnu/packages/patches/foobillard++-pkg-config.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bidiv-update-fribidi.patch' -> `./gnu/packages/patches/bidiv-update-fribidi.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/syslinux-gcc10.patch' -> `./gnu/packages/patches/syslinux-gcc10.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/strace-readlink-tests.patch' -> `./gnu/packages/patches/strace-readlink-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ocaml-dose3-Install-mli-cmx-etc.patch' -> `./gnu/packages/patches/ocaml-dose3-Install-mli-cmx-etc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xdg-desktop-portal-wlr-harcoded-length.patch' -> `./gnu/packages/patches/xdg-desktop-portal-wlr-harcoded-length.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-pyan3-fix-absolute-path-bug.patch' -> `./gnu/packages/patches/python-pyan3-fix-absolute-path-bug.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pciutils-hurd-configure.patch' -> `./gnu/packages/patches/pciutils-hurd-configure.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ytnef-CVE-2021-3404.patch' -> `./gnu/packages/patches/ytnef-CVE-2021-3404.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python2-pygobject-2-deprecation.patch' -> `./gnu/packages/patches/python2-pygobject-2-deprecation.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pingus-boost-headers.patch' -> `./gnu/packages/patches/pingus-boost-headers.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-valgrind.patch' -> `./gnu/packages/patches/unzip-valgrind.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/reposurgeon-add-missing-docbook-files.patch' -> `./gnu/packages/patches/reposurgeon-add-missing-docbook-files.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clang-runtime-esan-build-fixes.patch' -> `./gnu/packages/patches/clang-runtime-esan-build-fixes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-2.7-adjust-tests.patch' -> `./gnu/packages/patches/python-2.7-adjust-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-cross-gxx-include-dir.patch' -> `./gnu/packages/patches/gcc-cross-gxx-include-dir.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-CVE-2015-7696.patch' -> `./gnu/packages/patches/unzip-CVE-2015-7696.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/dovecot-trees-support-dovecot-2.3.patch' -> `./gnu/packages/patches/dovecot-trees-support-dovecot-2.3.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/isl-0.11.1-aarch64-support.patch' -> `./gnu/packages/patches/isl-0.11.1-aarch64-support.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-x-option.patch' -> `./gnu/packages/patches/unzip-x-option.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/automake-skip-amhello-tests.patch' -> `./gnu/packages/patches/automake-skip-amhello-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/perl-www-curl-fix-struct-void.patch' -> `./gnu/packages/patches/perl-www-curl-fix-struct-void.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/remake-impure-dirs.patch' -> `./gnu/packages/patches/remake-impure-dirs.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-packaging-test-arch.patch' -> `./gnu/packages/patches/python-packaging-test-arch.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-2-deterministic-build-info.patch' -> `./gnu/packages/patches/python-2-deterministic-build-info.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/vtk-fix-freetypetools-build-failure.patch' -> `./gnu/packages/patches/vtk-fix-freetypetools-build-failure.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/desmume-gcc7-fixes.patch' -> `./gnu/packages/patches/desmume-gcc7-fixes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/perl-finance-quote-unuse-mozilla-ca.patch' -> `./gnu/packages/patches/perl-finance-quote-unuse-mozilla-ca.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mit-krb5-hurd.patch' -> `./gnu/packages/patches/mit-krb5-hurd.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/renpy-use-system-fribidi.patch' -> `./gnu/packages/patches/renpy-use-system-fribidi.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clang-runtime-9-libsanitizer-mode-field.patch' -> `./gnu/packages/patches/clang-runtime-9-libsanitizer-mode-field.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/emacs-wordnut-require-adaptive-wrap.patch' -> `./gnu/packages/patches/emacs-wordnut-require-adaptive-wrap.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-CVE-2019-19126.patch' -> `./gnu/packages/patches/glibc-CVE-2019-19126.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-hurd-gettyent.patch' -> `./gnu/packages/patches/glibc-hurd-gettyent.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/fbreader-curl-7.62.patch' -> `./gnu/packages/patches/fbreader-curl-7.62.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/wmfire-update-for-new-gdk-versions.patch' -> `./gnu/packages/patches/wmfire-update-for-new-gdk-versions.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/plink-endian-detection.patch' -> `./gnu/packages/patches/plink-endian-detection.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xf86-video-mach64-bool-to-boolean.patch' -> `./gnu/packages/patches/xf86-video-mach64-bool-to-boolean.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python2-parameterized-docstring-test.patch' -> `./gnu/packages/patches/python2-parameterized-docstring-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/combinatorial-blas-io-fix.patch' -> `./gnu/packages/patches/combinatorial-blas-io-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rcs-5.10.0-no-stdin.patch' -> `./gnu/packages/patches/rcs-5.10.0-no-stdin.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/shakespeare-spl-fix-grammar.patch' -> `./gnu/packages/patches/shakespeare-spl-fix-grammar.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kmod-module-directory.patch' -> `./gnu/packages/patches/kmod-module-directory.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libutils-remove-damaging-includes.patch' -> `./gnu/packages/patches/libutils-remove-damaging-includes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/t1lib-CVE-2011-1552+.patch' -> `./gnu/packages/patches/t1lib-CVE-2011-1552+.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lua51-pkgconfig.patch' -> `./gnu/packages/patches/lua51-pkgconfig.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tla2tools-build-xml.patch' -> `./gnu/packages/patches/tla2tools-build-xml.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/aegis-perl-tempdir2.patch' -> `./gnu/packages/patches/aegis-perl-tempdir2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/cyrus-sasl-CVE-2019-19906.patch' -> `./gnu/packages/patches/cyrus-sasl-CVE-2019-19906.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-6-source-date-epoch-1.patch' -> `./gnu/packages/patches/gcc-6-source-date-epoch-1.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bsd-games-bad-ntohl-cast.patch' -> `./gnu/packages/patches/bsd-games-bad-ntohl-cast.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/audiofile-CVE-2015-7747.patch' -> `./gnu/packages/patches/audiofile-CVE-2015-7747.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-email-fix-tests.patch' -> `./gnu/packages/patches/guile-email-fix-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/hdf4-reproducibility.patch' -> `./gnu/packages/patches/hdf4-reproducibility.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lua-liblua-so.patch' -> `./gnu/packages/patches/lua-liblua-so.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/foomatic-filters-CVE-2015-8327.patch' -> `./gnu/packages/patches/foomatic-filters-CVE-2015-8327.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xf86-video-tga-remove-mibstore.patch' -> `./gnu/packages/patches/xf86-video-tga-remove-mibstore.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/range-v3-build-with-gcc10.patch' -> `./gnu/packages/patches/range-v3-build-with-gcc10.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rust-ndarray-0.13-remove-blas-src.patch' -> `./gnu/packages/patches/rust-ndarray-0.13-remove-blas-src.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/farstream-make.patch' -> `./gnu/packages/patches/farstream-make.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lcalc-default-parameters-2.patch' -> `./gnu/packages/patches/lcalc-default-parameters-2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-versioneer-guix-support.patch' -> `./gnu/packages/patches/python-versioneer-guix-support.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lua51-liblua-so.patch' -> `./gnu/packages/patches/lua51-liblua-so.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/swish-e-search.patch' -> `./gnu/packages/patches/swish-e-search.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pulseview-qt515-compat.patch' -> `./gnu/packages/patches/pulseview-qt515-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mozjs38-tracelogger.patch' -> `./gnu/packages/patches/mozjs38-tracelogger.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/diffoscope-fix-llvm-test.patch' -> `./gnu/packages/patches/diffoscope-fix-llvm-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ceph-rocksdb-compat.patch' -> `./gnu/packages/patches/ceph-rocksdb-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/teensy-loader-cli-help.patch' -> `./gnu/packages/patches/teensy-loader-cli-help.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ableton-link-system-libraries-debian.patch' -> `./gnu/packages/patches/ableton-link-system-libraries-debian.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libvirt-add-install-prefix.patch' -> `./gnu/packages/patches/libvirt-add-install-prefix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libusb-for-axoloti.patch' -> `./gnu/packages/patches/libusb-for-axoloti.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/less-hurd-path-max.patch' -> `./gnu/packages/patches/less-hurd-path-max.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/akonadi-not-relocatable.patch' -> `./gnu/packages/patches/akonadi-not-relocatable.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/opencascade-oce-glibc-2.26.patch' -> `./gnu/packages/patches/opencascade-oce-glibc-2.26.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ripperx-missing-file.patch' -> `./gnu/packages/patches/ripperx-missing-file.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/diffutils-fix-signal-processing.patch' -> `./gnu/packages/patches/diffutils-fix-signal-processing.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gdm-remove-hardcoded-xwayland-path.patch' -> `./gnu/packages/patches/gdm-remove-hardcoded-xwayland-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/hdf-eos5-remove-gctp.patch' -> `./gnu/packages/patches/hdf-eos5-remove-gctp.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pulseaudio-longer-test-timeout.patch' -> `./gnu/packages/patches/pulseaudio-longer-test-timeout.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-typing-inspect-fix.patch' -> `./gnu/packages/patches/python-typing-inspect-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/hdf-eos2-fortrantests.patch' -> `./gnu/packages/patches/hdf-eos2-fortrantests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ttf2eot-cstddef.patch' -> `./gnu/packages/patches/ttf2eot-cstddef.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libvpx-CVE-2016-2818.patch' -> `./gnu/packages/patches/libvpx-CVE-2016-2818.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sdl-libx11-1.6.patch' -> `./gnu/packages/patches/sdl-libx11-1.6.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/java-antlr4-fix-code-too-large.java' -> `./gnu/packages/patches/java-antlr4-fix-code-too-large.java' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lierolibre-is-free-software.patch' -> `./gnu/packages/patches/lierolibre-is-free-software.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/php-openssl_x509_checkpurpose_basic.patch' -> `./gnu/packages/patches/php-openssl_x509_checkpurpose_basic.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rnp-disable-ruby-rnp-tests.patch' -> `./gnu/packages/patches/rnp-disable-ruby-rnp-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ecl-16-ignore-stderr-write-error.patch' -> `./gnu/packages/patches/ecl-16-ignore-stderr-write-error.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/crawl-upgrade-saves.patch' -> `./gnu/packages/patches/crawl-upgrade-saves.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ganeti-sphinx-compat.patch' -> `./gnu/packages/patches/ganeti-sphinx-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libmemcached-build-with-gcc7.patch' -> `./gnu/packages/patches/libmemcached-build-with-gcc7.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-aionotify-0.2.0-py3.8.patch' -> `./gnu/packages/patches/python-aionotify-0.2.0-py3.8.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/openssl-c-rehash-in.patch' -> `./gnu/packages/patches/openssl-c-rehash-in.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-random2-getrandbits-test.patch' -> `./gnu/packages/patches/python-random2-getrandbits-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rust-coresimd-doctest.patch' -> `./gnu/packages/patches/rust-coresimd-doctest.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tidy-CVE-2015-5522+5523.patch' -> `./gnu/packages/patches/tidy-CVE-2015-5522+5523.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bind-re-add-attr-constructor-priority.patch' -> `./gnu/packages/patches/bind-re-add-attr-constructor-priority.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libffi-float128-powerpc64le.patch' -> `./gnu/packages/patches/libffi-float128-powerpc64le.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gspell-dash-test.patch' -> `./gnu/packages/patches/gspell-dash-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-execnet-read-only-fix.patch' -> `./gnu/packages/patches/python-execnet-read-only-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-fixtures-remove-monkeypatch-test.patch' -> `./gnu/packages/patches/python-fixtures-remove-monkeypatch-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gzdoom-find-system-libgme.patch' -> `./gnu/packages/patches/gzdoom-find-system-libgme.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clang-3.8-libc-search-path.patch' -> `./gnu/packages/patches/clang-3.8-libc-search-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libmad-mips-newgcc.patch' -> `./gnu/packages/patches/libmad-mips-newgcc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-8-sort-libtool-find-output.patch' -> `./gnu/packages/patches/gcc-8-sort-libtool-find-output.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-pycrypto-time-clock.patch' -> `./gnu/packages/patches/python-pycrypto-time-clock.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rct-add-missing-headers.patch' -> `./gnu/packages/patches/rct-add-missing-headers.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/id3lib-UTF16-writing-bug.patch' -> `./gnu/packages/patches/id3lib-UTF16-writing-bug.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-CVE-2014-8141.patch' -> `./gnu/packages/patches/unzip-CVE-2014-8141.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sbcl-png-fix-sbcl-compatibility.patch' -> `./gnu/packages/patches/sbcl-png-fix-sbcl-compatibility.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gobject-introspection-girepository.patch' -> `./gnu/packages/patches/gobject-introspection-girepository.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pjproject-fix-pkg-config-ldflags.patch' -> `./gnu/packages/patches/pjproject-fix-pkg-config-ldflags.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mpg321-CVE-2019-14247.patch' -> `./gnu/packages/patches/mpg321-CVE-2019-14247.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/picprog-non-intel-support.patch' -> `./gnu/packages/patches/picprog-non-intel-support.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lsh-fix-x11-forwarding.patch' -> `./gnu/packages/patches/lsh-fix-x11-forwarding.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/eigen-stabilise-sparseqr-test.patch' -> `./gnu/packages/patches/eigen-stabilise-sparseqr-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bash-reproducible-linux-pgrp-pipe.patch' -> `./gnu/packages/patches/bash-reproducible-linux-pgrp-pipe.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rust-nettle-sys-disable-vendor.patch' -> `./gnu/packages/patches/rust-nettle-sys-disable-vendor.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/irrlicht-use-system-libs.patch' -> `./gnu/packages/patches/irrlicht-use-system-libs.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clamav-config-llvm-libs.patch' -> `./gnu/packages/patches/clamav-config-llvm-libs.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pyqt-configure.patch' -> `./gnu/packages/patches/pyqt-configure.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ganeti-haskell-pythondir.patch' -> `./gnu/packages/patches/ganeti-haskell-pythondir.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/vboot-utils-fix-tests-show-contents.patch' -> `./gnu/packages/patches/vboot-utils-fix-tests-show-contents.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-zipbomb-part3.patch' -> `./gnu/packages/patches/unzip-zipbomb-part3.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/fifengine-swig-compat.patch' -> `./gnu/packages/patches/fifengine-swig-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/audiofile-division-by-zero.patch' -> `./gnu/packages/patches/audiofile-division-by-zero.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/readline-link-ncurses.patch' -> `./gnu/packages/patches/readline-link-ncurses.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-remove-build-date.patch' -> `./gnu/packages/patches/unzip-remove-build-date.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/texi2html-document-encoding.patch' -> `./gnu/packages/patches/texi2html-document-encoding.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/network-manager-meson.patch' -> `./gnu/packages/patches/network-manager-meson.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-pyan3-fix-positional-arguments.patch' -> `./gnu/packages/patches/python-pyan3-fix-positional-arguments.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libbase-use-own-logging.patch' -> `./gnu/packages/patches/libbase-use-own-logging.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-strmov-store-file-names.patch' -> `./gnu/packages/patches/gcc-strmov-store-file-names.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/retroarch-LIBRETRO_DIRECTORY.patch' -> `./gnu/packages/patches/retroarch-LIBRETRO_DIRECTORY.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libcaca-CVE-2021-3410-pt2.patch' -> `./gnu/packages/patches/libcaca-CVE-2021-3410-pt2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/4store-fix-buildsystem.patch' -> `./gnu/packages/patches/4store-fix-buildsystem.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gnome-session-support-elogind.patch' -> `./gnu/packages/patches/gnome-session-support-elogind.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/enjarify-setup-py.patch' -> `./gnu/packages/patches/enjarify-setup-py.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mars-install.patch' -> `./gnu/packages/patches/mars-install.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/supertux-unbundle-squirrel.patch' -> `./gnu/packages/patches/supertux-unbundle-squirrel.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libjxr-fix-typos.patch' -> `./gnu/packages/patches/libjxr-fix-typos.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/icecat-makeicecat.patch' -> `./gnu/packages/patches/icecat-makeicecat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/classpath-aarch64-support.patch' -> `./gnu/packages/patches/classpath-aarch64-support.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/calibre-remove-test-sqlite.patch' -> `./gnu/packages/patches/calibre-remove-test-sqlite.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glade-test-widget-null-icon.patch' -> `./gnu/packages/patches/glade-test-widget-null-icon.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/cabal-install-base16-bytestring1.0.patch' -> `./gnu/packages/patches/cabal-install-base16-bytestring1.0.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/perl-image-exiftool-CVE-2021-22204.patch' -> `./gnu/packages/patches/perl-image-exiftool-CVE-2021-22204.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-CVE-2019-7309.patch' -> `./gnu/packages/patches/glibc-CVE-2019-7309.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-7-cross-environment-variables.patch' -> `./gnu/packages/patches/gcc-7-cross-environment-variables.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libgrss-CVE-2016-2001.patch' -> `./gnu/packages/patches/libgrss-CVE-2016-2001.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bsd-games-2.17-64bit.patch' -> `./gnu/packages/patches/bsd-games-2.17-64bit.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bsd-games-getline.patch' -> `./gnu/packages/patches/bsd-games-getline.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-zipbomb-manpage.patch' -> `./gnu/packages/patches/unzip-zipbomb-manpage.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libmad-md_size.patch' -> `./gnu/packages/patches/libmad-md_size.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ghc-language-haskell-extract-ghc-8.10.patch' -> `./gnu/packages/patches/ghc-language-haskell-extract-ghc-8.10.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/netcdf-date-time.patch' -> `./gnu/packages/patches/netcdf-date-time.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/groovy-add-exceptionutilsgenerator.patch' -> `./gnu/packages/patches/groovy-add-exceptionutilsgenerator.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-arm-bug-71399.patch' -> `./gnu/packages/patches/gcc-arm-bug-71399.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/collectd-5.11.0-noinstallvar.patch' -> `./gnu/packages/patches/collectd-5.11.0-noinstallvar.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/openssl-1.1-c-rehash-in.patch' -> `./gnu/packages/patches/openssl-1.1-c-rehash-in.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-pycrypto-CVE-2013-7459.patch' -> `./gnu/packages/patches/python-pycrypto-CVE-2013-7459.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mrrescue-support-love-11.patch' -> `./gnu/packages/patches/mrrescue-support-love-11.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-3-search-paths.patch' -> `./gnu/packages/patches/python-3-search-paths.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libmpeg2-global-symbol-test.patch' -> `./gnu/packages/patches/libmpeg2-global-symbol-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/vboot-utils-skip-test-workbuf.patch' -> `./gnu/packages/patches/vboot-utils-skip-test-workbuf.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libxml2-terminating-newline.patch' -> `./gnu/packages/patches/libxml2-terminating-newline.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/nss-getcwd-nonnull.patch' -> `./gnu/packages/patches/nss-getcwd-nonnull.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/transcode-ffmpeg.patch' -> `./gnu/packages/patches/transcode-ffmpeg.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/intltool-perl-compatibility.patch' -> `./gnu/packages/patches/intltool-perl-compatibility.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/u-boot-rk3399-enable-emmc-phy.patch' -> `./gnu/packages/patches/u-boot-rk3399-enable-emmc-phy.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/jacal-fix-texinfo.patch' -> `./gnu/packages/patches/jacal-fix-texinfo.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ytnef-CVE-2021-3403.patch' -> `./gnu/packages/patches/ytnef-CVE-2021-3403.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libvirt-create-machine-cgroup.patch' -> `./gnu/packages/patches/libvirt-create-machine-cgroup.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-CVE-2018-14647.patch' -> `./gnu/packages/patches/python-CVE-2018-14647.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/adb-libssl_11-compatibility.patch' -> `./gnu/packages/patches/adb-libssl_11-compatibility.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tuxpaint-stamps-path.patch' -> `./gnu/packages/patches/tuxpaint-stamps-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ngircd-handle-zombies.patch' -> `./gnu/packages/patches/ngircd-handle-zombies.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/nyacc-binary-literals.patch' -> `./gnu/packages/patches/nyacc-binary-literals.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/zig-disable-libc-note-test.patch' -> `./gnu/packages/patches/zig-disable-libc-note-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-hurd-clock_gettime_monotonic.patch' -> `./gnu/packages/patches/glibc-hurd-clock_gettime_monotonic.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mozjs38-pkg-config-version.patch' -> `./gnu/packages/patches/mozjs38-pkg-config-version.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/nss-increase-test-timeout.patch' -> `./gnu/packages/patches/nss-increase-test-timeout.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kiki-missing-includes.patch' -> `./gnu/packages/patches/kiki-missing-includes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/nginx-socket-cloexec.patch' -> `./gnu/packages/patches/nginx-socket-cloexec.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ganeti-haskell-compat.patch' -> `./gnu/packages/patches/ganeti-haskell-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lirc-reproducible-build.patch' -> `./gnu/packages/patches/lirc-reproducible-build.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/grantlee-merge-theme-dirs.patch' -> `./gnu/packages/patches/grantlee-merge-theme-dirs.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/flann-cmake-3.11.patch' -> `./gnu/packages/patches/flann-cmake-3.11.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sharutils-CVE-2018-1000097.patch' -> `./gnu/packages/patches/sharutils-CVE-2018-1000097.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/jfsutils-include-systypes.patch' -> `./gnu/packages/patches/jfsutils-include-systypes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/dkimproxy-add-ipv6-support.patch' -> `./gnu/packages/patches/dkimproxy-add-ipv6-support.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lierolibre-try-building-other-arch.patch' -> `./gnu/packages/patches/lierolibre-try-building-other-arch.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-pep8-stdlib-tokenize-compat.patch' -> `./gnu/packages/patches/python-pep8-stdlib-tokenize-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/circos-remove-findbin.patch' -> `./gnu/packages/patches/circos-remove-findbin.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libofa-ftbfs-1.diff' -> `./gnu/packages/patches/libofa-ftbfs-1.diff' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/cheese-vala-update.patch' -> `./gnu/packages/patches/cheese-vala-update.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lua-CVE-2014-5461.patch' -> `./gnu/packages/patches/lua-CVE-2014-5461.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tao-add-missing-headers.patch' -> `./gnu/packages/patches/tao-add-missing-headers.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pciutils-hurd-fix.patch' -> `./gnu/packages/patches/pciutils-hurd-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-arm-link-spec-fix.patch' -> `./gnu/packages/patches/gcc-arm-link-spec-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bash-completion-directories.patch' -> `./gnu/packages/patches/bash-completion-directories.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/screen-CVE-2021-26937.patch' -> `./gnu/packages/patches/screen-CVE-2021-26937.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/qtscript-disable-tests.patch' -> `./gnu/packages/patches/qtscript-disable-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/snappy-add-inline-for-GCC.patch' -> `./gnu/packages/patches/snappy-add-inline-for-GCC.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-3-fix-tests.patch' -> `./gnu/packages/patches/python-3-fix-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-libsanitizer-ustat.patch' -> `./gnu/packages/patches/gcc-libsanitizer-ustat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gpodder-disable-updater.patch' -> `./gnu/packages/patches/gpodder-disable-updater.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-hurd-signal-sa-siginfo.patch' -> `./gnu/packages/patches/glibc-hurd-signal-sa-siginfo.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libqalculate-3.8.0-libcurl-ssl-fix.patch' -> `./gnu/packages/patches/libqalculate-3.8.0-libcurl-ssl-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pigx-scrnaseq-no-citeproc.patch' -> `./gnu/packages/patches/pigx-scrnaseq-no-citeproc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python2-larch-coverage-4.0a6-compatibility.patch' -> `./gnu/packages/patches/python2-larch-coverage-4.0a6-compatibility.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/apr-skip-getservbyname-test.patch' -> `./gnu/packages/patches/apr-skip-getservbyname-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rocm-comgr-3.1.0-dependencies.patch' -> `./gnu/packages/patches/rocm-comgr-3.1.0-dependencies.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-hidden-visibility-ldconfig.patch' -> `./gnu/packages/patches/glibc-hidden-visibility-ldconfig.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-linux-syscalls.patch' -> `./gnu/packages/patches/guile-linux-syscalls.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/m4-gnulib-libio.patch' -> `./gnu/packages/patches/m4-gnulib-libio.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-boot-2.16.0.patch' -> `./gnu/packages/patches/glibc-boot-2.16.0.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kobodeluxe-graphics-window-signed-char.patch' -> `./gnu/packages/patches/kobodeluxe-graphics-window-signed-char.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-3-hurd-configure.patch' -> `./gnu/packages/patches/python-3-hurd-configure.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rapidjson-gcc-compat.patch' -> `./gnu/packages/patches/rapidjson-gcc-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kpackage-allow-external-paths.patch' -> `./gnu/packages/patches/kpackage-allow-external-paths.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/p7zip-remove-unused-code.patch' -> `./gnu/packages/patches/p7zip-remove-unused-code.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-reinstate-prlimit64-fallback.patch' -> `./gnu/packages/patches/glibc-reinstate-prlimit64-fallback.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ipxe-reproducible-geniso.patch' -> `./gnu/packages/patches/ipxe-reproducible-geniso.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libunwind-julia-fix-GCC10-fno-common.patch' -> `./gnu/packages/patches/libunwind-julia-fix-GCC10-fno-common.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/hubbub-sort-entities.patch' -> `./gnu/packages/patches/hubbub-sort-entities.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/perl-www-curl-remove-symbol.patch' -> `./gnu/packages/patches/perl-www-curl-remove-symbol.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/racket-minimal-sh-via-rktio.patch' -> `./gnu/packages/patches/racket-minimal-sh-via-rktio.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-pytorch-runpath.patch' -> `./gnu/packages/patches/python-pytorch-runpath.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xgboost-use-system-dmlc-core.patch' -> `./gnu/packages/patches/xgboost-use-system-dmlc-core.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/flatpak-fix-path.patch' -> `./gnu/packages/patches/flatpak-fix-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-CVE-2019-9169.patch' -> `./gnu/packages/patches/glibc-CVE-2019-9169.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-skip-c++.patch' -> `./gnu/packages/patches/glibc-skip-c++.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-close.patch' -> `./gnu/packages/patches/unzip-close.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/a2ps-CVE-2015-8107.patch' -> `./gnu/packages/patches/a2ps-CVE-2015-8107.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/scotch-integer-declarations.patch' -> `./gnu/packages/patches/scotch-integer-declarations.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/transmission-honor-localedir.patch' -> `./gnu/packages/patches/transmission-honor-localedir.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/dbxfs-remove-sentry-sdk.patch' -> `./gnu/packages/patches/dbxfs-remove-sentry-sdk.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/imagemagick-WriteTHUMBNAILImage-fix.patch' -> `./gnu/packages/patches/imagemagick-WriteTHUMBNAILImage-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rapicorn-isnan.patch' -> `./gnu/packages/patches/rapicorn-isnan.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/java-openjfx-build-jdk_version.patch' -> `./gnu/packages/patches/java-openjfx-build-jdk_version.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xpra-4.2-systemd-run.patch' -> `./gnu/packages/patches/xpra-4.2-systemd-run.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/r-httpuv-1.5.5-unvendor-libuv.patch' -> `./gnu/packages/patches/r-httpuv-1.5.5-unvendor-libuv.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ocaml-dose3-add-unix-dependency.patch' -> `./gnu/packages/patches/ocaml-dose3-add-unix-dependency.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/t1lib-CVE-2010-2642.patch' -> `./gnu/packages/patches/t1lib-CVE-2010-2642.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/dvd+rw-tools-add-include.patch' -> `./gnu/packages/patches/dvd+rw-tools-add-include.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-CVE-2014-8140.patch' -> `./gnu/packages/patches/unzip-CVE-2014-8140.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gtk4-respect-GUIX_GTK4_PATH.patch' -> `./gnu/packages/patches/gtk4-respect-GUIX_GTK4_PATH.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/streamlink-update-test.patch' -> `./gnu/packages/patches/streamlink-update-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/vte-CVE-2012-2738-pt1.patch' -> `./gnu/packages/patches/vte-CVE-2012-2738-pt1.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xf86-video-nouveau-fixup-ABI.patch' -> `./gnu/packages/patches/xf86-video-nouveau-fixup-ABI.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libutils-add-includes.patch' -> `./gnu/packages/patches/libutils-add-includes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/netsurf-longer-test-timeout.patch' -> `./gnu/packages/patches/netsurf-longer-test-timeout.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-overflow-on-invalid-input.patch' -> `./gnu/packages/patches/unzip-overflow-on-invalid-input.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gtksourceview-2-add-default-directory.patch' -> `./gnu/packages/patches/gtksourceview-2-add-default-directory.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kodi-skip-test-449.patch' -> `./gnu/packages/patches/kodi-skip-test-449.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sdl-pango-header-guard.patch' -> `./gnu/packages/patches/sdl-pango-header-guard.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-attribs-overflow.patch' -> `./gnu/packages/patches/unzip-attribs-overflow.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/eudev-rules-directory.patch' -> `./gnu/packages/patches/eudev-rules-directory.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/i3status-rust-enable-unstable-features.patch' -> `./gnu/packages/patches/i3status-rust-enable-unstable-features.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-bootstrap-system-2.2.5.patch' -> `./gnu/packages/patches/glibc-bootstrap-system-2.2.5.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/wicd-urwid-1.3.patch' -> `./gnu/packages/patches/wicd-urwid-1.3.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-pyflakes-test-location.patch' -> `./gnu/packages/patches/python-pyflakes-test-location.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/screen-hurd-path-max.patch' -> `./gnu/packages/patches/screen-hurd-path-max.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-32bit-zipbomb-fix.patch' -> `./gnu/packages/patches/unzip-32bit-zipbomb-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libjxr-fix-function-signature.patch' -> `./gnu/packages/patches/libjxr-fix-function-signature.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tipp10-remove-license-code.patch' -> `./gnu/packages/patches/tipp10-remove-license-code.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/binutils-mingw-w64-timestamp.patch' -> `./gnu/packages/patches/binutils-mingw-w64-timestamp.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/go-github-com-urfave-cli-v2-fix-tests.patch' -> `./gnu/packages/patches/go-github-com-urfave-cli-v2-fix-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/openresolv-restartcmd-guix.patch' -> `./gnu/packages/patches/openresolv-restartcmd-guix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/jamvm-2.0.0-opcode-guard.patch' -> `./gnu/packages/patches/jamvm-2.0.0-opcode-guard.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clang-12.0-libc-search-path.patch' -> `./gnu/packages/patches/clang-12.0-libc-search-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libssh2-CVE-2019-17498.patch' -> `./gnu/packages/patches/libssh2-CVE-2019-17498.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/antlr3-3_3-fix-java8-compilation.patch' -> `./gnu/packages/patches/antlr3-3_3-fix-java8-compilation.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/hedgewars-network-bsd.patch' -> `./gnu/packages/patches/hedgewars-network-bsd.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/seed-webkit.patch' -> `./gnu/packages/patches/seed-webkit.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/nvi-assume-preserve-path.patch' -> `./gnu/packages/patches/nvi-assume-preserve-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/openssl-runpath.patch' -> `./gnu/packages/patches/openssl-runpath.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xfce4-panel-plugins.patch' -> `./gnu/packages/patches/xfce4-panel-plugins.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/emacs-highlight-stages-add-gexp.patch' -> `./gnu/packages/patches/emacs-highlight-stages-add-gexp.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/swish-e-format-security.patch' -> `./gnu/packages/patches/swish-e-format-security.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/fasthenry-spSolve.patch' -> `./gnu/packages/patches/fasthenry-spSolve.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tipp10-disable-downloader.patch' -> `./gnu/packages/patches/tipp10-disable-downloader.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mars-sfml-2.3.patch' -> `./gnu/packages/patches/mars-sfml-2.3.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/fontconfig-cache-ignore-mtime.patch' -> `./gnu/packages/patches/fontconfig-cache-ignore-mtime.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ceph-boost-compat.patch' -> `./gnu/packages/patches/ceph-boost-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/java-jeromq-fix-tests.patch' -> `./gnu/packages/patches/java-jeromq-fix-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/jamvm-1.5.1-armv7-support.patch' -> `./gnu/packages/patches/jamvm-1.5.1-armv7-support.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libxml2-xpath0-Add-option-xpath0.patch' -> `./gnu/packages/patches/libxml2-xpath0-Add-option-xpath0.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/fasthenry-spFactor.patch' -> `./gnu/packages/patches/fasthenry-spFactor.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/dbus-c++-threading-mutex.patch' -> `./gnu/packages/patches/dbus-c++-threading-mutex.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/linphone-desktop-without-sdk.patch' -> `./gnu/packages/patches/linphone-desktop-without-sdk.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/dbacl-include-locale.h.patch' -> `./gnu/packages/patches/dbacl-include-locale.h.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/symmetrica-return_values.patch' -> `./gnu/packages/patches/symmetrica-return_values.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/json-c-0.12-CVE-2020-12762.patch' -> `./gnu/packages/patches/json-c-0.12-CVE-2020-12762.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-CVE-2018-1000035.patch' -> `./gnu/packages/patches/unzip-CVE-2018-1000035.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mingw-w64-6.0.0-gcc.patch' -> `./gnu/packages/patches/mingw-w64-6.0.0-gcc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ocaml-Add-a-.file-directive.patch' -> `./gnu/packages/patches/ocaml-Add-a-.file-directive.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/netsurf-system-utf8proc.patch' -> `./gnu/packages/patches/netsurf-system-utf8proc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/imagemagick-ReadDCMPixels-fix.patch' -> `./gnu/packages/patches/imagemagick-ReadDCMPixels-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ungoogled-chromium-system-nspr.patch' -> `./gnu/packages/patches/ungoogled-chromium-system-nspr.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ustr-fix-build-with-gcc-5.patch' -> `./gnu/packages/patches/ustr-fix-build-with-gcc-5.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-emacs-fix-configure.patch' -> `./gnu/packages/patches/guile-emacs-fix-configure.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/shishi-fix-libgcrypt-detection.patch' -> `./gnu/packages/patches/shishi-fix-libgcrypt-detection.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/onnx-optimizer-system-library.patch' -> `./gnu/packages/patches/onnx-optimizer-system-library.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/procmail-CVE-2017-16844.patch' -> `./gnu/packages/patches/procmail-CVE-2017-16844.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/liba52-use-mtune-not-mcpu.patch' -> `./gnu/packages/patches/liba52-use-mtune-not-mcpu.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-pytest-asyncio-python-3.8.patch' -> `./gnu/packages/patches/python-pytest-asyncio-python-3.8.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bastet-change-source-of-unordered_set.patch' -> `./gnu/packages/patches/bastet-change-source-of-unordered_set.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mcrypt-CVE-2012-4409.patch' -> `./gnu/packages/patches/mcrypt-CVE-2012-4409.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libbase-fix-includes.patch' -> `./gnu/packages/patches/libbase-fix-includes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/luajit-no_ldconfig.patch' -> `./gnu/packages/patches/luajit-no_ldconfig.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/plink-1.07-unclobber-i.patch' -> `./gnu/packages/patches/plink-1.07-unclobber-i.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/binutils-boot-2.20.1a.patch' -> `./gnu/packages/patches/binutils-boot-2.20.1a.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-alt-iconv-utf8.patch' -> `./gnu/packages/patches/unzip-alt-iconv-utf8.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-locales.patch' -> `./gnu/packages/patches/glibc-locales.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libquicktime-ffmpeg.patch' -> `./gnu/packages/patches/libquicktime-ffmpeg.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/superlu-dist-scotchmetis.patch' -> `./gnu/packages/patches/superlu-dist-scotchmetis.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/portaudio-audacity-compat.patch' -> `./gnu/packages/patches/portaudio-audacity-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-dl-cache.patch' -> `./gnu/packages/patches/glibc-dl-cache.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/agg-am_c_prototype.patch' -> `./gnu/packages/patches/agg-am_c_prototype.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/hdf4-shared-fortran.patch' -> `./gnu/packages/patches/hdf4-shared-fortran.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/audiofile-hurd.patch' -> `./gnu/packages/patches/audiofile-hurd.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kinit-kdeinit-libpath.patch' -> `./gnu/packages/patches/kinit-kdeinit-libpath.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/plib-CVE-2012-4552.patch' -> `./gnu/packages/patches/plib-CVE-2012-4552.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/abseil-cpp-fix-strerror_test.patch' -> `./gnu/packages/patches/abseil-cpp-fix-strerror_test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/cyrus-sasl-ac-try-run-fix.patch' -> `./gnu/packages/patches/cyrus-sasl-ac-try-run-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/qtbase-absolute-runpath.patch' -> `./gnu/packages/patches/qtbase-absolute-runpath.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/p7zip-CVE-2016-9296.patch' -> `./gnu/packages/patches/p7zip-CVE-2016-9296.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-zipbomb-part2.patch' -> `./gnu/packages/patches/unzip-zipbomb-part2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mercurial-hg-extension-path.patch' -> `./gnu/packages/patches/mercurial-hg-extension-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bc-fix-cross-compilation.patch' -> `./gnu/packages/patches/bc-fix-cross-compilation.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/dstat-fix-crash-when-specifying-delay.patch' -> `./gnu/packages/patches/dstat-fix-crash-when-specifying-delay.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/vtk-8-fix-freetypetools-build-failure.patch' -> `./gnu/packages/patches/vtk-8-fix-freetypetools-build-failure.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clang-3.5-libsanitizer-ustat-fix.patch' -> `./gnu/packages/patches/clang-3.5-libsanitizer-ustat-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/dbus-c++-gcc-compat.patch' -> `./gnu/packages/patches/dbus-c++-gcc-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/slim-display.patch' -> `./gnu/packages/patches/slim-display.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ecl-16-format-directive-limit.patch' -> `./gnu/packages/patches/ecl-16-format-directive-limit.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libofa-curl.diff' -> `./gnu/packages/patches/libofa-curl.diff' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/t4k-common-libpng16.patch' -> `./gnu/packages/patches/t4k-common-libpng16.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ucx-tcp-iface-ioctl.patch' -> `./gnu/packages/patches/ucx-tcp-iface-ioctl.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lirc-localstatedir.patch' -> `./gnu/packages/patches/lirc-localstatedir.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/onnx-shared-libraries.patch' -> `./gnu/packages/patches/onnx-shared-libraries.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/randomjungle-disable-static-build.patch' -> `./gnu/packages/patches/randomjungle-disable-static-build.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pipewire-0.2.7-fno-common.patch' -> `./gnu/packages/patches/pipewire-0.2.7-fno-common.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/virglrenderer-CVE-2017-6386.patch' -> `./gnu/packages/patches/virglrenderer-CVE-2017-6386.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/wicd-get-selected-profile-fix.patch' -> `./gnu/packages/patches/wicd-get-selected-profile-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/classpath-miscompilation.patch' -> `./gnu/packages/patches/classpath-miscompilation.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-3-no-static-lib.patch' -> `./gnu/packages/patches/python-3-no-static-lib.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kmail-Fix-missing-link-libraries.patch' -> `./gnu/packages/patches/kmail-Fix-missing-link-libraries.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-fix-recmatch.patch' -> `./gnu/packages/patches/unzip-fix-recmatch.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/jfsutils-add-sysmacros.patch' -> `./gnu/packages/patches/jfsutils-add-sysmacros.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-4.9-libsanitizer-fix.patch' -> `./gnu/packages/patches/gcc-4.9-libsanitizer-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/doc++-segfault-fix.patch' -> `./gnu/packages/patches/doc++-segfault-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clang-6.0-libc-search-path.patch' -> `./gnu/packages/patches/clang-6.0-libc-search-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/openfoam-4.1-cleanup.patch' -> `./gnu/packages/patches/openfoam-4.1-cleanup.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-argcomplete-1.11.1-fish31.patch' -> `./gnu/packages/patches/python-argcomplete-1.11.1-fish31.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-boot-2.2.5.patch' -> `./gnu/packages/patches/glibc-boot-2.2.5.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/llvm-roc-4.2.0-add_Object.patch' -> `./gnu/packages/patches/llvm-roc-4.2.0-add_Object.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-unittest2-python3-compat.patch' -> `./gnu/packages/patches/python-unittest2-python3-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gdm-wayland-session-wrapper-from-env.patch' -> `./gnu/packages/patches/gdm-wayland-session-wrapper-from-env.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/hdf-eos5-build-shared.patch' -> `./gnu/packages/patches/hdf-eos5-build-shared.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/perl-net-dns-resolver-programmable-fix.patch' -> `./gnu/packages/patches/perl-net-dns-resolver-programmable-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/freeglut-gcc-compat.patch' -> `./gnu/packages/patches/freeglut-gcc-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-exec-shield.patch' -> `./gnu/packages/patches/unzip-exec-shield.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/intel-xed-fix-nondeterminism.patch' -> `./gnu/packages/patches/intel-xed-fix-nondeterminism.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/alpine-fix-privacy-policy-crash.patch' -> `./gnu/packages/patches/alpine-fix-privacy-policy-crash.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/wordnet-CVE-2008-2149.patch' -> `./gnu/packages/patches/wordnet-CVE-2008-2149.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-alt-iconv-utf8-print.patch' -> `./gnu/packages/patches/unzip-alt-iconv-utf8-print.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gpsbabel-fix-i686-test.patch' -> `./gnu/packages/patches/gpsbabel-fix-i686-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-7-cross-toolexeclibdir.patch' -> `./gnu/packages/patches/gcc-7-cross-toolexeclibdir.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/genimage-mke2fs-test.patch' -> `./gnu/packages/patches/genimage-mke2fs-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/java-simple-xml-fix-tests.patch' -> `./gnu/packages/patches/java-simple-xml-fix-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/seq24-rename-mutex.patch' -> `./gnu/packages/patches/seq24-rename-mutex.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libmad-armv7-thumb-pt2.patch' -> `./gnu/packages/patches/libmad-armv7-thumb-pt2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sbc-fix-build-non-x86.patch' -> `./gnu/packages/patches/sbc-fix-build-non-x86.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/efibootmgr-remove-extra-decl.patch' -> `./gnu/packages/patches/efibootmgr-remove-extra-decl.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/coreutils-gnulib-tests.patch' -> `./gnu/packages/patches/coreutils-gnulib-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glib-skip-failing-test.patch' -> `./gnu/packages/patches/glib-skip-failing-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-axolotl-AES-fix.patch' -> `./gnu/packages/patches/python-axolotl-AES-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sdl-pango-blit_overflow.patch' -> `./gnu/packages/patches/sdl-pango-blit_overflow.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/efivar-gcc-compat.patch' -> `./gnu/packages/patches/efivar-gcc-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bsd-games-number.c-and-test.patch' -> `./gnu/packages/patches/bsd-games-number.c-and-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kio-search-smbd-on-PATH.patch' -> `./gnu/packages/patches/kio-search-smbd-on-PATH.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/desmume-gcc6-fixes.patch' -> `./gnu/packages/patches/desmume-gcc6-fixes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-paste-remove-timing-test.patch' -> `./gnu/packages/patches/python-paste-remove-timing-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mozjs38-shell-version.patch' -> `./gnu/packages/patches/mozjs38-shell-version.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-CVE-2018-11236.patch' -> `./gnu/packages/patches/glibc-CVE-2018-11236.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pango-skip-libthai-test.patch' -> `./gnu/packages/patches/pango-skip-libthai-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/openbabel-fix-crash-on-nwchem-output.patch' -> `./gnu/packages/patches/openbabel-fix-crash-on-nwchem-output.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/id3lib-CVE-2007-4460.patch' -> `./gnu/packages/patches/id3lib-CVE-2007-4460.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libziparchive-add-includes.patch' -> `./gnu/packages/patches/libziparchive-add-includes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glib-networking-gnutls-binding.patch' -> `./gnu/packages/patches/glib-networking-gnutls-binding.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/erlang-man-path.patch' -> `./gnu/packages/patches/erlang-man-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/anki-mpv-args.patch' -> `./gnu/packages/patches/anki-mpv-args.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/websocketpp-fix-for-cmake-3.15.patch' -> `./gnu/packages/patches/websocketpp-fix-for-cmake-3.15.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/nettle-3.5-CVE-2021-3580-pt2.patch' -> `./gnu/packages/patches/nettle-3.5-CVE-2021-3580-pt2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/julia-SOURCE_DATE_EPOCH-mtime.patch' -> `./gnu/packages/patches/julia-SOURCE_DATE_EPOCH-mtime.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/maven-enforcer-api-fix-old-dependencies.patch' -> `./gnu/packages/patches/maven-enforcer-api-fix-old-dependencies.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libmad-length-check.patch' -> `./gnu/packages/patches/libmad-length-check.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/plib-CVE-2011-4620.patch' -> `./gnu/packages/patches/plib-CVE-2011-4620.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-versioned-locpath.patch' -> `./gnu/packages/patches/glibc-versioned-locpath.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-format-secure.patch' -> `./gnu/packages/patches/unzip-format-secure.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gnupg-1-build-with-gcc10.patch' -> `./gnu/packages/patches/gnupg-1-build-with-gcc10.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ungoogled-chromium-accelerated-video-decode.patch' -> `./gnu/packages/patches/ungoogled-chromium-accelerated-video-decode.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/qt4-ldflags.patch' -> `./gnu/packages/patches/qt4-ldflags.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/jfsutils-gcc-compat.patch' -> `./gnu/packages/patches/jfsutils-gcc-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/picard-fix-id3-rename-test.patch' -> `./gnu/packages/patches/picard-fix-id3-rename-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/netsurf-y2038-tests.patch' -> `./gnu/packages/patches/netsurf-y2038-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/beancount-disable-googleapis-fonts.patch' -> `./gnu/packages/patches/beancount-disable-googleapis-fonts.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ghostscript-no-header-creationdate.patch' -> `./gnu/packages/patches/ghostscript-no-header-creationdate.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/cube-nocheck.patch' -> `./gnu/packages/patches/cube-nocheck.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mozjs17-aarch64-support.patch' -> `./gnu/packages/patches/mozjs17-aarch64-support.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/audiofile-CVE-2018-13440.patch' -> `./gnu/packages/patches/audiofile-CVE-2018-13440.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/qemu-fix-agent-paths.patch' -> `./gnu/packages/patches/qemu-fix-agent-paths.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/cvs-CVE-2017-12836.patch' -> `./gnu/packages/patches/cvs-CVE-2017-12836.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-magic-python-bytecode.patch' -> `./gnu/packages/patches/python-magic-python-bytecode.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-7-cross-mingw.patch' -> `./gnu/packages/patches/gcc-7-cross-mingw.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libvdpau-va-gl-unbundle.patch' -> `./gnu/packages/patches/libvdpau-va-gl-unbundle.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mingw-w64-dlltool-temp-prefix.patch' -> `./gnu/packages/patches/mingw-w64-dlltool-temp-prefix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/serf-python3.patch' -> `./gnu/packages/patches/serf-python3.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kobodeluxe-manpage-minus-not-hyphen.patch' -> `./gnu/packages/patches/kobodeluxe-manpage-minus-not-hyphen.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ncompress-fix-softlinks.patch' -> `./gnu/packages/patches/ncompress-fix-softlinks.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/abcl-fix-build-xml.patch' -> `./gnu/packages/patches/abcl-fix-build-xml.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bsd-games-dont-install-empty-files.patch' -> `./gnu/packages/patches/bsd-games-dont-install-empty-files.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/vsearch-unbundle-cityhash.patch' -> `./gnu/packages/patches/vsearch-unbundle-cityhash.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-CVE-2015-7697.patch' -> `./gnu/packages/patches/unzip-CVE-2015-7697.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pigx-rnaseq-no-citeproc.patch' -> `./gnu/packages/patches/pigx-rnaseq-no-citeproc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/steghide-fixes.patch' -> `./gnu/packages/patches/steghide-fixes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mumps-build-parallelism.patch' -> `./gnu/packages/patches/mumps-build-parallelism.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/llvm-9-fix-bitcast-miscompilation.patch' -> `./gnu/packages/patches/llvm-9-fix-bitcast-miscompilation.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mescc-tools-boot.patch' -> `./gnu/packages/patches/mescc-tools-boot.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lcalc-lcommon-h.patch' -> `./gnu/packages/patches/lcalc-lcommon-h.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/emacs-telega-path-placeholder.patch' -> `./gnu/packages/patches/emacs-telega-path-placeholder.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/minisat-friend-declaration.patch' -> `./gnu/packages/patches/minisat-friend-declaration.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/java-commons-collections-fix-java8.patch' -> `./gnu/packages/patches/java-commons-collections-fix-java8.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/vboot-utils-fix-format-load-address.patch' -> `./gnu/packages/patches/vboot-utils-fix-format-load-address.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-3-deterministic-build-info.patch' -> `./gnu/packages/patches/python-3-deterministic-build-info.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/llvm-3.6-fix-build-with-gcc-10.patch' -> `./gnu/packages/patches/llvm-3.6-fix-build-with-gcc-10.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/cdparanoia-fpic.patch' -> `./gnu/packages/patches/cdparanoia-fpic.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clang-11.0-libc-search-path.patch' -> `./gnu/packages/patches/clang-11.0-libc-search-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bash-linux-pgrp-pipe.patch' -> `./gnu/packages/patches/bash-linux-pgrp-pipe.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/fastcap-mulSetup.patch' -> `./gnu/packages/patches/fastcap-mulSetup.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python2-subprocess32-disable-input-test.patch' -> `./gnu/packages/patches/python2-subprocess32-disable-input-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libmygpo-qt-fix-qt-5.11.patch' -> `./gnu/packages/patches/libmygpo-qt-fix-qt-5.11.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-4.9-libsanitizer-mode-size.patch' -> `./gnu/packages/patches/gcc-4.9-libsanitizer-mode-size.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unison-fix-ocaml-4.08.patch' -> `./gnu/packages/patches/unison-fix-ocaml-4.08.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/quassel-qt-514-compat.patch' -> `./gnu/packages/patches/quassel-qt-514-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pulseaudio-fix-mult-test.patch' -> `./gnu/packages/patches/pulseaudio-fix-mult-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/agg-2.5-gcc8.patch' -> `./gnu/packages/patches/agg-2.5-gcc8.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-2.7-source-date-epoch.patch' -> `./gnu/packages/patches/python-2.7-source-date-epoch.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/x265-arm-flags.patch' -> `./gnu/packages/patches/x265-arm-flags.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/perl-text-markdown-discount-unbundle.patch' -> `./gnu/packages/patches/perl-text-markdown-discount-unbundle.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/findutils-localstatedir.patch' -> `./gnu/packages/patches/findutils-localstatedir.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/grub-efi-fat-serial-number.patch' -> `./gnu/packages/patches/grub-efi-fat-serial-number.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gajim-honour-GAJIM_PLUGIN_PATH.patch' -> `./gnu/packages/patches/gajim-honour-GAJIM_PLUGIN_PATH.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/wpa-supplicant-CVE-2021-27803.patch' -> `./gnu/packages/patches/wpa-supplicant-CVE-2021-27803.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tipp10-qt5.patch' -> `./gnu/packages/patches/tipp10-qt5.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/jamvm-2.0.0-disable-branch-patching.patch' -> `./gnu/packages/patches/jamvm-2.0.0-disable-branch-patching.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/aegisub-icu59-include-unistr.patch' -> `./gnu/packages/patches/aegisub-icu59-include-unistr.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/llvm-9-fix-scev-miscompilation.patch' -> `./gnu/packages/patches/llvm-9-fix-scev-miscompilation.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-4.6-gnu-inline.patch' -> `./gnu/packages/patches/gcc-4.6-gnu-inline.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mupen64plus-video-z64-glew-correct-path.patch' -> `./gnu/packages/patches/mupen64plus-video-z64-glew-correct-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/u-boot-nintendo-nes-serial.patch' -> `./gnu/packages/patches/u-boot-nintendo-nes-serial.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/geeqie-clutter.patch' -> `./gnu/packages/patches/geeqie-clutter.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mono-mdoc-timestamping.patch' -> `./gnu/packages/patches/mono-mdoc-timestamping.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/allegro-mesa-18.2.5-and-later.patch' -> `./gnu/packages/patches/allegro-mesa-18.2.5-and-later.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rustc-1.39.0-src.patch' -> `./gnu/packages/patches/rustc-1.39.0-src.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/go-skip-gc-test.patch' -> `./gnu/packages/patches/go-skip-gc-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/adb-add-libraries.patch' -> `./gnu/packages/patches/adb-add-libraries.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gash-utils-ls-test.patch' -> `./gnu/packages/patches/gash-utils-ls-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/hydra-disable-darcs-test.patch' -> `./gnu/packages/patches/hydra-disable-darcs-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-2.7-no-static-lib.patch' -> `./gnu/packages/patches/python-2.7-no-static-lib.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-ldd-powerpc.patch' -> `./gnu/packages/patches/glibc-ldd-powerpc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gpm-glibc-2.26.patch' -> `./gnu/packages/patches/gpm-glibc-2.26.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sdl-pango-fillrect_crash.patch' -> `./gnu/packages/patches/sdl-pango-fillrect_crash.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/llvm-roc-4.0.0-remove-isystem-usr-include.patch' -> `./gnu/packages/patches/llvm-roc-4.0.0-remove-isystem-usr-include.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/p7zip-CVE-2017-17969.patch' -> `./gnu/packages/patches/p7zip-CVE-2017-17969.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rust-ndarray-remove-blas-src-dep.patch' -> `./gnu/packages/patches/rust-ndarray-remove-blas-src-dep.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-docopt-pytest6-compat.patch' -> `./gnu/packages/patches/python-docopt-pytest6-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/symmetrica-bruch.patch' -> `./gnu/packages/patches/symmetrica-bruch.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/java-xerces-build_dont_unzip.patch' -> `./gnu/packages/patches/java-xerces-build_dont_unzip.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mixxx-link-qtscriptbytearray-qtscript.patch' -> `./gnu/packages/patches/mixxx-link-qtscriptbytearray-qtscript.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kodi-set-libcurl-ssl-parameters.patch' -> `./gnu/packages/patches/kodi-set-libcurl-ssl-parameters.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/emacs-exec-path.patch' -> `./gnu/packages/patches/emacs-exec-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-CVE-2016-9844.patch' -> `./gnu/packages/patches/unzip-CVE-2016-9844.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bazaar-CVE-2017-14176.patch' -> `./gnu/packages/patches/bazaar-CVE-2017-14176.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/aegis-perl-tempdir1.patch' -> `./gnu/packages/patches/aegis-perl-tempdir1.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/syslinux-strip-gnu-property.patch' -> `./gnu/packages/patches/syslinux-strip-gnu-property.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/fpc-reproducibility.patch' -> `./gnu/packages/patches/fpc-reproducibility.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/perl-no-sys-dirs.patch' -> `./gnu/packages/patches/perl-no-sys-dirs.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/hdf-eos2-remove-gctp.patch' -> `./gnu/packages/patches/hdf-eos2-remove-gctp.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/warsow-qfusion-fix-bool-return-type.patch' -> `./gnu/packages/patches/warsow-qfusion-fix-bool-return-type.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/cdrkit-libre-cross-compile.patch' -> `./gnu/packages/patches/cdrkit-libre-cross-compile.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pybugz-stty.patch' -> `./gnu/packages/patches/pybugz-stty.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/superlu-dist-awpm-grid.patch' -> `./gnu/packages/patches/superlu-dist-awpm-grid.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gobject-introspection-absolute-shlib-path.patch' -> `./gnu/packages/patches/gobject-introspection-absolute-shlib-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gnome-tweaks-search-paths.patch' -> `./gnu/packages/patches/gnome-tweaks-search-paths.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/wmctrl-64-fix.patch' -> `./gnu/packages/patches/wmctrl-64-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gdm-pass-gdk-pixbuf-loader-env.patch' -> `./gnu/packages/patches/gdm-pass-gdk-pixbuf-loader-env.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/helm-fix-gcc-9-build.patch' -> `./gnu/packages/patches/helm-fix-gcc-9-build.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/plasma-framework-fix-KF5PlasmaMacros.cmake.patch' -> `./gnu/packages/patches/plasma-framework-fix-KF5PlasmaMacros.cmake.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mutt-store-references.patch' -> `./gnu/packages/patches/mutt-store-references.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ngless-unliftio.patch' -> `./gnu/packages/patches/ngless-unliftio.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/cdrtools-3.01-mkisofs-isoinfo.patch' -> `./gnu/packages/patches/cdrtools-3.01-mkisofs-isoinfo.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/liba52-enable-pic.patch' -> `./gnu/packages/patches/liba52-enable-pic.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/liba52-set-soname.patch' -> `./gnu/packages/patches/liba52-set-soname.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-matplotlib-run-under-wayland-gtk3.patch' -> `./gnu/packages/patches/python-matplotlib-run-under-wayland-gtk3.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-manpage-fix.patch' -> `./gnu/packages/patches/unzip-manpage-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mumps-shared-pord.patch' -> `./gnu/packages/patches/mumps-shared-pord.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ghostscript-no-header-uuid.patch' -> `./gnu/packages/patches/ghostscript-no-header-uuid.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ath9k-htc-firmware-gcc.patch' -> `./gnu/packages/patches/ath9k-htc-firmware-gcc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-flint-includes.patch' -> `./gnu/packages/patches/python-flint-includes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/fifo-map-fix-flags-for-gcc.patch' -> `./gnu/packages/patches/fifo-map-fix-flags-for-gcc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kobodeluxe-paths.patch' -> `./gnu/packages/patches/kobodeluxe-paths.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/java-tunnelvisionlabs-antlr-code-too-large.patch' -> `./gnu/packages/patches/java-tunnelvisionlabs-antlr-code-too-large.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/evilwm-lost-focus-bug.patch' -> `./gnu/packages/patches/evilwm-lost-focus-bug.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/llvm-roc-3.0.0-add_libraries.patch' -> `./gnu/packages/patches/llvm-roc-3.0.0-add_libraries.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-3.0-relocatable.patch' -> `./gnu/packages/patches/guile-3.0-relocatable.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/aegis-test-fixup-2.patch' -> `./gnu/packages/patches/aegis-test-fixup-2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/datefudge-gettimeofday.patch' -> `./gnu/packages/patches/datefudge-gettimeofday.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/freecad-boost-serialization.patch' -> `./gnu/packages/patches/freecad-boost-serialization.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tcsh-fix-autotest.patch' -> `./gnu/packages/patches/tcsh-fix-autotest.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sbcl-burgled-batteries3-fix-signals.patch' -> `./gnu/packages/patches/sbcl-burgled-batteries3-fix-signals.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/yggdrasil-extra-config.patch' -> `./gnu/packages/patches/yggdrasil-extra-config.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/scotch-build-parallelism.patch' -> `./gnu/packages/patches/scotch-build-parallelism.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/restic-0.9.6-fix-tests-for-go1.15.patch' -> `./gnu/packages/patches/restic-0.9.6-fix-tests-for-go1.15.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/llvm-9-fix-lpad-miscompilation.patch' -> `./gnu/packages/patches/llvm-9-fix-lpad-miscompilation.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/go-fix-script-tests.patch' -> `./gnu/packages/patches/go-fix-script-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/emacs-json-reformat-fix-tests.patch' -> `./gnu/packages/patches/emacs-json-reformat-fix-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-libvtv-runpath.patch' -> `./gnu/packages/patches/gcc-libvtv-runpath.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ungoogled-chromium-RUNPATH.patch' -> `./gnu/packages/patches/ungoogled-chromium-RUNPATH.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libusb-0.1-disable-tests.patch' -> `./gnu/packages/patches/libusb-0.1-disable-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-ldd-x86_64.patch' -> `./gnu/packages/patches/glibc-ldd-x86_64.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pigx-chipseq-no-citeproc.patch' -> `./gnu/packages/patches/pigx-chipseq-no-citeproc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-6-source-date-epoch-2.patch' -> `./gnu/packages/patches/gcc-6-source-date-epoch-2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sunxi-tools-remove-sys-io.patch' -> `./gnu/packages/patches/sunxi-tools-remove-sys-io.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-8-cross-environment-variables.patch' -> `./gnu/packages/patches/gcc-8-cross-environment-variables.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pygpgme-disable-problematic-tests.patch' -> `./gnu/packages/patches/pygpgme-disable-problematic-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/jamvm-1.5.1-aarch64-support.patch' -> `./gnu/packages/patches/jamvm-1.5.1-aarch64-support.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-unittest2-remove-argparse.patch' -> `./gnu/packages/patches/python-unittest2-remove-argparse.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/quagga-reproducible-build.patch' -> `./gnu/packages/patches/quagga-reproducible-build.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gd-Revert-fix-303-gdlib.pc.patch' -> `./gnu/packages/patches/gd-Revert-fix-303-gdlib.pc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kinit-kdeinit-extra_libs.patch' -> `./gnu/packages/patches/kinit-kdeinit-extra_libs.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/symmetrica-sort_sum_rename.patch' -> `./gnu/packages/patches/symmetrica-sort_sum_rename.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kmplayer-upstream_Fix-build-with-Qt-5.9.patch' -> `./gnu/packages/patches/kmplayer-upstream_Fix-build-with-Qt-5.9.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/idris-build-with-megaparsec-9.patch' -> `./gnu/packages/patches/idris-build-with-megaparsec-9.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ganeti-shepherd-master-failover.patch' -> `./gnu/packages/patches/ganeti-shepherd-master-failover.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/netpbm-CVE-2017-2587.patch' -> `./gnu/packages/patches/netpbm-CVE-2017-2587.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/java-svg-salamander-Fix-non-det.patch' -> `./gnu/packages/patches/java-svg-salamander-Fix-non-det.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-default-utf8.patch' -> `./gnu/packages/patches/guile-default-utf8.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/twinkle-bcg729.patch' -> `./gnu/packages/patches/twinkle-bcg729.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gnutls-skip-trust-store-test.patch' -> `./gnu/packages/patches/gnutls-skip-trust-store-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gdm-elogind-support.patch' -> `./gnu/packages/patches/gdm-elogind-support.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mhash-keygen-test-segfault.patch' -> `./gnu/packages/patches/mhash-keygen-test-segfault.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/slim-sigusr1.patch' -> `./gnu/packages/patches/slim-sigusr1.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-pytorch-system-libraries.patch' -> `./gnu/packages/patches/python-pytorch-system-libraries.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libxt-guix-search-paths.patch' -> `./gnu/packages/patches/libxt-guix-search-paths.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/dbus-helper-search-path.patch' -> `./gnu/packages/patches/dbus-helper-search-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/upx-CVE-2021-20285.patch' -> `./gnu/packages/patches/upx-CVE-2021-20285.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-ssh-fix-test-suite.patch' -> `./gnu/packages/patches/guile-ssh-fix-test-suite.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/dune-istl-2.7-fix-non-mpi-tests.patch' -> `./gnu/packages/patches/dune-istl-2.7-fix-non-mpi-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rocm-opencl-runtime-4.3-noclinfo.patch' -> `./gnu/packages/patches/rocm-opencl-runtime-4.3-noclinfo.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xf86-video-mach64-glibc-2.20.patch' -> `./gnu/packages/patches/xf86-video-mach64-glibc-2.20.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/psm-disable-memory-stats.patch' -> `./gnu/packages/patches/psm-disable-memory-stats.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sssd-system-directories.patch' -> `./gnu/packages/patches/sssd-system-directories.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libffi-3.3-powerpc-fixes.patch' -> `./gnu/packages/patches/libffi-3.3-powerpc-fixes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/plotutils-spline-test.patch' -> `./gnu/packages/patches/plotutils-spline-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-hurd-mach-print.patch' -> `./gnu/packages/patches/glibc-hurd-mach-print.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/fplll-std-fenv.patch' -> `./gnu/packages/patches/fplll-std-fenv.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ungoogled-chromium-extension-search-path.patch' -> `./gnu/packages/patches/ungoogled-chromium-extension-search-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libtgvoip-disable-webrtc.patch' -> `./gnu/packages/patches/libtgvoip-disable-webrtc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/linbox-fix-pkgconfig.patch' -> `./gnu/packages/patches/linbox-fix-pkgconfig.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/byobu-writable-status.patch' -> `./gnu/packages/patches/byobu-writable-status.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mailutils-variable-lookup.patch' -> `./gnu/packages/patches/mailutils-variable-lookup.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sdl-pango-sans-serif.patch' -> `./gnu/packages/patches/sdl-pango-sans-serif.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-boot-4.6.4.patch' -> `./gnu/packages/patches/gcc-boot-4.6.4.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bsd-games-add-configure-config.patch' -> `./gnu/packages/patches/bsd-games-add-configure-config.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ytfzf-updates.patch' -> `./gnu/packages/patches/ytfzf-updates.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/netpbm-CVE-2017-2586.patch' -> `./gnu/packages/patches/netpbm-CVE-2017-2586.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xfce4-settings-defaults.patch' -> `./gnu/packages/patches/xfce4-settings-defaults.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/fasthenry-spBuild.patch' -> `./gnu/packages/patches/fasthenry-spBuild.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sbcl-aserve-add-HTML-5-elements.patch' -> `./gnu/packages/patches/sbcl-aserve-add-HTML-5-elements.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/nnpack-system-libraries.patch' -> `./gnu/packages/patches/nnpack-system-libraries.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/java-apache-ivy-port-to-latest-bouncycastle.patch' -> `./gnu/packages/patches/java-apache-ivy-port-to-latest-bouncycastle.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/qtwebkit-fix-building-with-bison-3.7.patch' -> `./gnu/packages/patches/qtwebkit-fix-building-with-bison-3.7.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/monero-use-system-miniupnpc.patch' -> `./gnu/packages/patches/monero-use-system-miniupnpc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libtgvoip-disable-sse2.patch' -> `./gnu/packages/patches/libtgvoip-disable-sse2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/psm-arch.patch' -> `./gnu/packages/patches/psm-arch.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-present-coding.patch' -> `./gnu/packages/patches/guile-present-coding.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ruby-sanitize-system-libxml.patch' -> `./gnu/packages/patches/ruby-sanitize-system-libxml.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/upower-builddir.patch' -> `./gnu/packages/patches/upower-builddir.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mesa-skip-tests.patch' -> `./gnu/packages/patches/mesa-skip-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/webkitgtk-share-store.patch' -> `./gnu/packages/patches/webkitgtk-share-store.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gobject-introspection-cc.patch' -> `./gnu/packages/patches/gobject-introspection-cc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/esmtp-add-lesmtp.patch' -> `./gnu/packages/patches/esmtp-add-lesmtp.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/casync-renameat2-declaration.patch' -> `./gnu/packages/patches/casync-renameat2-declaration.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/blender-2.79-gcc8.patch' -> `./gnu/packages/patches/blender-2.79-gcc8.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/jamvm-2.0.0-aarch64-support.patch' -> `./gnu/packages/patches/jamvm-2.0.0-aarch64-support.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-9-asan-fix-limits-include.patch' -> `./gnu/packages/patches/gcc-9-asan-fix-limits-include.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ilmbase-fix-tests.patch' -> `./gnu/packages/patches/ilmbase-fix-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rust-wl-clipboard-rs-newer-wl.patch' -> `./gnu/packages/patches/rust-wl-clipboard-rs-newer-wl.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clucene-pkgconfig.patch' -> `./gnu/packages/patches/clucene-pkgconfig.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/network-manager-plugin-path.patch' -> `./gnu/packages/patches/network-manager-plugin-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/json-c-0.13-CVE-2020-12762.patch' -> `./gnu/packages/patches/json-c-0.13-CVE-2020-12762.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libxml2-xpath-recursion-limit.patch' -> `./gnu/packages/patches/libxml2-xpath-recursion-limit.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/maven-generate-component-xml.patch' -> `./gnu/packages/patches/maven-generate-component-xml.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/debops-debops-defaults-fall-back-to-less.patch' -> `./gnu/packages/patches/debops-debops-defaults-fall-back-to-less.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pam-krb5-CVE-2020-10595.patch' -> `./gnu/packages/patches/pam-krb5-CVE-2020-10595.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/linux-pam-no-setfsuid.patch' -> `./gnu/packages/patches/linux-pam-no-setfsuid.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rust-openssl-sys-no-vendor.patch' -> `./gnu/packages/patches/rust-openssl-sys-no-vendor.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/elfutils-tests-ptrace.patch' -> `./gnu/packages/patches/elfutils-tests-ptrace.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/java-powermock-fix-java-files.patch' -> `./gnu/packages/patches/java-powermock-fix-java-files.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/liba52-link-with-libm.patch' -> `./gnu/packages/patches/liba52-link-with-libm.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-6-arm-none-eabi-multilib.patch' -> `./gnu/packages/patches/gcc-6-arm-none-eabi-multilib.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-boot-2.95.3.patch' -> `./gnu/packages/patches/gcc-boot-2.95.3.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tinyxml-use-stl.patch' -> `./gnu/packages/patches/tinyxml-use-stl.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ghc-monad-par-fix-tests.patch' -> `./gnu/packages/patches/ghc-monad-par-fix-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rnp-add-version.cmake.patch' -> `./gnu/packages/patches/rnp-add-version.cmake.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/elogind-revert-polkit-detection.patch' -> `./gnu/packages/patches/elogind-revert-polkit-detection.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sdcc-disable-non-free-code.patch' -> `./gnu/packages/patches/sdcc-disable-non-free-code.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pigx-bsseq-no-citeproc.patch' -> `./gnu/packages/patches/pigx-bsseq-no-citeproc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gtkglext-disable-disable-deprecated.patch' -> `./gnu/packages/patches/gtkglext-disable-disable-deprecated.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-peachpy-determinism.patch' -> `./gnu/packages/patches/python-peachpy-determinism.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/maxima-defsystem-mkdir.patch' -> `./gnu/packages/patches/maxima-defsystem-mkdir.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/cling-use-shared-library.patch' -> `./gnu/packages/patches/cling-use-shared-library.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/icecat-use-system-graphite2+harfbuzz.patch' -> `./gnu/packages/patches/icecat-use-system-graphite2+harfbuzz.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/audacity-add-include.patch' -> `./gnu/packages/patches/audacity-add-include.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xf86-video-siliconmotion-fix-ftbfs.patch' -> `./gnu/packages/patches/xf86-video-siliconmotion-fix-ftbfs.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mesa-opencl-all-targets.patch' -> `./gnu/packages/patches/mesa-opencl-all-targets.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-4.9-libsanitizer-ustat.patch' -> `./gnu/packages/patches/gcc-4.9-libsanitizer-ustat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/omake-fix-non-determinism.patch' -> `./gnu/packages/patches/omake-fix-non-determinism.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/postgresql-disable-resolve_symlinks.patch' -> `./gnu/packages/patches/postgresql-disable-resolve_symlinks.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mosaicatcher-unbundle-htslib.patch' -> `./gnu/packages/patches/mosaicatcher-unbundle-htslib.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/binutils-2.37-file-descriptor-leak.patch' -> `./gnu/packages/patches/binutils-2.37-file-descriptor-leak.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bsd-games-stdio.h.patch' -> `./gnu/packages/patches/bsd-games-stdio.h.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-6-cross-environment-variables.patch' -> `./gnu/packages/patches/gcc-6-cross-environment-variables.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/emacs-source-date-epoch.patch' -> `./gnu/packages/patches/emacs-source-date-epoch.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/inkscape-poppler-0.76.patch' -> `./gnu/packages/patches/inkscape-poppler-0.76.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lcalc-using-namespace-std.patch' -> `./gnu/packages/patches/lcalc-using-namespace-std.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ocaml-4.09-multiple-definitions.patch' -> `./gnu/packages/patches/ocaml-4.09-multiple-definitions.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bsd-games-prevent-name-collisions.patch' -> `./gnu/packages/patches/bsd-games-prevent-name-collisions.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lierolibre-check-unaligned-access.patch' -> `./gnu/packages/patches/lierolibre-check-unaligned-access.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/eigen-remove-openmp-error-counting.patch' -> `./gnu/packages/patches/eigen-remove-openmp-error-counting.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ri-li-modernize_cpp.patch' -> `./gnu/packages/patches/ri-li-modernize_cpp.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gtk2-theme-paths.patch' -> `./gnu/packages/patches/gtk2-theme-paths.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/leela-zero-gtest.patch' -> `./gnu/packages/patches/leela-zero-gtest.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-fibers-destroy-peer-schedulers.patch' -> `./gnu/packages/patches/guile-fibers-destroy-peer-schedulers.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libtirpc-hurd.patch' -> `./gnu/packages/patches/libtirpc-hurd.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kobodeluxe-midicon-segmentation-fault.patch' -> `./gnu/packages/patches/kobodeluxe-midicon-segmentation-fault.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/akonadi-paths.patch' -> `./gnu/packages/patches/akonadi-paths.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/icedtea-6-extend-hotspot-aarch64-support.patch' -> `./gnu/packages/patches/icedtea-6-extend-hotspot-aarch64-support.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pingus-sdl-libs-config.patch' -> `./gnu/packages/patches/pingus-sdl-libs-config.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/cairo-CVE-2020-35492.patch' -> `./gnu/packages/patches/cairo-CVE-2020-35492.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/fp16-system-libraries.patch' -> `./gnu/packages/patches/fp16-system-libraries.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-2.29-supported-locales.patch' -> `./gnu/packages/patches/glibc-2.29-supported-locales.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/icedtea-7-hotspot-aarch64-use-c++98.patch' -> `./gnu/packages/patches/icedtea-7-hotspot-aarch64-use-c++98.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/localed-xorg-keyboard.patch' -> `./gnu/packages/patches/localed-xorg-keyboard.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/julia-tracker-16-compat.patch' -> `./gnu/packages/patches/julia-tracker-16-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-3-arm-alignment.patch' -> `./gnu/packages/patches/python-3-arm-alignment.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mupen64plus-ui-console-notice.patch' -> `./gnu/packages/patches/mupen64plus-ui-console-notice.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libtar-CVE-2013-4420.patch' -> `./gnu/packages/patches/libtar-CVE-2013-4420.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gtk-doc-respect-xml-catalog.patch' -> `./gnu/packages/patches/gtk-doc-respect-xml-catalog.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-2.29-git-updates.patch' -> `./gnu/packages/patches/glibc-2.29-git-updates.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/catdoc-CVE-2017-11110.patch' -> `./gnu/packages/patches/catdoc-CVE-2017-11110.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xmonad-dynamic-linking.patch' -> `./gnu/packages/patches/xmonad-dynamic-linking.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gnupg-default-pinentry.patch' -> `./gnu/packages/patches/gnupg-default-pinentry.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mumps-shared-mumps.patch' -> `./gnu/packages/patches/mumps-shared-mumps.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/icecat-use-older-reveal-hidden-html.patch' -> `./gnu/packages/patches/icecat-use-older-reveal-hidden-html.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-overflow-long-fsize.patch' -> `./gnu/packages/patches/unzip-overflow-long-fsize.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/hdf-eos2-build-shared.patch' -> `./gnu/packages/patches/hdf-eos2-build-shared.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/qtwebkit-pbutils-include.patch' -> `./gnu/packages/patches/qtwebkit-pbutils-include.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/patch-hurd-path-max.patch' -> `./gnu/packages/patches/patch-hurd-path-max.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ath9k-htc-firmware-gcc-compat.patch' -> `./gnu/packages/patches/ath9k-htc-firmware-gcc-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/nss-3.56-pkgconfig.patch' -> `./gnu/packages/patches/nss-3.56-pkgconfig.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ocaml-CVE-2015-8869.patch' -> `./gnu/packages/patches/ocaml-CVE-2015-8869.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-5-fix-powerpc64le-build.patch' -> `./gnu/packages/patches/gcc-5-fix-powerpc64le-build.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kiki-level-selection-crash.patch' -> `./gnu/packages/patches/kiki-level-selection-crash.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/farstream-gupnp.patch' -> `./gnu/packages/patches/farstream-gupnp.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/php-bug-74093-test.patch' -> `./gnu/packages/patches/php-bug-74093-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tor-sandbox-i686.patch' -> `./gnu/packages/patches/tor-sandbox-i686.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clucene-contribs-lib.patch' -> `./gnu/packages/patches/clucene-contribs-lib.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libmicrohttpd-0.9.73-test-ssl3.patch' -> `./gnu/packages/patches/libmicrohttpd-0.9.73-test-ssl3.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/audiofile-function-signature.patch' -> `./gnu/packages/patches/audiofile-function-signature.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/geoclue-config.patch' -> `./gnu/packages/patches/geoclue-config.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clang-runtime-3.8-libsanitizer-mode-field.patch' -> `./gnu/packages/patches/clang-runtime-3.8-libsanitizer-mode-field.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/spice-vdagent-glib-2.68.patch' -> `./gnu/packages/patches/spice-vdagent-glib-2.68.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tar-remove-wholesparse-check.patch' -> `./gnu/packages/patches/tar-remove-wholesparse-check.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/open-zwave-hidapi.patch' -> `./gnu/packages/patches/open-zwave-hidapi.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bdb-5.3-atomics-on-gcc-9.patch' -> `./gnu/packages/patches/bdb-5.3-atomics-on-gcc-9.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ath9k-htc-firmware-objcopy.patch' -> `./gnu/packages/patches/ath9k-htc-firmware-objcopy.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sbcl-aserve-fix-rfe12668.patch' -> `./gnu/packages/patches/sbcl-aserve-fix-rfe12668.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/nettle-3.5-CVE-2021-3580-pt1.patch' -> `./gnu/packages/patches/nettle-3.5-CVE-2021-3580-pt1.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-CVE-2018-18384.patch' -> `./gnu/packages/patches/unzip-CVE-2018-18384.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/netsurf-message-timestamp.patch' -> `./gnu/packages/patches/netsurf-message-timestamp.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libmad-armv7-thumb-pt1.patch' -> `./gnu/packages/patches/libmad-armv7-thumb-pt1.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/dfu-programmer-fix-libusb.patch' -> `./gnu/packages/patches/dfu-programmer-fix-libusb.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/binutils-loongson-workaround.patch' -> `./gnu/packages/patches/binutils-loongson-workaround.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/widelands-system-wide_minizip.patch' -> `./gnu/packages/patches/widelands-system-wide_minizip.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ytfzf-programs.patch' -> `./gnu/packages/patches/ytfzf-programs.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gawk-shell.patch' -> `./gnu/packages/patches/gawk-shell.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ocaml-dose3-Fix-for-ocaml-4.06.patch' -> `./gnu/packages/patches/ocaml-dose3-Fix-for-ocaml-4.06.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/behave-skip-a-couple-of-tests.patch' -> `./gnu/packages/patches/behave-skip-a-couple-of-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pidgin-add-search-path.patch' -> `./gnu/packages/patches/pidgin-add-search-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rocm-opencl-runtime-3.10.0-includes.patch' -> `./gnu/packages/patches/rocm-opencl-runtime-3.10.0-includes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-CVE-2018-11237.patch' -> `./gnu/packages/patches/glibc-CVE-2018-11237.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/blender-2.79-python-3.7-fix.patch' -> `./gnu/packages/patches/blender-2.79-python-3.7-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sendgmail-remove-domain-restriction.patch' -> `./gnu/packages/patches/sendgmail-remove-domain-restriction.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clang-3.5-libc-search-path.patch' -> `./gnu/packages/patches/clang-3.5-libc-search-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/c++-gsl-move-array-bounds-tests.patch' -> `./gnu/packages/patches/c++-gsl-move-array-bounds-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/antlr3-3_1-fix-java8-compilation.patch' -> `./gnu/packages/patches/antlr3-3_1-fix-java8-compilation.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kdiagram-Fix-missing-link-libraries.patch' -> `./gnu/packages/patches/kdiagram-Fix-missing-link-libraries.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xplanet-1.3.1-cxx11-eof.patch' -> `./gnu/packages/patches/xplanet-1.3.1-cxx11-eof.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/marble-qt-add-qt-headers.patch' -> `./gnu/packages/patches/marble-qt-add-qt-headers.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tk-find-library.patch' -> `./gnu/packages/patches/tk-find-library.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/audiofile-multiply-overflow.patch' -> `./gnu/packages/patches/audiofile-multiply-overflow.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/fxdiv-system-libraries.patch' -> `./gnu/packages/patches/fxdiv-system-libraries.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-4.8-libsanitizer-fix.patch' -> `./gnu/packages/patches/gcc-4.8-libsanitizer-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/qemu-CVE-2021-20203.patch' -> `./gnu/packages/patches/qemu-CVE-2021-20203.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-2.7-site-prefixes.patch' -> `./gnu/packages/patches/python-2.7-site-prefixes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-5-source-date-epoch-2.patch' -> `./gnu/packages/patches/gcc-5-source-date-epoch-2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gmp-arm-asm-nothumb.patch' -> `./gnu/packages/patches/gmp-arm-asm-nothumb.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/u-boot-rockchip-inno-usb.patch' -> `./gnu/packages/patches/u-boot-rockchip-inno-usb.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/brightnessctl-elogind-support.patch' -> `./gnu/packages/patches/brightnessctl-elogind-support.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/grfcodec-gcc-compat.patch' -> `./gnu/packages/patches/grfcodec-gcc-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/foomatic-filters-CVE-2015-8560.patch' -> `./gnu/packages/patches/foomatic-filters-CVE-2015-8560.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/audiofile-CVE-2018-17095.patch' -> `./gnu/packages/patches/audiofile-CVE-2018-17095.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/einstein-build.patch' -> `./gnu/packages/patches/einstein-build.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clang-7.0-libc-search-path.patch' -> `./gnu/packages/patches/clang-7.0-libc-search-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/audiofile-check-number-of-coefficients.patch' -> `./gnu/packages/patches/audiofile-check-number-of-coefficients.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tar-skip-unreliable-tests.patch' -> `./gnu/packages/patches/tar-skip-unreliable-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/hdf-eos5-fix-szip.patch' -> `./gnu/packages/patches/hdf-eos5-fix-szip.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/opensles-add-license-file.patch' -> `./gnu/packages/patches/opensles-add-license-file.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-gdbm-ffi-support-gdbm-1.14.patch' -> `./gnu/packages/patches/guile-gdbm-ffi-support-gdbm-1.14.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-babel-fix-parse-future-test.patch' -> `./gnu/packages/patches/python-babel-fix-parse-future-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mpc123-initialize-ao.patch' -> `./gnu/packages/patches/mpc123-initialize-ao.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/i7z-gcc-10.patch' -> `./gnu/packages/patches/i7z-gcc-10.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sdl-pango-api_additions.patch' -> `./gnu/packages/patches/sdl-pango-api_additions.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kobodeluxe-enemies-pipe-decl.patch' -> `./gnu/packages/patches/kobodeluxe-enemies-pipe-decl.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/obs-modules-location.patch' -> `./gnu/packages/patches/obs-modules-location.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gnome-boxes-add-guix-logo.patch' -> `./gnu/packages/patches/gnome-boxes-add-guix-logo.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clang-runtime-asan-build-fixes.patch' -> `./gnu/packages/patches/clang-runtime-asan-build-fixes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/qpdfview-qt515-compat.patch' -> `./gnu/packages/patches/qpdfview-qt515-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gnome-online-miners-tracker-3.patch' -> `./gnu/packages/patches/gnome-online-miners-tracker-3.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/hurd-xattr.patch' -> `./gnu/packages/patches/hurd-xattr.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/wordnet-CVE-2008-3908-pt2.patch' -> `./gnu/packages/patches/wordnet-CVE-2008-3908-pt2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ocaml-qcheck-fix-test-whitespace.patch' -> `./gnu/packages/patches/ocaml-qcheck-fix-test-whitespace.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-1.8-cpp-4.5.patch' -> `./gnu/packages/patches/guile-1.8-cpp-4.5.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/orpheus-cast-errors-and-includes.patch' -> `./gnu/packages/patches/orpheus-cast-errors-and-includes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/doc++-include-directives.patch' -> `./gnu/packages/patches/doc++-include-directives.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lua-pkgconfig.patch' -> `./gnu/packages/patches/lua-pkgconfig.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-hurd-magic-pid.patch' -> `./gnu/packages/patches/glibc-hurd-magic-pid.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-COVSCAN-fix-unterminated-string.patch' -> `./gnu/packages/patches/unzip-COVSCAN-fix-unterminated-string.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/dynaconf-unvendor-deps.patch' -> `./gnu/packages/patches/dynaconf-unvendor-deps.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pixman-CVE-2016-5296.patch' -> `./gnu/packages/patches/pixman-CVE-2016-5296.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/java-xerces-bootclasspath.patch' -> `./gnu/packages/patches/java-xerces-bootclasspath.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-cross-environment-variables.patch' -> `./gnu/packages/patches/gcc-cross-environment-variables.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/audiofile-overflow-in-MSADPCM.patch' -> `./gnu/packages/patches/audiofile-overflow-in-MSADPCM.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mingw-w64-reproducible-gendef.patch' -> `./gnu/packages/patches/mingw-w64-reproducible-gendef.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/extempore-unbundle-external-dependencies.patch' -> `./gnu/packages/patches/extempore-unbundle-external-dependencies.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/freecad-vtk9.patch' -> `./gnu/packages/patches/freecad-vtk9.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/antiword-CVE-2014-8123.patch' -> `./gnu/packages/patches/antiword-CVE-2014-8123.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gtk2-respect-GUIX_GTK2_IM_MODULE_FILE.patch' -> `./gnu/packages/patches/gtk2-respect-GUIX_GTK2_IM_MODULE_FILE.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kiki-makefile.patch' -> `./gnu/packages/patches/kiki-makefile.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-initialize-symlink-flag.patch' -> `./gnu/packages/patches/unzip-initialize-symlink-flag.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tclxml-3.2-install.patch' -> `./gnu/packages/patches/tclxml-3.2-install.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gst-plugins-good-fix-test.patch' -> `./gnu/packages/patches/gst-plugins-good-fix-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch' -> `./gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/fastcap-mulGlobal.patch' -> `./gnu/packages/patches/fastcap-mulGlobal.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ocaml-dose3-dont-make-printconf.patch' -> `./gnu/packages/patches/ocaml-dose3-dont-make-printconf.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/atlas-gfortran-compat.patch' -> `./gnu/packages/patches/atlas-gfortran-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/crda-optional-gcrypt.patch' -> `./gnu/packages/patches/crda-optional-gcrypt.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libmygpo-qt-missing-qt5-modules.patch' -> `./gnu/packages/patches/libmygpo-qt-missing-qt5-modules.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/wordnet-CVE-2008-3908-pt1.patch' -> `./gnu/packages/patches/wordnet-CVE-2008-3908-pt1.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-8-strmov-store-file-names.patch' -> `./gnu/packages/patches/gcc-8-strmov-store-file-names.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pigx-sars-cov2-ww-no-citeproc.patch' -> `./gnu/packages/patches/pigx-sars-cov2-ww-no-citeproc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libxml2-parent-pointers.patch' -> `./gnu/packages/patches/libxml2-parent-pointers.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/musl-cross-locale.patch' -> `./gnu/packages/patches/musl-cross-locale.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sssd-fix-samba.patch' -> `./gnu/packages/patches/sssd-fix-samba.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ots-no-include-missing-file.patch' -> `./gnu/packages/patches/ots-no-include-missing-file.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/cairo-CVE-2018-19876.patch' -> `./gnu/packages/patches/cairo-CVE-2018-19876.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xsane-support-ipv6.patch' -> `./gnu/packages/patches/xsane-support-ipv6.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rust-adblock-ignore-live-tests.patch' -> `./gnu/packages/patches/rust-adblock-ignore-live-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/qtbase-moc-ignore-gcc-macro.patch' -> `./gnu/packages/patches/qtbase-moc-ignore-gcc-macro.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/a2ps-CVE-2001-1593.patch' -> `./gnu/packages/patches/a2ps-CVE-2001-1593.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/thefuck-test-environ.patch' -> `./gnu/packages/patches/thefuck-test-environ.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-cross-compile.patch' -> `./gnu/packages/patches/python-cross-compile.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sphinxbase-fix-doxygen.patch' -> `./gnu/packages/patches/sphinxbase-fix-doxygen.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pybugz-encode-error.patch' -> `./gnu/packages/patches/pybugz-encode-error.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/slim-session.patch' -> `./gnu/packages/patches/slim-session.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/slim-config.patch' -> `./gnu/packages/patches/slim-config.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/laby-make-install.patch' -> `./gnu/packages/patches/laby-make-install.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gnome-screenshot-meson-0.60.patch' -> `./gnu/packages/patches/gnome-screenshot-meson-0.60.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/readline-6.2-CVE-2014-2524.patch' -> `./gnu/packages/patches/readline-6.2-CVE-2014-2524.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/linux-libre-arm64-generic-pinebook-lcd.patch' -> `./gnu/packages/patches/linux-libre-arm64-generic-pinebook-lcd.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/azr3.patch' -> `./gnu/packages/patches/azr3.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/osip-CVE-2017-7853.patch' -> `./gnu/packages/patches/osip-CVE-2017-7853.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-rsvg-pkgconfig.patch' -> `./gnu/packages/patches/guile-rsvg-pkgconfig.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-configobj-setuptools.patch' -> `./gnu/packages/patches/python-configobj-setuptools.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/u-boot-allow-disabling-openssl.patch' -> `./gnu/packages/patches/u-boot-allow-disabling-openssl.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/isc-dhcp-gcc-compat.patch' -> `./gnu/packages/patches/isc-dhcp-gcc-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tao-fix-parser-types.patch' -> `./gnu/packages/patches/tao-fix-parser-types.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clang-runtime-3.5-libsanitizer-mode-field.patch' -> `./gnu/packages/patches/clang-runtime-3.5-libsanitizer-mode-field.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/minisat-install.patch' -> `./gnu/packages/patches/minisat-install.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gnome-settings-daemon-gc.patch' -> `./gnu/packages/patches/gnome-settings-daemon-gc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libmhash-hmac-fix-uaf.patch' -> `./gnu/packages/patches/libmhash-hmac-fix-uaf.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/go-github-com-urfave-cli-fix-tests.patch' -> `./gnu/packages/patches/go-github-com-urfave-cli-fix-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/idris-build-with-haskeline-0.8.patch' -> `./gnu/packages/patches/idris-build-with-haskeline-0.8.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/icecat-avoid-bundled-libraries.patch' -> `./gnu/packages/patches/icecat-avoid-bundled-libraries.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/qrcodegen-cpp-make-install.patch' -> `./gnu/packages/patches/qrcodegen-cpp-make-install.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/trytond-add-guix_trytond_path.patch' -> `./gnu/packages/patches/trytond-add-guix_trytond_path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xnnpack-system-libraries.patch' -> `./gnu/packages/patches/xnnpack-system-libraries.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-hurd-clock_t_centiseconds.patch' -> `./gnu/packages/patches/glibc-hurd-clock_t_centiseconds.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/slim-reset.patch' -> `./gnu/packages/patches/slim-reset.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/abiword-explictly-cast-bools.patch' -> `./gnu/packages/patches/abiword-explictly-cast-bools.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/audiofile-fix-datatypes-in-tests.patch' -> `./gnu/packages/patches/audiofile-fix-datatypes-in-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sssd-collision-with-external-nss-symbol.patch' -> `./gnu/packages/patches/sssd-collision-with-external-nss-symbol.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/emacs-hyperbole-toggle-messaging.patch' -> `./gnu/packages/patches/emacs-hyperbole-toggle-messaging.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-allow-greater-hostver-values.patch' -> `./gnu/packages/patches/unzip-allow-greater-hostver-values.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/raptor2-heap-overflow.patch' -> `./gnu/packages/patches/raptor2-heap-overflow.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/hdf-eos5-fortrantests.patch' -> `./gnu/packages/patches/hdf-eos5-fortrantests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/perl-autosplit-default-time.patch' -> `./gnu/packages/patches/perl-autosplit-default-time.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-pydot-regression-test.patch' -> `./gnu/packages/patches/python-pydot-regression-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/make-impure-dirs.patch' -> `./gnu/packages/patches/make-impure-dirs.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-relocatable.patch' -> `./gnu/packages/patches/guile-relocatable.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-5-source-date-epoch-1.patch' -> `./gnu/packages/patches/gcc-5-source-date-epoch-1.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libtheora-config-guess.patch' -> `./gnu/packages/patches/libtheora-config-guess.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gtk3-respect-GUIX_GTK3_PATH.patch' -> `./gnu/packages/patches/gtk3-respect-GUIX_GTK3_PATH.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/openjdk-14-builtins.patch' -> `./gnu/packages/patches/openjdk-14-builtins.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libtool-skip-tests2.patch' -> `./gnu/packages/patches/libtool-skip-tests2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/portmidi-modular-build.patch' -> `./gnu/packages/patches/portmidi-modular-build.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/openssl-CVE-2019-1559.patch' -> `./gnu/packages/patches/openssl-CVE-2019-1559.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-bootstrap-system-2.16.0.patch' -> `./gnu/packages/patches/glibc-bootstrap-system-2.16.0.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libbonobo-activation-test-race.patch' -> `./gnu/packages/patches/libbonobo-activation-test-race.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/perl-net-amazon-s3-moose-warning.patch' -> `./gnu/packages/patches/perl-net-amazon-s3-moose-warning.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-keras-integration-test.patch' -> `./gnu/packages/patches/python-keras-integration-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-4.9.3-mingw-gthr-default.patch' -> `./gnu/packages/patches/gcc-4.9.3-mingw-gthr-default.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/avidemux-install-to-lib.patch' -> `./gnu/packages/patches/avidemux-install-to-lib.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/jsoncpp-pkg-config-version.patch' -> `./gnu/packages/patches/jsoncpp-pkg-config-version.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lcalc-default-parameters-1.patch' -> `./gnu/packages/patches/lcalc-default-parameters-1.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/hdf4-tirpc.patch' -> `./gnu/packages/patches/hdf4-tirpc.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kmplayer-aarch64.patch' -> `./gnu/packages/patches/kmplayer-aarch64.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/chez-scheme-build-util-paths-backport.patch' -> `./gnu/packages/patches/chez-scheme-build-util-paths-backport.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ocaml-enable-ocamldoc-reproducibility.patch' -> `./gnu/packages/patches/ocaml-enable-ocamldoc-reproducibility.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gnash-fix-giflib-version.patch' -> `./gnu/packages/patches/gnash-fix-giflib-version.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-static-nss.patch' -> `./gnu/packages/patches/glibc-static-nss.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/oneko-remove-nonfree-characters.patch' -> `./gnu/packages/patches/oneko-remove-nonfree-characters.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bsd-games-add-wrapper.patch' -> `./gnu/packages/patches/bsd-games-add-wrapper.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/grep-timing-sensitive-test.patch' -> `./gnu/packages/patches/grep-timing-sensitive-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/scheme48-tests.patch' -> `./gnu/packages/patches/scheme48-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-git-adjust-for-libgit2-1.2.0.patch' -> `./gnu/packages/patches/guile-git-adjust-for-libgit2-1.2.0.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-CVE-2014-8139.patch' -> `./gnu/packages/patches/unzip-CVE-2014-8139.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/imagemagick-ReadDCMImage-fix.patch' -> `./gnu/packages/patches/imagemagick-ReadDCMImage-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-timestamp.patch' -> `./gnu/packages/patches/unzip-timestamp.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lvm2-static-link.patch' -> `./gnu/packages/patches/lvm2-static-link.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/nsis-env-passthru.patch' -> `./gnu/packages/patches/nsis-env-passthru.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/blender-2.79-oiio2.patch' -> `./gnu/packages/patches/blender-2.79-oiio2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/dee-vapi.patch' -> `./gnu/packages/patches/dee-vapi.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/aspell-default-dict-dir.patch' -> `./gnu/packages/patches/aspell-default-dict-dir.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libcanberra-wayland-crash.patch' -> `./gnu/packages/patches/libcanberra-wayland-crash.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-2.2-default-utf8.patch' -> `./gnu/packages/patches/guile-2.2-default-utf8.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/trytond-add-egg-modules-to-path.patch' -> `./gnu/packages/patches/trytond-add-egg-modules-to-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/aegisub-make43.patch' -> `./gnu/packages/patches/aegisub-make43.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-CVE-2020-26116.patch' -> `./gnu/packages/patches/python-CVE-2020-26116.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mozjs24-aarch64-support.patch' -> `./gnu/packages/patches/mozjs24-aarch64-support.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mathjax-disable-webpack.patch' -> `./gnu/packages/patches/mathjax-disable-webpack.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ldns-drill-examples.patch' -> `./gnu/packages/patches/ldns-drill-examples.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/maven-generate-javax-inject-named.patch' -> `./gnu/packages/patches/maven-generate-javax-inject-named.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rust-nettle-disable-vendor.patch' -> `./gnu/packages/patches/rust-nettle-disable-vendor.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-4-compile-with-gcc-5.patch' -> `./gnu/packages/patches/gcc-4-compile-with-gcc-5.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tipp10-fix-compiling.patch' -> `./gnu/packages/patches/tipp10-fix-compiling.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/instead-use-games-path.patch' -> `./gnu/packages/patches/instead-use-games-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rust-shell2batch-lint-fix.patch' -> `./gnu/packages/patches/rust-shell2batch-lint-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/shadow-hurd-pctrl.patch' -> `./gnu/packages/patches/shadow-hurd-pctrl.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gd-fix-tests-on-i686.patch' -> `./gnu/packages/patches/gd-fix-tests-on-i686.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ath9k-htc-firmware-binutils.patch' -> `./gnu/packages/patches/ath9k-htc-firmware-binutils.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ratpoison-shell.patch' -> `./gnu/packages/patches/ratpoison-shell.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xplanet-1.3.1-libimage_gif.c.patch' -> `./gnu/packages/patches/xplanet-1.3.1-libimage_gif.c.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-CVE-2014-9636.patch' -> `./gnu/packages/patches/unzip-CVE-2014-9636.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-pyfakefs-remove-bad-test.patch' -> `./gnu/packages/patches/python-pyfakefs-remove-bad-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gzdoom-search-in-installed-share.patch' -> `./gnu/packages/patches/gzdoom-search-in-installed-share.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ecl-16-libffi.patch' -> `./gnu/packages/patches/ecl-16-libffi.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/meson-allow-dirs-outside-of-prefix.patch' -> `./gnu/packages/patches/meson-allow-dirs-outside-of-prefix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/blender-2.79-gcc9.patch' -> `./gnu/packages/patches/blender-2.79-gcc9.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libcanberra-sound-theme-freedesktop.patch' -> `./gnu/packages/patches/libcanberra-sound-theme-freedesktop.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/vinagre-newer-freerdp.patch' -> `./gnu/packages/patches/vinagre-newer-freerdp.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clang-runtime-3.9-libsanitizer-mode-field.patch' -> `./gnu/packages/patches/clang-runtime-3.9-libsanitizer-mode-field.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/qemu-build-info-manual.patch' -> `./gnu/packages/patches/qemu-build-info-manual.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/perl-module-pluggable-search.patch' -> `./gnu/packages/patches/perl-module-pluggable-search.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-6-fix-isl-includes.patch' -> `./gnu/packages/patches/gcc-6-fix-isl-includes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rocm-opencl-runtime-4.3-noopencl.patch' -> `./gnu/packages/patches/rocm-opencl-runtime-4.3-noopencl.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/nsis-source-date-epoch.patch' -> `./gnu/packages/patches/nsis-source-date-epoch.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gtk2-fix-builder-test.patch' -> `./gnu/packages/patches/gtk2-fix-builder-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xf86-video-ark-remove-mibstore.patch' -> `./gnu/packages/patches/xf86-video-ark-remove-mibstore.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xf86-video-qxl-fix-build.patch' -> `./gnu/packages/patches/xf86-video-qxl-fix-build.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/fuse-overlapping-headers.patch' -> `./gnu/packages/patches/fuse-overlapping-headers.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-werkzeug-tests.patch' -> `./gnu/packages/patches/python-werkzeug-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/qemu-glibc-2.27.patch' -> `./gnu/packages/patches/qemu-glibc-2.27.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/elixir-path-length.patch' -> `./gnu/packages/patches/elixir-path-length.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/autotrace-glib-compat.patch' -> `./gnu/packages/patches/autotrace-glib-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/awesome-4.3-fno-common.patch' -> `./gnu/packages/patches/awesome-4.3-fno-common.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/perl-reproducible-build-date.patch' -> `./gnu/packages/patches/perl-reproducible-build-date.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/u-boot-sifive-prevent-reloc-initrd-fdt.patch' -> `./gnu/packages/patches/u-boot-sifive-prevent-reloc-initrd-fdt.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mpg321-gcc-10.patch' -> `./gnu/packages/patches/mpg321-gcc-10.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/snappy-add-O2-flag-in-CmakeLists.txt.patch' -> `./gnu/packages/patches/snappy-add-O2-flag-in-CmakeLists.txt.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libgit2-mtime-0.patch' -> `./gnu/packages/patches/libgit2-mtime-0.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/minetest-add-MINETEST_MOD_PATH.patch' -> `./gnu/packages/patches/minetest-add-MINETEST_MOD_PATH.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kiki-portability-64bit.patch' -> `./gnu/packages/patches/kiki-portability-64bit.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libotr-test-auth-fix.patch' -> `./gnu/packages/patches/libotr-test-auth-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-5.0-libvtv-runpath.patch' -> `./gnu/packages/patches/gcc-5.0-libvtv-runpath.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-2.7-search-paths.patch' -> `./gnu/packages/patches/python-2.7-search-paths.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sqlite-hurd.patch' -> `./gnu/packages/patches/sqlite-hurd.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/nettle-3.5-check-_pkcs1_sec_decrypt-msg-len.patch' -> `./gnu/packages/patches/nettle-3.5-check-_pkcs1_sec_decrypt-msg-len.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-2.7-CVE-2021-3177.patch' -> `./gnu/packages/patches/python-2.7-CVE-2021-3177.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xsane-tighten-default-umask.patch' -> `./gnu/packages/patches/xsane-tighten-default-umask.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/openjdk-10-idlj-reproducibility.patch' -> `./gnu/packages/patches/openjdk-10-idlj-reproducibility.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/cmake-curl-certificates.patch' -> `./gnu/packages/patches/cmake-curl-certificates.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gdm-default-session.patch' -> `./gnu/packages/patches/gdm-default-session.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rnp-unbundle-googletest.patch' -> `./gnu/packages/patches/rnp-unbundle-googletest.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gd-brect-bounds.patch' -> `./gnu/packages/patches/gd-brect-bounds.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glib-networking-32-bit-time.patch' -> `./gnu/packages/patches/glib-networking-32-bit-time.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-cross-objdump.patch' -> `./gnu/packages/patches/glibc-cross-objdump.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/audiofile-fix-sign-conversion.patch' -> `./gnu/packages/patches/audiofile-fix-sign-conversion.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pinball-system-ltdl.patch' -> `./gnu/packages/patches/pinball-system-ltdl.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-supported-locales.patch' -> `./gnu/packages/patches/glibc-supported-locales.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/quickswitch-fix-dmenu-check.patch' -> `./gnu/packages/patches/quickswitch-fix-dmenu-check.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/qemu-glibc-2.30.patch' -> `./gnu/packages/patches/qemu-glibc-2.30.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/onnx-use-system-googletest.patch' -> `./gnu/packages/patches/onnx-use-system-googletest.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kdbusaddons-kinit-file-name.patch' -> `./gnu/packages/patches/kdbusaddons-kinit-file-name.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/date-output-pkg-config-files.patch' -> `./gnu/packages/patches/date-output-pkg-config-files.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/freedink-engine-fix-sdl-hints.patch' -> `./gnu/packages/patches/freedink-engine-fix-sdl-hints.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/owncloud-disable-updatecheck.patch' -> `./gnu/packages/patches/owncloud-disable-updatecheck.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xplanet-1.3.1-libdisplay_DisplayOutput.cpp.patch' -> `./gnu/packages/patches/xplanet-1.3.1-libdisplay_DisplayOutput.cpp.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/elm-compiler-disable-reactor.patch' -> `./gnu/packages/patches/elm-compiler-disable-reactor.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ocaml-bitstring-fix-configure.patch' -> `./gnu/packages/patches/ocaml-bitstring-fix-configure.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mozjs38-version-detection.patch' -> `./gnu/packages/patches/mozjs38-version-detection.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/imagemagick-CVE-2020-27829.patch' -> `./gnu/packages/patches/imagemagick-CVE-2020-27829.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gtk3-respect-GUIX_GTK3_IM_MODULE_FILE.patch' -> `./gnu/packages/patches/gtk3-respect-GUIX_GTK3_IM_MODULE_FILE.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clamav-system-tomsfastmath.patch' -> `./gnu/packages/patches/clamav-system-tomsfastmath.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libcyaml-libyaml-compat.patch' -> `./gnu/packages/patches/libcyaml-libyaml-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/wicd-wpa2-ttls.patch' -> `./gnu/packages/patches/wicd-wpa2-ttls.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-5-hurd.patch' -> `./gnu/packages/patches/gcc-5-hurd.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/avahi-localstatedir.patch' -> `./gnu/packages/patches/avahi-localstatedir.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clang-8.0-libc-search-path.patch' -> `./gnu/packages/patches/clang-8.0-libc-search-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/procmail-CVE-2014-3618.patch' -> `./gnu/packages/patches/procmail-CVE-2014-3618.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-chai-drop-python2.patch' -> `./gnu/packages/patches/python-chai-drop-python2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/qtwebkit-fix-building-with-python-3.9.patch' -> `./gnu/packages/patches/qtwebkit-fix-building-with-python-3.9.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/curl-use-ssl-cert-env.patch' -> `./gnu/packages/patches/curl-use-ssl-cert-env.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-case-insensitive.patch' -> `./gnu/packages/patches/unzip-case-insensitive.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/cabal-install-ghc8.10.patch' -> `./gnu/packages/patches/cabal-install-ghc8.10.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-pygpgme-fix-pinentry-tests.patch' -> `./gnu/packages/patches/python-pygpgme-fix-pinentry-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/idris-disable-test.patch' -> `./gnu/packages/patches/idris-disable-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kodi-increase-test-timeout.patch' -> `./gnu/packages/patches/kodi-increase-test-timeout.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/docbook-xsl-nonrecursive-string-subst.patch' -> `./gnu/packages/patches/docbook-xsl-nonrecursive-string-subst.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/librime-fix-build-with-gcc10.patch' -> `./gnu/packages/patches/librime-fix-build-with-gcc10.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/patchutils-test-perms.patch' -> `./gnu/packages/patches/patchutils-test-perms.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-libxml2-utf8.patch' -> `./gnu/packages/patches/python-libxml2-utf8.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-7-libsanitizer-mode-size.patch' -> `./gnu/packages/patches/gcc-7-libsanitizer-mode-size.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tlf-support-hamlib-4.2+.patch' -> `./gnu/packages/patches/tlf-support-hamlib-4.2+.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/nvi-dbpagesize-binpower.patch' -> `./gnu/packages/patches/nvi-dbpagesize-binpower.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lsof-fatal-test-failures.patch' -> `./gnu/packages/patches/lsof-fatal-test-failures.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xygrib-fix-finding-data.patch' -> `./gnu/packages/patches/xygrib-fix-finding-data.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-asan-missing-include.patch' -> `./gnu/packages/patches/gcc-asan-missing-include.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/webkitgtk-bind-all-fonts.patch' -> `./gnu/packages/patches/webkitgtk-bind-all-fonts.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/texinfo-5-perl-compat.patch' -> `./gnu/packages/patches/texinfo-5-perl-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/calibre-remove-test-unrar.patch' -> `./gnu/packages/patches/calibre-remove-test-unrar.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-2.2-skip-oom-test.patch' -> `./gnu/packages/patches/guile-2.2-skip-oom-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/elm-compiler-fix-map-key.patch' -> `./gnu/packages/patches/elm-compiler-fix-map-key.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/slim-login.patch' -> `./gnu/packages/patches/slim-login.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ungoogled-chromium-ffmpeg-compat.patch' -> `./gnu/packages/patches/ungoogled-chromium-ffmpeg-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/scalapack-gcc-10-compilation.patch' -> `./gnu/packages/patches/scalapack-gcc-10-compilation.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/chmlib-inttypes.patch' -> `./gnu/packages/patches/chmlib-inttypes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/polkit-configure-elogind.patch' -> `./gnu/packages/patches/polkit-configure-elogind.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/cpuinfo-system-libraries.patch' -> `./gnu/packages/patches/cpuinfo-system-libraries.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/fasthenry-spAllocate.patch' -> `./gnu/packages/patches/fasthenry-spAllocate.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/akonadi-timestamps.patch' -> `./gnu/packages/patches/akonadi-timestamps.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sendgmail-accept-ignored-gsuite-flag.patch' -> `./gnu/packages/patches/sendgmail-accept-ignored-gsuite-flag.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/debops-constants-for-external-program-names.patch' -> `./gnu/packages/patches/debops-constants-for-external-program-names.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ghostscript-no-header-id.patch' -> `./gnu/packages/patches/ghostscript-no-header-id.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/blender-2.79-newer-ffmpeg.patch' -> `./gnu/packages/patches/blender-2.79-newer-ffmpeg.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unknown-horizons-python-3.8-distro.patch' -> `./gnu/packages/patches/unknown-horizons-python-3.8-distro.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-2.31-hurd-clock_gettime_monotonic.patch' -> `./gnu/packages/patches/glibc-2.31-hurd-clock_gettime_monotonic.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/telegram-purple-adjust-test.patch' -> `./gnu/packages/patches/telegram-purple-adjust-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-seaborn-kde-test.patch' -> `./gnu/packages/patches/python-seaborn-kde-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/4store-unset-preprocessor-directive.patch' -> `./gnu/packages/patches/4store-unset-preprocessor-directive.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gromacs-tinyxml2.patch' -> `./gnu/packages/patches/gromacs-tinyxml2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/extundelete-e2fsprogs-1.44.patch' -> `./gnu/packages/patches/extundelete-e2fsprogs-1.44.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pjproject-correct-the-cflags-field.patch' -> `./gnu/packages/patches/pjproject-correct-the-cflags-field.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/nfs4-acl-tools-0.3.7-fixpaths.patch' -> `./gnu/packages/patches/nfs4-acl-tools-0.3.7-fixpaths.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xsane-fix-snprintf-buffer-length.patch' -> `./gnu/packages/patches/xsane-fix-snprintf-buffer-length.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/audacity-build-with-system-portaudio.patch' -> `./gnu/packages/patches/audacity-build-with-system-portaudio.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/docbook-xsl-support-old-url.patch' -> `./gnu/packages/patches/docbook-xsl-support-old-url.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/cl-asdf-config-directories.patch' -> `./gnu/packages/patches/cl-asdf-config-directories.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/symmetrica-int32.patch' -> `./gnu/packages/patches/symmetrica-int32.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-9-strmov-store-file-names.patch' -> `./gnu/packages/patches/gcc-9-strmov-store-file-names.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gdb-fix-gnu-nat-build.patch' -> `./gnu/packages/patches/gdb-fix-gnu-nat-build.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mixxx-system-googletest-benchmark.patch' -> `./gnu/packages/patches/mixxx-system-googletest-benchmark.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mumps-shared-libseq.patch' -> `./gnu/packages/patches/mumps-shared-libseq.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/enlightenment-fix-setuid-path.patch' -> `./gnu/packages/patches/enlightenment-fix-setuid-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/qtwebkit-fix-building-with-glib-2.68.patch' -> `./gnu/packages/patches/qtwebkit-fix-building-with-glib-2.68.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xf86-video-savage-xorg-compat.patch' -> `./gnu/packages/patches/xf86-video-savage-xorg-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/iputils-libcap-compat.patch' -> `./gnu/packages/patches/iputils-libcap-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-mox3-python3.6-compat.patch' -> `./gnu/packages/patches/python-mox3-python3.6-compat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/icecat-use-system-media-libs.patch' -> `./gnu/packages/patches/icecat-use-system-media-libs.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glade-gls-set-script-name.patch' -> `./gnu/packages/patches/glade-gls-set-script-name.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-6-fix-buffer-size.patch' -> `./gnu/packages/patches/gcc-6-fix-buffer-size.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/exercism-disable-self-update.patch' -> `./gnu/packages/patches/exercism-disable-self-update.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/kpackage-fix-KF5PackageMacros.cmake.patch' -> `./gnu/packages/patches/kpackage-fix-KF5PackageMacros.cmake.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/nvi-db4.patch' -> `./gnu/packages/patches/nvi-db4.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/aegis-test-fixup-1.patch' -> `./gnu/packages/patches/aegis-test-fixup-1.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/wicd-bitrate-none-fix.patch' -> `./gnu/packages/patches/wicd-bitrate-none-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ganeti-shepherd-support.patch' -> `./gnu/packages/patches/ganeti-shepherd-support.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libcroco-CVE-2020-12825.patch' -> `./gnu/packages/patches/libcroco-CVE-2020-12825.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/tup-unbundle-dependencies.patch' -> `./gnu/packages/patches/tup-unbundle-dependencies.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libmp4v2-c++11.patch' -> `./gnu/packages/patches/libmp4v2-c++11.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/java-xerces-xjavac_taskdef.patch' -> `./gnu/packages/patches/java-xerces-xjavac_taskdef.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/u-boot-riscv64-fix-extlinux.patch' -> `./gnu/packages/patches/u-boot-riscv64-fix-extlinux.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libxslt-generated-ids.patch' -> `./gnu/packages/patches/libxslt-generated-ids.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/a2ps-CVE-2014-0466.patch' -> `./gnu/packages/patches/a2ps-CVE-2014-0466.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ceph-disable-cpu-optimizations.patch' -> `./gnu/packages/patches/ceph-disable-cpu-optimizations.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gcc-10-cross-environment-variables.patch' -> `./gnu/packages/patches/gcc-10-cross-environment-variables.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libgeotiff-adapt-test-script-for-proj-6.2.patch' -> `./gnu/packages/patches/libgeotiff-adapt-test-script-for-proj-6.2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bsd-games-null-check.patch' -> `./gnu/packages/patches/bsd-games-null-check.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/cursynth-wave-rand.patch' -> `./gnu/packages/patches/cursynth-wave-rand.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sbcl-clml-fix-types.patch' -> `./gnu/packages/patches/sbcl-clml-fix-types.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gnutls-cross.patch' -> `./gnu/packages/patches/gnutls-cross.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/emacs-fix-scheme-indent-function.patch' -> `./gnu/packages/patches/emacs-fix-scheme-indent-function.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glib-appinfo-watch.patch' -> `./gnu/packages/patches/glib-appinfo-watch.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/docker-fix-tests.patch' -> `./gnu/packages/patches/docker-fix-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/psm-repro.patch' -> `./gnu/packages/patches/psm-repro.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/qtwebkit-fix-building-with-icu-68.patch' -> `./gnu/packages/patches/qtwebkit-fix-building-with-icu-68.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/p11-kit-hurd.patch' -> `./gnu/packages/patches/p11-kit-hurd.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/julia-allow-parallel-build.patch' -> `./gnu/packages/patches/julia-allow-parallel-build.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ocaml-multiple-definitions.patch' -> `./gnu/packages/patches/ocaml-multiple-definitions.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ratpoints-sturm_and_rp_private.patch' -> `./gnu/packages/patches/ratpoints-sturm_and_rp_private.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-bootstrap-system.patch' -> `./gnu/packages/patches/glibc-bootstrap-system.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libgnome-encoding.patch' -> `./gnu/packages/patches/libgnome-encoding.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/unzip-overflow.patch' -> `./gnu/packages/patches/unzip-overflow.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/t1lib-CVE-2011-0764.patch' -> `./gnu/packages/patches/t1lib-CVE-2011-0764.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/zig-use-system-paths.patch' -> `./gnu/packages/patches/zig-use-system-paths.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/http-parser-CVE-2020-8287.patch' -> `./gnu/packages/patches/http-parser-CVE-2020-8287.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libgnomeui-utf8.patch' -> `./gnu/packages/patches/libgnomeui-utf8.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gnutls-guile-eintr-eagain.patch' -> `./gnu/packages/patches/gnutls-guile-eintr-eagain.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/util-linux-tests.patch' -> `./gnu/packages/patches/util-linux-tests.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/lrcalc-includes.patch' -> `./gnu/packages/patches/lrcalc-includes.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/bsd-games-gamescreen.h.patch' -> `./gnu/packages/patches/bsd-games-gamescreen.h.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ganeti-disable-version-symlinks.patch' -> `./gnu/packages/patches/ganeti-disable-version-symlinks.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/xsane-fix-memory-leak.patch' -> `./gnu/packages/patches/xsane-fix-memory-leak.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gtk2-respect-GUIX_GTK2_PATH.patch' -> `./gnu/packages/patches/gtk2-respect-GUIX_GTK2_PATH.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/rpcbind-CVE-2017-8779.patch' -> `./gnu/packages/patches/rpcbind-CVE-2017-8779.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/audiofile-Fail-on-error-in-parseFormat.patch' -> `./gnu/packages/patches/audiofile-Fail-on-error-in-parseFormat.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/combinatorial-blas-awpm.patch' -> `./gnu/packages/patches/combinatorial-blas-awpm.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clang-10.0-libc-search-path.patch' -> `./gnu/packages/patches/clang-10.0-libc-search-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/gmp-faulty-test.patch' -> `./gnu/packages/patches/gmp-faulty-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/grocsvs-dont-use-admiral.patch' -> `./gnu/packages/patches/grocsvs-dont-use-admiral.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/suitesparse-mongoose-cmake.patch' -> `./gnu/packages/patches/suitesparse-mongoose-cmake.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/pitivi-fix-build-with-meson-0.60.patch' -> `./gnu/packages/patches/pitivi-fix-build-with-meson-0.60.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-poppler-qt5-fix-build.patch' -> `./gnu/packages/patches/python-poppler-qt5-fix-build.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-cross-objcopy.patch' -> `./gnu/packages/patches/glibc-cross-objcopy.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-2.2-skip-so-test.patch' -> `./gnu/packages/patches/guile-2.2-skip-so-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-ssh-read-error.patch' -> `./gnu/packages/patches/guile-ssh-read-error.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/ghc-testsuite-dlopen-pie.patch' -> `./gnu/packages/patches/ghc-testsuite-dlopen-pie.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/coda-use-system-libs.patch' -> `./gnu/packages/patches/coda-use-system-libs.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/texi2html-i18n.patch' -> `./gnu/packages/patches/texi2html-i18n.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/coq-fix-envvars.patch' -> `./gnu/packages/patches/coq-fix-envvars.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mathjax-no-a11y.patch' -> `./gnu/packages/patches/mathjax-no-a11y.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/hdf4-architectures.patch' -> `./gnu/packages/patches/hdf4-architectures.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/beignet-correct-file-names.patch' -> `./gnu/packages/patches/beignet-correct-file-names.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/clang-9.0-libc-search-path.patch' -> `./gnu/packages/patches/clang-9.0-libc-search-path.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/valgrind-enable-arm.patch' -> `./gnu/packages/patches/valgrind-enable-arm.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/linux-libre-support-for-Pinebook-Pro.patch' -> `./gnu/packages/patches/linux-libre-support-for-Pinebook-Pro.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/smalltalk-multiplication-overflow.patch' -> `./gnu/packages/patches/smalltalk-multiplication-overflow.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/polkit-use-duktape.patch' -> `./gnu/packages/patches/polkit-use-duktape.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/sdl-pango-matrix_declarations.patch' -> `./gnu/packages/patches/sdl-pango-matrix_declarations.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/mcrypt-CVE-2012-4527.patch' -> `./gnu/packages/patches/mcrypt-CVE-2012-4527.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-memcached-syntax-warnings.patch' -> `./gnu/packages/patches/python-memcached-syntax-warnings.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/libofa-ftbfs-2.diff' -> `./gnu/packages/patches/libofa-ftbfs-2.diff' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/hurd-cross.patch' -> `./gnu/packages/patches/hurd-cross.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/emacs-libgit-use-system-libgit2.patch' -> `./gnu/packages/patches/emacs-libgit-use-system-libgit2.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/binutils-mingw-w64-deterministic.patch' -> `./gnu/packages/patches/binutils-mingw-w64-deterministic.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/psm-ldflags.patch' -> `./gnu/packages/patches/psm-ldflags.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/go-github-com-golang-snappy-32bit-test.patch' -> `./gnu/packages/patches/go-github-com-golang-snappy-32bit-test.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/freeimage-unbundle.patch' -> `./gnu/packages/patches/freeimage-unbundle.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/guile-3.0-linux-syscalls.patch' -> `./gnu/packages/patches/guile-3.0-linux-syscalls.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/openssh-hurd.patch' -> `./gnu/packages/patches/openssh-hurd.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/glibc-allow-kernel-2.6.32.patch' -> `./gnu/packages/patches/glibc-allow-kernel-2.6.32.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/python-robotframework-source-date-epoch.patch' -> `./gnu/packages/patches/python-robotframework-source-date-epoch.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/packages/patches/blender-2.79-python-3.8-fix.patch' -> `./gnu/packages/patches/blender-2.79-python-3.8-fix.patch' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/home/services.scm' -> `./gnu/home/services.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/home/services/mcron.scm' -> `./gnu/home/services/mcron.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/home/services/fontutils.scm' -> `./gnu/home/services/fontutils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/home/services/shells.scm' -> `./gnu/home/services/shells.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/home/services/utils.scm' -> `./gnu/home/services/utils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/home/services/xdg.scm' -> `./gnu/home/services/xdg.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/home/services/symlink-manager.scm' -> `./gnu/home/services/symlink-manager.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/home/services/shepherd.scm' -> `./gnu/home/services/shepherd.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/monitoring.scm' -> `./gnu/services/monitoring.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/messaging.scm' -> `./gnu/services/messaging.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/mcron.scm' -> `./gnu/services/mcron.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/admin.scm' -> `./gnu/services/admin.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/ssh.scm' -> `./gnu/services/ssh.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/docker.scm' -> `./gnu/services/docker.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/authentication.scm' -> `./gnu/services/authentication.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/web.scm' -> `./gnu/services/web.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/virtualization.scm' -> `./gnu/services/virtualization.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/vpn.scm' -> `./gnu/services/vpn.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/sddm.scm' -> `./gnu/services/sddm.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/nfs.scm' -> `./gnu/services/nfs.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/guix.scm' -> `./gnu/services/guix.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/auditd.scm' -> `./gnu/services/auditd.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/xorg.scm' -> `./gnu/services/xorg.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/base.scm' -> `./gnu/services/base.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/configuration.scm' -> `./gnu/services/configuration.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/dbus.scm' -> `./gnu/services/dbus.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/linux.scm' -> `./gnu/services/linux.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/pm.scm' -> `./gnu/services/pm.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/kerberos.scm' -> `./gnu/services/kerberos.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/getmail.scm' -> `./gnu/services/getmail.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/rsync.scm' -> `./gnu/services/rsync.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/version-control.scm' -> `./gnu/services/version-control.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/telephony.scm' -> `./gnu/services/telephony.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/avahi.scm' -> `./gnu/services/avahi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/sysctl.scm' -> `./gnu/services/sysctl.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/cuirass.scm' -> `./gnu/services/cuirass.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/science.scm' -> `./gnu/services/science.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/hurd.scm' -> `./gnu/services/hurd.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/sound.scm' -> `./gnu/services/sound.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/mail.scm' -> `./gnu/services/mail.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/file-sharing.scm' -> `./gnu/services/file-sharing.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/databases.scm' -> `./gnu/services/databases.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/cgit.scm' -> `./gnu/services/cgit.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/ganeti.scm' -> `./gnu/services/ganeti.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/cups.scm' -> `./gnu/services/cups.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/pam-mount.scm' -> `./gnu/services/pam-mount.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/syncthing.scm' -> `./gnu/services/syncthing.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/games.scm' -> `./gnu/services/games.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/certbot.scm' -> `./gnu/services/certbot.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/lirc.scm' -> `./gnu/services/lirc.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/herd.scm' -> `./gnu/services/herd.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/ci.scm' -> `./gnu/services/ci.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/desktop.scm' -> `./gnu/services/desktop.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/networking.scm' -> `./gnu/services/networking.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/dict.scm' -> `./gnu/services/dict.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/nix.scm' -> `./gnu/services/nix.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/dns.scm' -> `./gnu/services/dns.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/audio.scm' -> `./gnu/services/audio.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/shepherd.scm' -> `./gnu/services/shepherd.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/security-token.scm' -> `./gnu/services/security-token.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/gnu/services/spice.scm' -> `./gnu/services/spice.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/base32.scm' -> `./guix/base32.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/workers.scm' -> `./guix/workers.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/profiling.scm' -> `./guix/profiling.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/colors.scm' -> `./guix/colors.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/android-repo-download.scm' -> `./guix/android-repo-download.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/ssh.scm' -> `./guix/ssh.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/docker.scm' -> `./guix/docker.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/substitutes.scm' -> `./guix/substitutes.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/base16.scm' -> `./guix/base16.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/inferior.scm' -> `./guix/inferior.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/records.scm' -> `./guix/records.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/hg-download.scm' -> `./guix/hg-download.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/combinators.scm' -> `./guix/combinators.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/repl.scm' -> `./guix/repl.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/gnupg.scm' -> `./guix/gnupg.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/download.scm' -> `./guix/download.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/http-client.scm' -> `./guix/http-client.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/cache.scm' -> `./guix/cache.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/derivations.scm' -> `./guix/derivations.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/progress.scm' -> `./guix/progress.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/transformations.scm' -> `./guix/transformations.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/licenses.scm' -> `./guix/licenses.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/elf.scm' -> `./guix/elf.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/ipfs.scm' -> `./guix/ipfs.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/config.scm.in' -> `./guix/config.scm.in' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/monads.scm' -> `./guix/monads.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/narinfo.scm' -> `./guix/narinfo.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/quirks.scm' -> `./guix/quirks.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/describe.scm' -> `./guix/describe.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/upstream.scm' -> `./guix/upstream.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/gnu-maintenance.scm' -> `./guix/gnu-maintenance.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/deprecation.scm' -> `./guix/deprecation.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/git-authenticate.scm' -> `./guix/git-authenticate.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts.scm' -> `./guix/scripts.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/diagnostics.scm' -> `./guix/diagnostics.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/bzr-download.scm' -> `./guix/bzr-download.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/monad-repl.scm' -> `./guix/monad-repl.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/self.scm' -> `./guix/self.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/lint.scm' -> `./guix/lint.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/git-download.scm' -> `./guix/git-download.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/d3.v3.js' -> `./guix/d3.v3.js' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/openpgp.scm' -> `./guix/openpgp.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/sets.scm' -> `./guix/sets.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/extracting-download.scm' -> `./guix/extracting-download.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/avahi.scm' -> `./guix/avahi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/swh.scm' -> `./guix/swh.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/utils.scm' -> `./guix/utils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/graph.scm' -> `./guix/graph.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/remote.scm' -> `./guix/remote.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/glob.scm' -> `./guix/glob.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/base64.scm' -> `./guix/base64.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/nar.scm' -> `./guix/nar.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/cpio.scm' -> `./guix/cpio.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/modules.scm' -> `./guix/modules.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/cvs-download.scm' -> `./guix/cvs-download.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/pki.scm' -> `./guix/pki.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/grafts.scm' -> `./guix/grafts.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/memoization.scm' -> `./guix/memoization.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/i18n.scm' -> `./guix/i18n.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/serialization.scm' -> `./guix/serialization.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/packages.scm' -> `./guix/packages.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/ui.scm' -> `./guix/ui.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/ftp-client.scm' -> `./guix/ftp-client.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/search-paths.scm' -> `./guix/search-paths.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/status.scm' -> `./guix/status.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/tests.scm' -> `./guix/tests.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/graph.js' -> `./guix/graph.js' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/channels.scm' -> `./guix/channels.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/ci.scm' -> `./guix/ci.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system.scm' -> `./guix/build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/discovery.scm' -> `./guix/discovery.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/profiles.scm' -> `./guix/profiles.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/store.scm' -> `./guix/store.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/svn-download.scm' -> `./guix/svn-download.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/gexp.scm' -> `./guix/gexp.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/man-db.scm' -> `./guix/man-db.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/cve.scm' -> `./guix/cve.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/git.scm' -> `./guix/git.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/tests/gnupg.scm' -> `./guix/tests/gnupg.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/tests/http.scm' -> `./guix/tests/http.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/tests/git.scm' -> `./guix/tests/git.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/glib-or-gtk.scm' -> `./guix/build-system/glib-or-gtk.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/julia.scm' -> `./guix/build-system/julia.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/ruby.scm' -> `./guix/build-system/ruby.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/font.scm' -> `./guix/build-system/font.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/go.scm' -> `./guix/build-system/go.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/maven.scm' -> `./guix/build-system/maven.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/rakudo.scm' -> `./guix/build-system/rakudo.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/gnu.scm' -> `./guix/build-system/gnu.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/ant.scm' -> `./guix/build-system/ant.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/android-ndk.scm' -> `./guix/build-system/android-ndk.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/chicken.scm' -> `./guix/build-system/chicken.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/minetest.scm' -> `./guix/build-system/minetest.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/minify.scm' -> `./guix/build-system/minify.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/ocaml.scm' -> `./guix/build-system/ocaml.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/guile.scm' -> `./guix/build-system/guile.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/perl.scm' -> `./guix/build-system/perl.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/copy.scm' -> `./guix/build-system/copy.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/meson.scm' -> `./guix/build-system/meson.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/dub.scm' -> `./guix/build-system/dub.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/qt.scm' -> `./guix/build-system/qt.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/renpy.scm' -> `./guix/build-system/renpy.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/asdf.scm' -> `./guix/build-system/asdf.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/scons.scm' -> `./guix/build-system/scons.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/clojure.scm' -> `./guix/build-system/clojure.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/node.scm' -> `./guix/build-system/node.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/linux-module.scm' -> `./guix/build-system/linux-module.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/texlive.scm' -> `./guix/build-system/texlive.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/haskell.scm' -> `./guix/build-system/haskell.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/trivial.scm' -> `./guix/build-system/trivial.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/python.scm' -> `./guix/build-system/python.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/dune.scm' -> `./guix/build-system/dune.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/waf.scm' -> `./guix/build-system/waf.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/emacs.scm' -> `./guix/build-system/emacs.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/r.scm' -> `./guix/build-system/r.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/cargo.scm' -> `./guix/build-system/cargo.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build-system/cmake.scm' -> `./guix/build-system/cmake.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/go-build-system.scm' -> `./guix/build/go-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/dub-build-system.scm' -> `./guix/build/dub-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/haskell-build-system.scm' -> `./guix/build/haskell-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/make-bootstrap.scm' -> `./guix/build/make-bootstrap.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/bzr.scm' -> `./guix/build/bzr.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/chicken-build-system.scm' -> `./guix/build/chicken-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/clojure-utils.scm' -> `./guix/build/clojure-utils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/scons-build-system.scm' -> `./guix/build/scons-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/node-build-system.scm' -> `./guix/build/node-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/maven-build-system.scm' -> `./guix/build/maven-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/syscalls.scm' -> `./guix/build/syscalls.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/po.scm' -> `./guix/build/po.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/emacs-build-system.scm' -> `./guix/build/emacs-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/download.scm' -> `./guix/build/download.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/emacs-utils.scm' -> `./guix/build/emacs-utils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/clojure-build-system.scm' -> `./guix/build/clojure-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/gnu-dist.scm' -> `./guix/build/gnu-dist.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/r-build-system.scm' -> `./guix/build/r-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/waf-build-system.scm' -> `./guix/build/waf-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/download-nar.scm' -> `./guix/build/download-nar.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/rakudo-build-system.scm' -> `./guix/build/rakudo-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/texlive-build-system.scm' -> `./guix/build/texlive-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/meson-build-system.scm' -> `./guix/build/meson-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/svn.scm' -> `./guix/build/svn.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/java-utils.scm' -> `./guix/build/java-utils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/cargo-build-system.scm' -> `./guix/build/cargo-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/ocaml-build-system.scm' -> `./guix/build/ocaml-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/gnu-bootstrap.scm' -> `./guix/build/gnu-bootstrap.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/cmake-build-system.scm' -> `./guix/build/cmake-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/perl-build-system.scm' -> `./guix/build/perl-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/gnu-build-system.scm' -> `./guix/build/gnu-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/bournish.scm' -> `./guix/build/bournish.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/glib-or-gtk-build-system.scm' -> `./guix/build/glib-or-gtk-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/lisp-utils.scm' -> `./guix/build/lisp-utils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/qt-utils.scm' -> `./guix/build/qt-utils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/cargo-utils.scm' -> `./guix/build/cargo-utils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/minetest-build-system.scm' -> `./guix/build/minetest-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/asdf-build-system.scm' -> `./guix/build/asdf-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/compile.scm' -> `./guix/build/compile.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/dune-build-system.scm' -> `./guix/build/dune-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/utils.scm' -> `./guix/build/utils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/debug-link.scm' -> `./guix/build/debug-link.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/julia-build-system.scm' -> `./guix/build/julia-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/hg.scm' -> `./guix/build/hg.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/android-ndk-build-system.scm' -> `./guix/build/android-ndk-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/union.scm' -> `./guix/build/union.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/gremlin.scm' -> `./guix/build/gremlin.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/ant-build-system.scm' -> `./guix/build/ant-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/ruby-build-system.scm' -> `./guix/build/ruby-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/meson-configuration.scm' -> `./guix/build/meson-configuration.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/android-repo.scm' -> `./guix/build/android-repo.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/json.scm' -> `./guix/build/json.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/renpy-build-system.scm' -> `./guix/build/renpy-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/linux-module-build-system.scm' -> `./guix/build/linux-module-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/guile-build-system.scm' -> `./guix/build/guile-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/qt-build-system.scm' -> `./guix/build/qt-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/store-copy.scm' -> `./guix/build/store-copy.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/profiles.scm' -> `./guix/build/profiles.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/cvs.scm' -> `./guix/build/cvs.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/copy-build-system.scm' -> `./guix/build/copy-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/minify-build-system.scm' -> `./guix/build/minify-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/font-build-system.scm' -> `./guix/build/font-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/python-build-system.scm' -> `./guix/build/python-build-system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/pack.scm' -> `./guix/build/pack.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/graft.scm' -> `./guix/build/graft.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/git.scm' -> `./guix/build/git.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/maven/plugin.scm' -> `./guix/build/maven/plugin.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/maven/pom.scm' -> `./guix/build/maven/pom.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/build/maven/java.scm' -> `./guix/build/maven/java.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/store/ssh.scm' -> `./guix/store/ssh.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/store/database.scm' -> `./guix/store/database.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/store/roots.scm' -> `./guix/store/roots.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/store/schema.sql' -> `./guix/store/schema.sql' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/store/deduplication.scm' -> `./guix/store/deduplication.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/build.scm' -> `./guix/scripts/build.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/gc.scm' -> `./guix/scripts/gc.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/shell.scm' -> `./guix/scripts/shell.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/edit.scm' -> `./guix/scripts/edit.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/upgrade.scm' -> `./guix/scripts/upgrade.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/install.scm' -> `./guix/scripts/install.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/home.scm' -> `./guix/scripts/home.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/import.scm' -> `./guix/scripts/import.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/archive.scm' -> `./guix/scripts/archive.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/repl.scm' -> `./guix/scripts/repl.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/download.scm' -> `./guix/scripts/download.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/show.scm' -> `./guix/scripts/show.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/processes.scm' -> `./guix/scripts/processes.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/discover.scm' -> `./guix/scripts/discover.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/refresh.scm' -> `./guix/scripts/refresh.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/describe.scm' -> `./guix/scripts/describe.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/search.scm' -> `./guix/scripts/search.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/system.scm' -> `./guix/scripts/system.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/challenge.scm' -> `./guix/scripts/challenge.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/offload.scm' -> `./guix/scripts/offload.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/environment.scm' -> `./guix/scripts/environment.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/container.scm' -> `./guix/scripts/container.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/lint.scm' -> `./guix/scripts/lint.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/style.scm' -> `./guix/scripts/style.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/publish.scm' -> `./guix/scripts/publish.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/size.scm' -> `./guix/scripts/size.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/time-machine.scm' -> `./guix/scripts/time-machine.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/graph.scm' -> `./guix/scripts/graph.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/copy.scm' -> `./guix/scripts/copy.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/weather.scm' -> `./guix/scripts/weather.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/hash.scm' -> `./guix/scripts/hash.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/remove.scm' -> `./guix/scripts/remove.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/substitute.scm' -> `./guix/scripts/substitute.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/deploy.scm' -> `./guix/scripts/deploy.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/package.scm' -> `./guix/scripts/package.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/pull.scm' -> `./guix/scripts/pull.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/authenticate.scm' -> `./guix/scripts/authenticate.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/perform-download.scm' -> `./guix/scripts/perform-download.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/pack.scm' -> `./guix/scripts/pack.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/git.scm' -> `./guix/scripts/git.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/git/authenticate.scm' -> `./guix/scripts/git/authenticate.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/container/exec.scm' -> `./guix/scripts/container/exec.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/system/reconfigure.scm' -> `./guix/scripts/system/reconfigure.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/system/search.scm' -> `./guix/scripts/system/search.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/import/opam.scm' -> `./guix/scripts/import/opam.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/import/go.scm' -> `./guix/scripts/import/go.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/import/pypi.scm' -> `./guix/scripts/import/pypi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/import/gnu.scm' -> `./guix/scripts/import/gnu.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/import/egg.scm' -> `./guix/scripts/import/egg.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/import/minetest.scm' -> `./guix/scripts/import/minetest.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/import/crate.scm' -> `./guix/scripts/import/crate.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/import/hackage.scm' -> `./guix/scripts/import/hackage.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/import/stackage.scm' -> `./guix/scripts/import/stackage.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/import/cran.scm' -> `./guix/scripts/import/cran.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/import/json.scm' -> `./guix/scripts/import/json.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/import/texlive.scm' -> `./guix/scripts/import/texlive.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/import/cpan.scm' -> `./guix/scripts/import/cpan.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/import/elpa.scm' -> `./guix/scripts/import/elpa.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/import/gem.scm' -> `./guix/scripts/import/gem.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/scripts/home/import.scm' -> `./guix/scripts/home/import.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/opam.scm' -> `./guix/import/opam.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/go.scm' -> `./guix/import/go.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/pypi.scm' -> `./guix/import/pypi.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/github.scm' -> `./guix/import/github.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/gnu.scm' -> `./guix/import/gnu.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/egg.scm' -> `./guix/import/egg.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/minetest.scm' -> `./guix/import/minetest.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/crate.scm' -> `./guix/import/crate.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/hackage.scm' -> `./guix/import/hackage.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/launchpad.scm' -> `./guix/import/launchpad.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/print.scm' -> `./guix/import/print.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/stackage.scm' -> `./guix/import/stackage.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/gnome.scm' -> `./guix/import/gnome.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/utils.scm' -> `./guix/import/utils.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/cran.scm' -> `./guix/import/cran.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/kde.scm' -> `./guix/import/kde.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/json.scm' -> `./guix/import/json.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/texlive.scm' -> `./guix/import/texlive.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/cabal.scm' -> `./guix/import/cabal.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/cpan.scm' -> `./guix/import/cpan.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/elpa.scm' -> `./guix/import/elpa.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/gem.scm' -> `./guix/import/gem.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/guix/import/git.scm' -> `./guix/import/git.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/build-aux/convert-xref.scm' -> `./build-aux/convert-xref.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/build-aux/compile-as-derivation.scm' -> `./build-aux/compile-as-derivation.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/build-aux/update-guix-package.scm' -> `./build-aux/update-guix-package.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/build-aux/build-self.scm' -> `./build-aux/build-self.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/build-aux/pre-inst-env.in' -> `./build-aux/pre-inst-env.in' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/build-aux/update-NEWS.scm' -> `./build-aux/update-NEWS.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/build-aux/test-env.in' -> `./build-aux/test-env.in' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/build-aux/generate-authors.scm' -> `./build-aux/generate-authors.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/build-aux/check-channel-news.scm' -> `./build-aux/check-channel-news.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/build-aux/compile-all.scm' -> `./build-aux/compile-all.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/build-aux/check-final-inputs-self-contained.scm' -> `./build-aux/check-final-inputs-self-contained.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/build-aux/test-driver.scm' -> `./build-aux/test-driver.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/build-aux/git-version-gen' -> `./build-aux/git-version-gen' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/build-aux/gitlog-to-changelog' -> `./build-aux/gitlog-to-changelog' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/build-aux/cuirass/hurd-manifest.scm' -> `./build-aux/cuirass/hurd-manifest.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/build-aux/cuirass/evaluate.scm' -> `./build-aux/cuirass/evaluate.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/local.mk' -> `./nix/local.mk' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/AUTHORS' -> `./nix/AUTHORS' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/.gitignore' -> `./nix/.gitignore' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/COPYING' -> `./nix/COPYING' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/nix-daemon/nix-daemon.cc' -> `./nix/nix-daemon/nix-daemon.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/nix-daemon/shared.hh' -> `./nix/nix-daemon/shared.hh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/nix-daemon/guix-daemon.cc' -> `./nix/nix-daemon/guix-daemon.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/boost/throw_exception.hpp' -> `./nix/boost/throw_exception.hpp' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/boost/assert.hpp' -> `./nix/boost/assert.hpp' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/boost/format.hpp' -> `./nix/boost/format.hpp' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/boost/format/internals.hpp' -> `./nix/boost/format/internals.hpp' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/boost/format/group.hpp' -> `./nix/boost/format/group.hpp' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/boost/format/free_funcs.cc' -> `./nix/boost/format/free_funcs.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/boost/format/format_implementation.cc' -> `./nix/boost/format/format_implementation.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/boost/format/internals_fwd.hpp' -> `./nix/boost/format/internals_fwd.hpp' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/boost/format/format_class.hpp' -> `./nix/boost/format/format_class.hpp' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/boost/format/parsing.cc' -> `./nix/boost/format/parsing.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/boost/format/format_fwd.hpp' -> `./nix/boost/format/format_fwd.hpp' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/boost/format/exceptions.hpp' -> `./nix/boost/format/exceptions.hpp' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/boost/format/macros_default.hpp' -> `./nix/boost/format/macros_default.hpp' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/boost/format/feed_args.hpp' -> `./nix/boost/format/feed_args.hpp' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libutil/hash.cc' -> `./nix/libutil/hash.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libutil/hash.hh' -> `./nix/libutil/hash.hh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libutil/types.hh' -> `./nix/libutil/types.hh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libutil/archive.cc' -> `./nix/libutil/archive.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libutil/serialise.hh' -> `./nix/libutil/serialise.hh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libutil/serialise.cc' -> `./nix/libutil/serialise.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libutil/archive.hh' -> `./nix/libutil/archive.hh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libutil/affinity.hh' -> `./nix/libutil/affinity.hh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libutil/util.hh' -> `./nix/libutil/util.hh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libutil/util.cc' -> `./nix/libutil/util.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libutil/affinity.cc' -> `./nix/libutil/affinity.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/derivations.cc' -> `./nix/libstore/derivations.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/local-store.cc' -> `./nix/libstore/local-store.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/sqlite.cc' -> `./nix/libstore/sqlite.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/references.hh' -> `./nix/libstore/references.hh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/store-api.cc' -> `./nix/libstore/store-api.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/builtins.cc' -> `./nix/libstore/builtins.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/references.cc' -> `./nix/libstore/references.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/pathlocks.cc' -> `./nix/libstore/pathlocks.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/sqlite.hh' -> `./nix/libstore/sqlite.hh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/globals.hh' -> `./nix/libstore/globals.hh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/worker-protocol.hh' -> `./nix/libstore/worker-protocol.hh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/misc.hh' -> `./nix/libstore/misc.hh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/misc.cc' -> `./nix/libstore/misc.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/pathlocks.hh' -> `./nix/libstore/pathlocks.hh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/.gitignore' -> `./nix/libstore/.gitignore' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/builtins.hh' -> `./nix/libstore/builtins.hh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/derivations.hh' -> `./nix/libstore/derivations.hh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/store-api.hh' -> `./nix/libstore/store-api.hh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/optimise-store.cc' -> `./nix/libstore/optimise-store.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/globals.cc' -> `./nix/libstore/globals.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/build.cc' -> `./nix/libstore/build.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/gc.cc' -> `./nix/libstore/gc.cc' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/nix/libstore/local-store.hh' -> `./nix/libstore/local-store.hh' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/build.scm' -> `./doc/build.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/he-config-bare-bones.scm' -> `./doc/he-config-bare-bones.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/htmlxref.cnf' -> `./doc/htmlxref.cnf' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/local.mk' -> `./doc/local.mk' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/fdl-1.3.texi' -> `./doc/fdl-1.3.texi' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/package-hello.scm' -> `./doc/package-hello.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/guix.texi' -> `./doc/guix.texi' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/environment-gdb.scm' -> `./doc/environment-gdb.scm' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/package-hello.json' -> `./doc/package-hello.json' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/contributing.texi' -> `./doc/contributing.texi' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/guix-cookbook.texi' -> `./doc/guix-cookbook.texi' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/images/coreutils-size-map.png' -> `./doc/images/coreutils-size-map.png' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/images/bootstrap-graph.dot' -> `./doc/images/bootstrap-graph.dot' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/images/shepherd-graph.dot' -> `./doc/images/shepherd-graph.dot' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/images/coreutils-bag-graph.dot' -> `./doc/images/coreutils-bag-graph.dot' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/images/installer-resume.png' -> `./doc/images/installer-resume.png' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/images/installer-partitions.png' -> `./doc/images/installer-partitions.png' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/images/coreutils-graph.dot' -> `./doc/images/coreutils-graph.dot' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/images/bootstrap-packages.dot' -> `./doc/images/bootstrap-packages.dot' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/images/installer-network.png' -> `./doc/images/installer-network.png' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/images/service-graph.dot' -> `./doc/images/service-graph.dot' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/doc/images/gcc-core-mesboot0-graph.dot' -> `./doc/images/gcc-core-mesboot0-graph.dot' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/m4/guix.m4' -> `./m4/guix.m4' `/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout/scripts/guix.in' -> `./scripts/guix.in' phase `unpack' succeeded after 1.1 seconds starting phase `disable-failing-tests' phase `disable-failing-tests' succeeded after 0.0 seconds starting phase `bootstrap' patch-shebang: build-aux/git-version-gen: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' ++ find po/doc -type f -name 'guix-manual*.po' ++ sed -e 's,.*/guix-manual\.,,;s,\.po$,,' + langs='ko fa pt_BR sk de it zh_CN es fr ru' + for lang in ${langs} + '[' '!' -e doc/guix.ko.texi ']' + echo '@setfilename guix.ko.info' + echo '@include version-ko.texi' + touch po/doc/guix-manual.ko.po + for lang in ${langs} + '[' '!' -e doc/guix.fa.texi ']' + echo '@setfilename guix.fa.info' + echo '@include version-fa.texi' + touch po/doc/guix-manual.fa.po + for lang in ${langs} + '[' '!' -e doc/guix.pt_BR.texi ']' + echo '@setfilename guix.pt_BR.info' + echo '@include version-pt_BR.texi' + touch po/doc/guix-manual.pt_BR.po + for lang in ${langs} + '[' '!' -e doc/guix.sk.texi ']' + echo '@setfilename guix.sk.info' + echo '@include version-sk.texi' + touch po/doc/guix-manual.sk.po + for lang in ${langs} + '[' '!' -e doc/guix.de.texi ']' + echo '@setfilename guix.de.info' + echo '@include version-de.texi' + touch po/doc/guix-manual.de.po + for lang in ${langs} + '[' '!' -e doc/guix.it.texi ']' + echo '@setfilename guix.it.info' + echo '@include version-it.texi' + touch po/doc/guix-manual.it.po + for lang in ${langs} + '[' '!' -e doc/guix.zh_CN.texi ']' + echo '@setfilename guix.zh_CN.info' + echo '@include version-zh_CN.texi' + touch po/doc/guix-manual.zh_CN.po + for lang in ${langs} + '[' '!' -e doc/guix.es.texi ']' + echo '@setfilename guix.es.info' + echo '@include version-es.texi' + touch po/doc/guix-manual.es.po + for lang in ${langs} + '[' '!' -e doc/guix.fr.texi ']' + echo '@setfilename guix.fr.info' + echo '@include version-fr.texi' + touch po/doc/guix-manual.fr.po + for lang in ${langs} + '[' '!' -e doc/guix.ru.texi ']' + echo '@setfilename guix.ru.info' + echo '@include version-ru.texi' + touch po/doc/guix-manual.ru.po ++ find po/doc -type f -name 'guix-cookbook*.po' ++ sed -e 's,.*/guix-cookbook\.,,;s,\.po$,,' + langs='fa zh_Hans ko sk fr de es ru' + for lang in ${langs} + '[' '!' -e doc/guix-cookbook.fa.texi ']' + echo '@setfilename guix-cookbook.fa.info' + touch po/doc/guix-cookbook.fa.po + for lang in ${langs} + '[' '!' -e doc/guix-cookbook.zh_Hans.texi ']' + echo '@setfilename guix-cookbook.zh_Hans.info' + touch po/doc/guix-cookbook.zh_Hans.po + for lang in ${langs} + '[' '!' -e doc/guix-cookbook.ko.texi ']' + echo '@setfilename guix-cookbook.ko.info' + touch po/doc/guix-cookbook.ko.po + for lang in ${langs} + '[' '!' -e doc/guix-cookbook.sk.texi ']' + echo '@setfilename guix-cookbook.sk.info' + touch po/doc/guix-cookbook.sk.po + for lang in ${langs} + '[' '!' -e doc/guix-cookbook.fr.texi ']' + echo '@setfilename guix-cookbook.fr.info' + touch po/doc/guix-cookbook.fr.po + for lang in ${langs} + '[' '!' -e doc/guix-cookbook.de.texi ']' + echo '@setfilename guix-cookbook.de.info' + touch po/doc/guix-cookbook.de.po + for lang in ${langs} + '[' '!' -e doc/guix-cookbook.es.texi ']' + echo '@setfilename guix-cookbook.es.info' + touch po/doc/guix-cookbook.es.po + for lang in ${langs} + '[' '!' -e doc/guix-cookbook.ru.texi ']' + echo '@setfilename guix-cookbook.ru.info' + touch po/doc/guix-cookbook.ru.po + exec autoreconf -vfi autoreconf: Entering directory `.' autoreconf: running: autopoint --force Copying file ABOUT-NLS Copying file build-aux/config.rpath Copying file m4/codeset.m4 Copying file m4/extern-inline.m4 Copying file m4/fcntl-o.m4 Copying file m4/gettext.m4 Copying file m4/glibc2.m4 Copying file m4/glibc21.m4 Copying file m4/iconv.m4 Copying file m4/intdiv0.m4 Copying file m4/intl.m4 Copying file m4/intldir.m4 Copying file m4/intlmacosx.m4 Copying file m4/intmax.m4 Copying file m4/inttypes-pri.m4 Copying file m4/inttypes_h.m4 Copying file m4/lcmessage.m4 Copying file m4/lib-ld.m4 Copying file m4/lib-link.m4 Copying file m4/lib-prefix.m4 Copying file m4/lock.m4 Copying file m4/longlong.m4 Copying file m4/nls.m4 Copying file m4/po.m4 Copying file m4/printf-posix.m4 Copying file m4/progtest.m4 Copying file m4/size_max.m4 Copying file m4/stdint_h.m4 Copying file m4/threadlib.m4 Copying file m4/uintmax_t.m4 Copying file m4/visibility.m4 Copying file m4/wchar_t.m4 Copying file m4/wint_t.m4 Copying file m4/xsize.m4 Copying file po/guix/Makefile.in.in Copying file po/packages/Makefile.in.in Copying file po/guix/Makevars.template Copying file po/packages/Makevars.template Copying file po/guix/Rules-quot Copying file po/packages/Rules-quot Copying file po/guix/boldquot.sed Copying file po/packages/boldquot.sed Copying file po/guix/en@boldquot.header Copying file po/packages/en@boldquot.header Copying file po/guix/en@quot.header Copying file po/packages/en@quot.header Copying file po/guix/insert-header.sin Copying file po/packages/insert-header.sin Copying file po/guix/quot.sed Copying file po/packages/quot.sed Copying file po/guix/remove-potcdate.sin Copying file po/packages/remove-potcdate.sin autoreconf: running: aclocal --force -I m4 autoreconf: configure.ac: tracing autoreconf: configure.ac: not using Libtool autoreconf: running: /gnu/store/mp8jbpqy9250wikic1yb5c7kiyff2lwc-autoconf-2.69/bin/autoconf --force autoreconf: running: /gnu/store/mp8jbpqy9250wikic1yb5c7kiyff2lwc-autoconf-2.69/bin/autoheader --force autoreconf: running: automake --add-missing --copy --force-missing config-daemon.ac:8: installing 'build-aux/ar-lib' configure.ac:21: installing 'build-aux/compile' configure.ac:23: installing 'build-aux/config.guess' configure.ac:23: installing 'build-aux/config.sub' configure.ac:11: installing 'build-aux/install-sh' configure.ac:11: installing 'build-aux/missing' Makefile.am: installing './INSTALL' Makefile.am:789: warning: AM_GNU_GETTEXT used but 'po' not in SUBDIRS Makefile.am: installing 'build-aux/depcomp' doc/local.mk:34: installing 'build-aux/mdate-sh' Makefile.am:792: 'doc/local.mk' included from here doc/local.mk:34: installing 'build-aux/texinfo.tex' Makefile.am:792: 'doc/local.mk' included from here parallel-tests: installing 'build-aux/test-driver' autoreconf: Leaving directory `.' phase `bootstrap' succeeded after 4.4 seconds starting phase `patch-usr-bin-file' phase `patch-usr-bin-file' succeeded after 0.0 seconds starting phase `patch-source-shebangs' patch-shebang: ./bootstrap: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-shebang: ./build-aux/ar-lib: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-shebang: ./build-aux/compile: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-shebang: ./build-aux/config.guess: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-shebang: ./build-aux/config.rpath: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-shebang: ./build-aux/config.sub: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-shebang: ./build-aux/depcomp: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-shebang: ./build-aux/install-sh: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-shebang: ./build-aux/mdate-sh: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-shebang: ./build-aux/missing: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-shebang: ./build-aux/pre-inst-env.in: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-shebang: ./build-aux/test-driver: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-shebang: ./build-aux/test-driver.scm: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-shebang: ./build-aux/test-env.in: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-shebang: ./configure: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-shebang: ./etc/git/pre-push: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-shebang: ./etc/guix-install.sh: changing `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-shebang: ./etc/init.d/guix-daemon.in: changing `/bin/bash' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/bash' patch-shebang: ./etc/openrc/guix-daemon.in: warning: no binary for interpreter `openrc-run' found in $PATH phase `patch-source-shebangs' succeeded after 0.1 seconds starting phase `configure' source directory: "/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source" (relative from build: ".") build directory: "/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source" configure flags: ("CONFIG_SHELL=/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/bash" "SHELL=/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/bash" "--prefix=/gnu/store/004qv076wp5c1nwpxi5h72g54y349v9c-guix-1.3.0-17.2a49ddb" "--enable-fast-install" "--build=aarch64-unknown-linux-gnu" "--with-channel-commit=2a49ddb513476cd45ebca618ffb0b9e381c1e497" "--localstatedir=/var" "--sysconfdir=/etc" "--with-bash-completion-dir=/gnu/store/004qv076wp5c1nwpxi5h72g54y349v9c-guix-1.3.0-17.2a49ddb/etc/bash_completion.d" "ac_cv_path_DOT_USER_PROGRAM=dot" "ac_cv_guix_test_root=/tmp/guix-tests") configure: WARNING: unrecognized options: --enable-fast-install checking for a BSD-compatible install... /gnu/store/firkqph0zalxwjv5g4cdjm4zh3kl3fax-coreutils-8.32/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /gnu/store/firkqph0zalxwjv5g4cdjm4zh3kl3fax-coreutils-8.32/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... no checking whether make supports nested variables... yes checking whether UID '999' is supported by ustar format... yes checking whether GID '30000' is supported by ustar format... yes checking how to create a ustar tar archive... gnutar checking whether make supports nested variables... (cached) yes checking whether make supports the include directive... yes (GNU style) checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking whether gcc understands -c and -o together... yes checking dependency style of gcc... gcc3 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /gnu/store/vl9pxlycbk5ff0i7jbgyrh0rb2dl07lx-grep-3.6/bin/grep checking for egrep... /gnu/store/vl9pxlycbk5ff0i7jbgyrh0rb2dl07lx-grep-3.6/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking for a sed that does not truncate output... /gnu/store/skrsx5h5h011al604grc3rqa2dhqp2wc-sed-4.8/bin/sed checking whether NLS is requested... yes checking for msgfmt... /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt checking for gmsgfmt... /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt checking for xgettext... /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/xgettext checking for msgmerge... /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgmerge checking build system type... aarch64-unknown-linux-gnu checking host system type... aarch64-unknown-linux-gnu checking for ld used by gcc... /gnu/store/zhpqig154gpqkgc964wmdnf6b889jfsq-ld-wrapper-0/bin/ld checking if the linker (/gnu/store/zhpqig154gpqkgc964wmdnf6b889jfsq-ld-wrapper-0/bin/ld) is GNU ld... yes checking for shared library run path origin... done checking for CFPreferencesCopyAppValue... no checking for CFLocaleCopyCurrent... no checking for GNU gettext in libc... yes checking whether to use NLS... yes checking where the gettext function comes from... libc checking for sed... (cached) /gnu/store/skrsx5h5h011al604grc3rqa2dhqp2wc-sed-4.8/bin/sed checking for the Guix system type... aarch64-linux checking for the store directory... /gnu/store checking the length of the installed socket file name... 30 checking for unit test root directory... (cached) /tmp/guix-tests checking the length of the socket file name used in tests... 47 checking the length of a typical hash bang line... 73 checking the length of a hash bang line used in tests... 84 checking for pkg-config... /gnu/store/8v88l7x1z3w9394fw5z84s12ai7va7q4-pkg-config-0.29.2/bin/pkg-config checking pkg-config is at least version 0.9.0... yes configure: checking for guile 3.0 configure: found guile 3.0 checking for guile-3.0... no checking for guile3.0... no checking for guile-3... no checking for guile3... no checking for guile... /gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/bin/guile checking for Guile version >= 3.0... 3.0.7 checking for guild... /gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/bin/guild checking for guile-config... /gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/bin/guile-config checking for guile-3.0... yes checking if (gnutls) is available... yes checking if (git) is available... yes checking whether Guile-JSON is available and recent enough... yes checking whether Guile-Sqlite3 is available and recent enough... yes checking whether Guile-Gcrypt is available and recent enough... yes checking whether Guile-Git is available and recent enough... yes checking if (htmlprag) exports `%strict-tokenizer?'... yes checking whether Guile-zlib is available and recent enough... yes checking if (lzlib) is available... yes checking if (avahi) is available... yes checking if (newt) is available... no checking whether /gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/bin/guile provides feature 'regex'... yes checking whether /gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/bin/guile provides feature 'posix'... yes checking whether /gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/bin/guile provides feature 'socket'... yes checking whether /gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/bin/guile provides feature 'net-db'... yes checking whether /gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/bin/guile provides feature 'threads'... yes checking for a sed that does not truncate output... (cached) /gnu/store/skrsx5h5h011al604grc3rqa2dhqp2wc-sed-4.8/bin/sed checking for gzip... /gnu/store/98jvn7i78fcb3jf4xvvl2262f2ap7h8b-gzip-1.10/bin/gzip checking for bzip2... /gnu/store/hdgbh3h3skl0g7vfv3240s6l7nhbnj2i-bzip2-1.0.8/bin/bzip2 checking for xz... /gnu/store/s3577mn5iz2gjgkrava2sm914bgbnkd8-xz-5.2.5/bin/xz checking for libgcrypt-config... /gnu/store/7avhaxgw42al1z8wj737jqakdcv2fizm-libgcrypt-1.8.8/bin/libgcrypt-config checking libgcrypt's library directory... /gnu/store/7avhaxgw42al1z8wj737jqakdcv2fizm-libgcrypt-1.8.8/lib checking whether Guile-SSH is available and recent enough... yes checking whether to build daemon... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking for ar... ar checking the archiver (ar) interface... ar checking whether g++ supports C++11... yes checking for ranlib... ranlib checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for gzdopen in -lz... yes checking how to run the C++ preprocessor... g++ -E checking zlib.h usability... yes checking zlib.h presence... yes checking for zlib.h... yes checking for BZ2_bzWriteOpen in -lbz2... yes checking bzlib.h usability... yes checking bzlib.h presence... yes checking for bzlib.h... yes checking for sqlite3 >= 3.6.19... yes checking for gcry_md_open in -lgcrypt... yes checking gcrypt.h usability... yes checking gcrypt.h presence... yes checking for gcrypt.h... yes checking for chroot... yes checking for unshare... yes checking sched.h usability... yes checking sched.h presence... yes checking for sched.h... yes checking sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking sys/mount.h usability... yes checking sys/mount.h presence... yes checking for sys/mount.h... yes checking sys/syscall.h usability... yes checking sys/syscall.h presence... yes checking for sys/syscall.h... yes checking for lutimes... yes checking for lchown... yes checking for posix_fallocate... yes checking for sched_setaffinity... yes checking for statvfs... yes checking for nanosleep... yes checking for strsignal... yes checking for statx... yes checking locale usability... yes checking locale presence... yes checking for locale... yes checking sys/personality.h usability... yes checking sys/personality.h presence... yes checking for sys/personality.h... yes checking for default substitute URLs... https://ci.guix.gnu.org https://bordeaux.guix.gnu.org checking whether Guile-SSH is available and recent enough... (cached) yes checking for unit test root directory... (cached) /tmp/guix-tests checking for guile... (cached) /gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/bin/guile checking the current installation's localstatedir... none checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating po/guix/Makefile.in config.status: creating po/packages/Makefile.in config.status: creating etc/guix-daemon.cil config.status: creating guix/config.scm config.status: creating etc/committer.scm config.status: creating test-env config.status: creating pre-inst-env config.status: creating nix/config.h config.status: executing depfiles commands config.status: executing po-directories commands config.status: creating po/guix/POTFILES config.status: creating po/guix/Makefile config.status: creating po/packages/POTFILES config.status: creating po/packages/Makefile configure: WARNING: unrecognized options: --enable-fast-install phase `configure' succeeded after 3.7 seconds starting phase `patch-generated-file-shebangs' patch-makefile-SHELL: ./po/guix/Makefile: changing `SHELL' from `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' patch-makefile-SHELL: ./po/packages/Makefile: changing `SHELL' from `/bin/sh' to `/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8/bin/sh' phase `patch-generated-file-shebangs' succeeded after 0.0 seconds starting phase `use-host-compressors' phase `use-host-compressors' succeeded after 0.0 seconds starting phase `build' GEN doc/os-config-bare-bones.texi GEN doc/os-config-desktop.texi GEN doc/os-config-lightweight-desktop.texi Compiling Scheme modules... GEN nix/libstore/schema.sql.hh GEN .version [ 0%] LOAD guix/build/po.scm [ 0%] GUILEC guix/build/po.go PO4A doc/contributing.de.texi PO4A doc/contributing.es.texi PO4A doc/contributing.fa.texi PO4A doc/contributing.fr.texi Your input po file po/doc/guix-manual.fa.po seems outdated (The amount of entries differ between files: 11330 is not 463 ). Please consider running po4a-updatepo to refresh it. POXREF doc/contributing.fa.texi Your input po file po/doc/guix-manual.fr.po seems outdated (The amount of entries differ between files: 11330 is not 463 ). Please consider running po4a-updatepo to refresh it. POXREF doc/contributing.fr.texi Your input po file po/doc/guix-manual.de.po seems outdated (The amount of entries differ between files: 11330 is not 463 ). Please consider running po4a-updatepo to refresh it. POXREF doc/contributing.de.texi Your input po file po/doc/guix-manual.es.po seems outdated (The amount of entries differ between files: 11330 is not 463 ). Please consider running po4a-updatepo to refresh it. POXREF doc/contributing.es.texi translated 74 cross-references in 'doc/contributing.fa.texi.tmp' mv "doc/contributing.fa.texi.tmp" "doc/contributing.fa.texi" PO4A doc/contributing.it.texi translated 73 cross-references in 'doc/contributing.fr.texi.tmp' mv "doc/contributing.fr.texi.tmp" "doc/contributing.fr.texi" PO4A doc/contributing.ko.texi translated 74 cross-references in 'doc/contributing.de.texi.tmp' mv "doc/contributing.de.texi.tmp" "doc/contributing.de.texi" PO4A doc/contributing.pt_BR.texi translated 73 cross-references in 'doc/contributing.es.texi.tmp' mv "doc/contributing.es.texi.tmp" "doc/contributing.es.texi" PO4A doc/contributing.ru.texi Your input po file po/doc/guix-manual.it.po seems outdated (The amount of entries differ between files: 11330 is not 463 ). Please consider running po4a-updatepo to refresh it. POXREF doc/contributing.it.texi Your input po file po/doc/guix-manual.ko.po seems outdated (The amount of entries differ between files: 11330 is not 463 ). Please consider running po4a-updatepo to refresh it. POXREF doc/contributing.ko.texi Your input po file po/doc/guix-manual.pt_BR.po seems outdated (The amount of entries differ between files: 11330 is not 463 ). Please consider running po4a-updatepo to refresh it. translated 74 cross-references in 'doc/contributing.it.texi.tmp' mv "doc/contributing.it.texi.tmp" "doc/contributing.it.texi" POXREF doc/contributing.pt_BR.texi PO4A doc/contributing.sk.texi Your input po file po/doc/guix-manual.ru.po seems outdated (The amount of entries differ between files: 11330 is not 463 ). Please consider running po4a-updatepo to refresh it. POXREF doc/contributing.ru.texi translated 74 cross-references in 'doc/contributing.ko.texi.tmp' mv "doc/contributing.ko.texi.tmp" "doc/contributing.ko.texi" PO4A doc/contributing.zh_CN.texi translated 74 cross-references in 'doc/contributing.pt_BR.texi.tmp' mv "doc/contributing.pt_BR.texi.tmp" "doc/contributing.pt_BR.texi" PO4A doc/guix-cookbook.de.texi Your input po file po/doc/guix-cookbook.de.po seems outdated (The amount of entries differ between files: 665 is not 663 ). Please consider running po4a-updatepo to refresh it. sed -i "s|guix-cookbook\.info|$(basename "doc/guix-cookbook.de.texi" | sed 's|texi$|info|')|" "doc/guix-cookbook.de.texi.tmp" POXREF doc/guix-cookbook.de.texi Your input po file po/doc/guix-manual.sk.po seems outdated (The amount of entries differ between files: 11330 is not 463 ). Please consider running po4a-updatepo to refresh it. POXREF doc/contributing.sk.texi translated 36 cross-references in 'doc/guix-cookbook.de.texi.tmp' mv "doc/guix-cookbook.de.texi.tmp" "doc/guix-cookbook.de.texi" PO4A doc/guix-cookbook.es.texi translated 73 cross-references in 'doc/contributing.ru.texi.tmp' mv "doc/contributing.ru.texi.tmp" "doc/contributing.ru.texi" PO4A doc/guix-cookbook.fa.texi Your input po file po/doc/guix-cookbook.es.po seems outdated (The amount of entries differ between files: 665 is not 663 ). Please consider running po4a-updatepo to refresh it. sed -i "s|guix-cookbook\.info|$(basename "doc/guix-cookbook.es.texi" | sed 's|texi$|info|')|" "doc/guix-cookbook.es.texi.tmp" POXREF doc/guix-cookbook.es.texi Your input po file po/doc/guix-cookbook.fa.po seems outdated (The amount of entries differ between files: 665 is not 663 ). Please consider running po4a-updatepo to refresh it. sed -i "s|guix-cookbook\.info|$(basename "doc/guix-cookbook.fa.texi" | sed 's|texi$|info|')|" "doc/guix-cookbook.fa.texi.tmp" POXREF doc/guix-cookbook.fa.texi translated 37 cross-references in 'doc/guix-cookbook.es.texi.tmp' mv "doc/guix-cookbook.es.texi.tmp" "doc/guix-cookbook.es.texi" PO4A doc/guix-cookbook.fr.texi translated 37 cross-references in 'doc/guix-cookbook.fa.texi.tmp' mv "doc/guix-cookbook.fa.texi.tmp" "doc/guix-cookbook.fa.texi" PO4A doc/guix-cookbook.ko.texi Your input po file po/doc/guix-cookbook.fr.po seems outdated (The amount of entries differ between files: 665 is not 663 ). Please consider running po4a-updatepo to refresh it. sed -i "s|guix-cookbook\.info|$(basename "doc/guix-cookbook.fr.texi" | sed 's|texi$|info|')|" "doc/guix-cookbook.fr.texi.tmp" POXREF doc/guix-cookbook.fr.texi Your input po file po/doc/guix-cookbook.ko.po seems outdated (The amount of entries differ between files: 665 is not 663 ). Please consider running po4a-updatepo to refresh it. sed -i "s|guix-cookbook\.info|$(basename "doc/guix-cookbook.ko.texi" | sed 's|texi$|info|')|" "doc/guix-cookbook.ko.texi.tmp" POXREF doc/guix-cookbook.ko.texi translated 37 cross-references in 'doc/guix-cookbook.ko.texi.tmp' mv "doc/guix-cookbook.ko.texi.tmp" "doc/guix-cookbook.ko.texi" PO4A doc/guix-cookbook.ru.texi translated 37 cross-references in 'doc/guix-cookbook.fr.texi.tmp' mv "doc/guix-cookbook.fr.texi.tmp" "doc/guix-cookbook.fr.texi" PO4A doc/guix-cookbook.sk.texi translated 74 cross-references in 'doc/contributing.sk.texi.tmp' mv "doc/contributing.sk.texi.tmp" "doc/contributing.sk.texi" PO4A doc/guix-cookbook.zh_Hans.texi Your input po file po/doc/guix-manual.zh_CN.po seems outdated (The amount of entries differ between files: 11330 is not 463 ). Please consider running po4a-updatepo to refresh it. POXREF doc/contributing.zh_CN.texi Your input po file po/doc/guix-cookbook.ru.po seems outdated (The amount of entries differ between files: 665 is not 663 ). Please consider running po4a-updatepo to refresh it. sed -i "s|guix-cookbook\.info|$(basename "doc/guix-cookbook.ru.texi" | sed 's|texi$|info|')|" "doc/guix-cookbook.ru.texi.tmp" POXREF doc/guix-cookbook.ru.texi Your input po file po/doc/guix-cookbook.sk.po seems outdated (The amount of entries differ between files: 665 is not 663 ). Please consider running po4a-updatepo to refresh it. sed -i "s|guix-cookbook\.info|$(basename "doc/guix-cookbook.sk.texi" | sed 's|texi$|info|')|" "doc/guix-cookbook.sk.texi.tmp" POXREF doc/guix-cookbook.sk.texi translated 37 cross-references in 'doc/guix-cookbook.ru.texi.tmp' mv "doc/guix-cookbook.ru.texi.tmp" "doc/guix-cookbook.ru.texi" PO4A doc/guix.de.texi translated 37 cross-references in 'doc/guix-cookbook.sk.texi.tmp' mv "doc/guix-cookbook.sk.texi.tmp" "doc/guix-cookbook.sk.texi" PO4A doc/guix.es.texi Your input po file po/doc/guix-cookbook.zh_Hans.po seems outdated (The amount of entries differ between files: 665 is not 663 ). Please consider running po4a-updatepo to refresh it. sed -i "s|guix-cookbook\.info|$(basename "doc/guix-cookbook.zh_Hans.texi" | sed 's|texi$|info|')|" "doc/guix-cookbook.zh_Hans.texi.tmp" POXREF doc/guix-cookbook.zh_Hans.texi translated 37 cross-references in 'doc/guix-cookbook.zh_Hans.texi.tmp' mv "doc/guix-cookbook.zh_Hans.texi.tmp" "doc/guix-cookbook.zh_Hans.texi" PO4A doc/guix.fa.texi translated 74 cross-references in 'doc/contributing.zh_CN.texi.tmp' mv "doc/contributing.zh_CN.texi.tmp" "doc/contributing.zh_CN.texi" PO4A doc/guix.fr.texi Your input po file po/doc/guix-manual.de.po seems outdated (The amount of entries differ between files: 11330 is not 11085 ). Please consider running po4a-updatepo to refresh it. sed -i "s|guix\.info|$(basename "doc/guix.de.texi" | sed 's|texi$|info|')|" "doc/guix.de.texi.tmp" Your input po file po/doc/guix-manual.fa.po seems outdated (The amount of entries differ between files: 11330 is not 11085 ). Please consider running po4a-updatepo to refresh it. POXREF doc/guix.de.texi sed -i "s|guix\.info|$(basename "doc/guix.fa.texi" | sed 's|texi$|info|')|" "doc/guix.fa.texi.tmp" POXREF doc/guix.fa.texi Your input po file po/doc/guix-manual.es.po seems outdated (The amount of entries differ between files: 11330 is not 11085 ). Please consider running po4a-updatepo to refresh it. sed -i "s|guix\.info|$(basename "doc/guix.es.texi" | sed 's|texi$|info|')|" "doc/guix.es.texi.tmp" POXREF doc/guix.es.texi Your input po file po/doc/guix-manual.fr.po seems outdated (The amount of entries differ between files: 11330 is not 11085 ). Please consider running po4a-updatepo to refresh it. sed -i "s|guix\.info|$(basename "doc/guix.fr.texi" | sed 's|texi$|info|')|" "doc/guix.fr.texi.tmp" POXREF doc/guix.fr.texi translated 948 cross-references in 'doc/guix.fa.texi.tmp' mv "doc/guix.fa.texi.tmp" "doc/guix.fa.texi" PO4A doc/guix.it.texi translated 946 cross-references in 'doc/guix.es.texi.tmp' mv "doc/guix.es.texi.tmp" "doc/guix.es.texi" PO4A doc/guix.ko.texi translated 945 cross-references in 'doc/guix.de.texi.tmp' mv "doc/guix.de.texi.tmp" "doc/guix.de.texi" PO4A doc/guix.pt_BR.texi translated 945 cross-references in 'doc/guix.fr.texi.tmp' mv "doc/guix.fr.texi.tmp" "doc/guix.fr.texi" PO4A doc/guix.ru.texi Your input po file po/doc/guix-manual.it.po seems outdated (The amount of entries differ between files: 11330 is not 11085 ). Please consider running po4a-updatepo to refresh it. sed -i "s|guix\.info|$(basename "doc/guix.it.texi" | sed 's|texi$|info|')|" "doc/guix.it.texi.tmp" POXREF doc/guix.it.texi Your input po file po/doc/guix-manual.ko.po seems outdated (The amount of entries differ between files: 11330 is not 11085 ). Please consider running po4a-updatepo to refresh it. sed -i "s|guix\.info|$(basename "doc/guix.ko.texi" | sed 's|texi$|info|')|" "doc/guix.ko.texi.tmp" POXREF doc/guix.ko.texi Your input po file po/doc/guix-manual.pt_BR.po seems outdated (The amount of entries differ between files: 11330 is not 11085 ). Please consider running po4a-updatepo to refresh it. sed -i "s|guix\.info|$(basename "doc/guix.pt_BR.texi" | sed 's|texi$|info|')|" "doc/guix.pt_BR.texi.tmp" POXREF doc/guix.pt_BR.texi Your input po file po/doc/guix-manual.ru.po seems outdated (The amount of entries differ between files: 11330 is not 11085 ). Please consider running po4a-updatepo to refresh it. sed -i "s|guix\.info|$(basename "doc/guix.ru.texi" | sed 's|texi$|info|')|" "doc/guix.ru.texi.tmp" POXREF doc/guix.ru.texi translated 948 cross-references in 'doc/guix.it.texi.tmp' mv "doc/guix.it.texi.tmp" "doc/guix.it.texi" PO4A doc/guix.sk.texi translated 948 cross-references in 'doc/guix.ko.texi.tmp' mv "doc/guix.ko.texi.tmp" "doc/guix.ko.texi" PO4A doc/guix.zh_CN.texi translated 948 cross-references in 'doc/guix.pt_BR.texi.tmp' mv "doc/guix.pt_BR.texi.tmp" "doc/guix.pt_BR.texi" Your input po file po/doc/guix-manual.sk.po seems outdated (The amount of entries differ between files: 11330 is not 11085 ). Please consider running po4a-updatepo to refresh it. sed -i "s|guix\.info|$(basename "doc/guix.sk.texi" | sed 's|texi$|info|')|" "doc/guix.sk.texi.tmp" POXREF doc/guix.sk.texi translated 942 cross-references in 'doc/guix.ru.texi.tmp' mv "doc/guix.ru.texi.tmp" "doc/guix.ru.texi" Your input po file po/doc/guix-manual.zh_CN.po seems outdated (The amount of entries differ between files: 11330 is not 11085 ). Please consider running po4a-updatepo to refresh it. sed -i "s|guix\.info|$(basename "doc/guix.zh_CN.texi" | sed 's|texi$|info|')|" "doc/guix.zh_CN.texi.tmp" POXREF doc/guix.zh_CN.texi translated 948 cross-references in 'doc/guix.sk.texi.tmp' mv "doc/guix.sk.texi.tmp" "doc/guix.sk.texi" translated 948 cross-references in 'doc/guix.zh_CN.texi.tmp' mv "doc/guix.zh_CN.texi.tmp" "doc/guix.zh_CN.texi" make all-recursive make[1]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' Making all in po/guix make[2]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/guix' make guix.pot-update make[3]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/guix' sed -e '/^#/d' remove-potcdate.sin > t-remove-potcdate.sed mv t-remove-potcdate.sed remove-potcdate.sed package_gnu=""; \ test -n "$package_gnu" || { \ if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \ LC_ALL=C find -L ../.. -maxdepth 1 -type f \ -size -10000000c -exec grep 'GNU guix' \ /dev/null '{}' ';' 2>/dev/null; \ else \ LC_ALL=C grep 'GNU guix' ../../* 2>/dev/null; \ fi; \ } | grep -v 'libtool:' >/dev/null; then \ package_gnu=yes; \ else \ package_gnu=no; \ fi; \ }; \ if test "$package_gnu" = "yes"; then \ package_prefix='GNU '; \ else \ package_prefix=''; \ fi; \ if test -n 'bug-guix@gnu.org' || test 'bug-guix@gnu.org' = '@'PACKAGE_BUGREPORT'@'; then \ msgid_bugs_address='bug-guix@gnu.org'; \ else \ msgid_bugs_address='bug-guix@gnu.org'; \ fi; \ case `/gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/xgettext --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/xgettext --default-domain=guix --directory=../.. \ --add-comments=TRANSLATORS: --from-code=UTF-8 --keyword=G_ --keyword=N_:1,2 --keyword=message --keyword=description --keyword=synopsis --keyword=n_ \ --files-from=./POTFILES.in \ --copyright-holder='the authors of Guix (msgids)' \ --msgid-bugs-address="$msgid_bugs_address" \ ;; \ *) \ /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/xgettext --default-domain=guix --directory=../.. \ --add-comments=TRANSLATORS: --from-code=UTF-8 --keyword=G_ --keyword=N_:1,2 --keyword=message --keyword=description --keyword=synopsis --keyword=n_ \ --files-from=./POTFILES.in \ --copyright-holder='the authors of Guix (msgids)' \ --package-name="${package_prefix}guix" \ --package-version='1.3.0-17.2a49ddb' \ --msgid-bugs-address="$msgid_bugs_address" \ ;; \ esac guix/diagnostics.scm:157: warning: Empty msgid. It is reserved by GNU gettext: gettext("") returns the header entry with meta information, not the empty string. test ! -f guix.po || { \ if test -f ./guix.pot; then \ sed -f remove-potcdate.sed < ./guix.pot > guix.1po && \ sed -f remove-potcdate.sed < guix.po > guix.2po && \ if cmp guix.1po guix.2po >/dev/null 2>&1; then \ rm -f guix.1po guix.2po guix.po; \ else \ rm -f guix.1po guix.2po ./guix.pot && \ mv guix.po ./guix.pot; \ fi; \ else \ mv guix.po ./guix.pot; \ fi; \ } make[3]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/guix' test ! -f ./guix.pot || \ test -z "cs.gmo da.gmo de.gmo en@boldquot.gmo en@quot.gmo eo.gmo es.gmo fr.gmo hu.gmo it.gmo ko.gmo nl.gmo oc.gmo pl.gmo pt_BR.gmo ru.gmo si.gmo sk.gmo sr.gmo sv.gmo ta.gmo vi.gmo zh_CN.gmo" || make cs.gmo da.gmo de.gmo en@boldquot.gmo en@quot.gmo eo.gmo es.gmo fr.gmo hu.gmo it.gmo ko.gmo nl.gmo oc.gmo pl.gmo pt_BR.gmo ru.gmo si.gmo sk.gmo sr.gmo sv.gmo ta.gmo vi.gmo zh_CN.gmo make[3]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/guix' rm -f cs.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o cs.gmo cs.po rm -f de.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o de.gmo de.po rm -f da.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o da.gmo da.po make[4]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/guix' make en@boldquot.po-update make[5]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/guix' sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' ./insert-header.sin > en@boldquot.insert-header cs.po: 62 translated messages, 245 fuzzy translations, 1137 untranslated messages. da.po: 813 translated messages, 342 fuzzy translations, 289 untranslated messages. en@boldquot: de.po: 1443 translated messages, 1 untranslated message. make[4]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/guix' make en@quot.po-update make[5]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/guix' sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' ./insert-header.sin > en@quot.insert-header rm -f eo.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o eo.gmo eo.po rm -f es.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o es.gmo es.po eo.po: es.po: 1203 translated messages, 138 fuzzy translations, 103 untranslated messages. 251 translated messages, 368 fuzzy translations, 825 untranslated messages. en@quot: rm -f fr.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o fr.gmo fr.po rm -f hu.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o hu.gmo hu.po hu.po: 170 translated messages, 385 fuzzy translations, 889 untranslated messages. fr.po: 1444 translated messages. rm -f it.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o it.gmo it.po rm -f ko.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o ko.gmo ko.po it.po: 218 translated messages, 26 fuzzy translations, 1200 untranslated messages. en@boldquot: msgmerge --lang=en@boldquot en@boldquot.po guix.pot -o en@boldquot.new.po ko.po: 93 translated messages, 5 fuzzy translations, 1346 untranslated messages. rm -f nl.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o nl.gmo nl.po rm -f oc.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o oc.gmo oc.po oc.po: 3 translated messages, 3 fuzzy translations, 1438 untranslated messages. nl.po: 1292 translated messages, 87 fuzzy translations, 65 untranslated messages. rm -f pl.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o pl.gmo pl.po en@quot: msgmerge --lang=en@quot en@quot.po guix.pot -o en@quot.new.po rm -f pt_BR.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o pt_BR.gmo pt_BR.po .......................................................................................................................................................pl.po: 104 translated messages, 154 fuzzy translations, 1186 untranslated messages. done. pt_BR.po: 1235 translated messages, 124 fuzzy translations, 85 untranslated messages. rm -f si.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o si.gmo si.po rm -f ru.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o ru.gmo ru.po .......................................................................................................................................................make[5]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/guix' make[4]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/guix' done. si.po: rm -f sk.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o sk.gmo sk.po 2 translated messages, 1442 untranslated messages. ru.po: 334 translated messages, 10 fuzzy translations, 1100 untranslated messages. rm -f sr.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o sr.gmo sr.po rm -f sv.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o sv.gmo sv.po make[5]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/guix' make[4]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/guix' sk.po: 1287 translated messages, 91 fuzzy translations, 66 untranslated messages. rm -f ta.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o ta.gmo ta.po sr.po: 110 translated messages, 382 fuzzy translations, 952 untranslated messages. sv.po: 454 translated messages, 242 fuzzy translationsrm -f vi.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o vi.gmo vi.po , 748 untranslated messages. rm -f zh_CN.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o zh_CN.gmo zh_CN.po ta.po: 595 translated messages, 207 fuzzy translations, 642 untranslated messages. rm -f en@boldquot.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o en@boldquot.gmo en@boldquot.po vi.po: 155 translated messages, 405 fuzzy translations, 884 untranslated messages. rm -f en@quot.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o en@quot.gmo en@quot.po zh_CN.po: 144 translated messages, 194 fuzzy translations, 1106 untranslated messages. en@boldquot.po: 1507 translated messages. en@quot.po: 1507 translated messages. make[3]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/guix' touch stamp-po make[2]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/guix' Making all in po/packages make[2]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/packages' make guix-packages.pot-update make[3]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/packages' sed -e '/^#/d' remove-potcdate.sin > t-remove-potcdate.sed mv t-remove-potcdate.sed remove-potcdate.sed package_gnu=""; \ test -n "$package_gnu" || { \ if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \ LC_ALL=C find -L ../.. -maxdepth 1 -type f \ -size -10000000c -exec grep 'GNU guix' \ /dev/null '{}' ';' 2>/dev/null; \ else \ LC_ALL=C grep 'GNU guix' ../../* 2>/dev/null; \ fi; \ } | grep -v 'libtool:' >/dev/null; then \ package_gnu=yes; \ else \ package_gnu=no; \ fi; \ }; \ if test "$package_gnu" = "yes"; then \ package_prefix='GNU '; \ else \ package_prefix=''; \ fi; \ if test -n 'bug-guix@gnu.org' || test 'bug-guix@gnu.org' = '@'PACKAGE_BUGREPORT'@'; then \ msgid_bugs_address='bug-guix@gnu.org'; \ else \ msgid_bugs_address='bug-guix@gnu.org'; \ fi; \ case `/gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/xgettext --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/xgettext --default-domain=guix-packages --directory=../.. \ --add-comments=TRANSLATORS: --language=Scheme --from-code=UTF-8 --keyword=synopsis --keyword=description \ --files-from=./POTFILES.in \ --copyright-holder='the authors of Guix (msgids)' \ --msgid-bugs-address="$msgid_bugs_address" \ ;; \ *) \ /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/xgettext --default-domain=guix-packages --directory=../.. \ --add-comments=TRANSLATORS: --language=Scheme --from-code=UTF-8 --keyword=synopsis --keyword=description \ --files-from=./POTFILES.in \ --copyright-holder='the authors of Guix (msgids)' \ --package-name="${package_prefix}guix" \ --package-version='1.3.0-17.2a49ddb' \ --msgid-bugs-address="$msgid_bugs_address" \ ;; \ esac test ! -f guix-packages.po || { \ if test -f ./guix-packages.pot; then \ sed -f remove-potcdate.sed < ./guix-packages.pot > guix-packages.1po && \ sed -f remove-potcdate.sed < guix-packages.po > guix-packages.2po && \ if cmp guix-packages.1po guix-packages.2po >/dev/null 2>&1; then \ rm -f guix-packages.1po guix-packages.2po guix-packages.po; \ else \ rm -f guix-packages.1po guix-packages.2po ./guix-packages.pot && \ mv guix-packages.po ./guix-packages.pot; \ fi; \ else \ mv guix-packages.po ./guix-packages.pot; \ fi; \ } make[3]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/packages' test ! -f ./guix-packages.pot || \ test -z "da.gmo de.gmo en@boldquot.gmo en@quot.gmo eo.gmo es.gmo fa.gmo fr.gmo hu.gmo it.gmo ko.gmo nl.gmo oc.gmo pl.gmo pt_BR.gmo sk.gmo sr.gmo zh_CN.gmo" || make da.gmo de.gmo en@boldquot.gmo en@quot.gmo eo.gmo es.gmo fa.gmo fr.gmo hu.gmo it.gmo ko.gmo nl.gmo oc.gmo pl.gmo pt_BR.gmo sk.gmo sr.gmo zh_CN.gmo make[3]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/packages' rm -f da.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o da.gmo da.po rm -f de.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o de.gmo de.po make[4]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/packages' make en@boldquot.po-update make[4]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/packages' make en@quot.po-update make[5]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/packages' sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' ./insert-header.sin > en@boldquot.insert-header make[5]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/packages' sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' ./insert-header.sin > en@quot.insert-header en@boldquot: de.po: 60 translated messages, 25 fuzzy translations, 2574 untranslated messages. en@quot: da.po: 125 translated messages, 67 fuzzy translations, 2467 untranslated messages. rm -f eo.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o eo.gmo eo.po rm -f es.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o es.gmo es.po eo.po: 19 translated messages, 78 fuzzy translations, 2562 untranslated messages. rm -f fa.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o fa.gmo fa.po es.po: 93 translated messages, 46 fuzzy translations, 2520 untranslated messages. fa.po: 2 translated messages, 2535 untranslated messages. rm -f fr.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o fr.gmo fr.po rm -f hu.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o hu.gmo hu.po hu.po: 110 translated messages, 71 fuzzy translations, 2478 untranslated messages. fr.po: 568 translated messages, 2 fuzzy translations, 2089 untranslated messages. rm -f it.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o it.gmo it.po rm -f ko.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o ko.gmo ko.po it.po: 5 translated messages, 2 fuzzy translations, 2652 untranslated messages. rm -f nl.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o nl.gmo nl.po ko.po: 15 translated messages, 1 fuzzy translation, 2643 untranslated messages. nl.po: 18 translated messages, 2 fuzzy translations, 2639 untranslated messages. rm -f oc.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o oc.gmo oc.po rm -f pl.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o pl.gmo pl.po oc.po: 2 translated messages, 2 fuzzy translations, 2655 untranslated messages. rm -f pt_BR.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o pt_BR.gmo pt_BR.po pl.po: 2 translated messages, 2657 untranslated messages. rm -f sk.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o sk.gmo sk.po pt_BR.po: 2 translated messages, 2 fuzzy translations, 2655 untranslated messages. sk.po: 5 translated messages, 3 fuzzy translations, 2651 untranslated messages. rm -f sr.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o sr.gmo sr.po rm -f zh_CN.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o zh_CN.gmo zh_CN.po sr.po: 9 translated messages, 8 fuzzy translations, 2642 untranslated messages. zh_CN.po: 7 translated messages, 5 fuzzy translations, 2647 untranslated messages. en@boldquot: msgmerge --lang=en@boldquot en@boldquot.po guix-packages.pot -o en@boldquot.new.po en@quot: msgmerge --lang=en@quot en@quot.po guix-packages.pot -o en@quot.new.po ............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................ done. ............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................ done. make[5]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/packages' make[4]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/packages' rm -f en@boldquot.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o en@boldquot.gmo en@boldquot.po make[5]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/packages' make[4]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/packages' rm -f en@quot.gmo && /gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21/bin/msgfmt -c --statistics --verbose -o en@quot.gmo en@quot.po en@boldquot.po: 5364 translated messages. en@quot.po: 5364 translated messages. make[3]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/packages' touch stamp-po make[2]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/packages' make[2]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' make[3]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' make[3]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' make[3]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' make[3]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' make[3]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' make[3]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' make[3]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' make[3]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' Updating ./doc/version.texi Updating ./doc/version-es.texi Updating ./doc/version-de.texi Updating ./doc/version-fa.texi Updating ./doc/version-fr.texi Updating ./doc/version-it.texi Updating ./doc/version-pt_BR.texi Updating ./doc/version-ko.texi MAKEINFO doc/guix-cookbook.info Updating ./doc/version-ru.texi Updating ./doc/version-sk.texi Updating ./doc/version-zh_CN.texi MAKEINFO doc/guix-cookbook.de.info MAKEINFO doc/guix-cookbook.es.info MAKEINFO doc/guix-cookbook.fa.info ./doc/guix-cookbook.es.texi: warning: document without Top node MAKEINFO doc/guix-cookbook.fr.info MAKEINFO doc/guix-cookbook.ko.info MAKEINFO doc/guix-cookbook.ru.info MAKEINFO doc/guix-cookbook.sk.info MAKEINFO doc/guix-cookbook.zh_Hans.info Compiling Scheme modules... GEN scripts/guix DOT doc/images/bootstrap-graph.png DOT doc/images/bootstrap-packages.png Fontconfig error: No writable cache directories Fontconfig error: No writable cache directories Fontconfig error: No writable cache directories Fontconfig error: No writable cache directories DOT doc/images/coreutils-graph.png DOT doc/images/coreutils-bag-graph.png Fontconfig error: No writable cache directories Fontconfig error: No writable cache directories Fontconfig error: No writable cache directories Fontconfig error: No writable cache directories DOT doc/images/gcc-core-mesboot0-graph.png Fontconfig error: No writable cache directories Fontconfig error: No writable cache directories DOT doc/images/service-graph.png Fontconfig error: No writable cache directories Fontconfig error: No writable cache directories [ 0%] LOAD guix.scm DOT doc/images/shepherd-graph.png Fontconfig error: No writable cache directories Fontconfig error: No writable cache directories GEN etc/openrc/guix-daemon GEN etc/gnu-store.mount GEN etc/guix-daemon.service GEN etc/guix-publish.service GEN etc/guix-gc.service GEN etc/init.d/guix-daemon GEN etc/guix-daemon.conf GEN etc/guix-publish.conf MAKEINFO doc/guix.info MAKEINFO doc/guix.de.info MAKEINFO doc/guix.es.info [ 0%] LOAD guix/base16.scm [ 0%] LOAD guix/base32.scm [ 0%] LOAD guix/base64.scm [ 0%] LOAD guix/ci.scm MAKEINFO doc/guix.fa.info ./doc/guix.es.texi: warning: document without Top node ./doc/guix.es.texi:17274: warning: `.' or `,' must follow @xref, not p ./doc/guix.es.texi:38936: warning: `.' or `,' must follow @xref, not p MAKEINFO doc/guix.fr.info MAKEINFO doc/guix.it.info [ 0%] LOAD guix/cpio.scm [ 0%] LOAD guix/deprecation.scm [ 0%] LOAD guix/docker.scm [ 0%] LOAD guix/records.scm [ 1%] LOAD guix/openpgp.scm [ 1%] LOAD guix/pki.scm [ 1%] LOAD guix/progress.scm [ 1%] LOAD guix/combinators.scm [ 1%] LOAD guix/memoization.scm [ 1%] LOAD guix/utils.scm [ 1%] LOAD guix/sets.scm [ 1%] LOAD guix/modules.scm [ 1%] LOAD guix/download.scm [ 1%] LOAD guix/discovery.scm [ 1%] LOAD guix/android-repo-download.scm [ 1%] LOAD guix/bzr-download.scm [ 1%] LOAD guix/extracting-download.scm [ 1%] LOAD guix/git-download.scm [ 1%] LOAD guix/hg-download.scm [ 1%] LOAD guix/swh.scm [ 1%] LOAD guix/monads.scm [ 1%] LOAD guix/monad-repl.scm [ 1%] LOAD guix/gexp.scm [ 2%] LOAD guix/profiles.scm [ 2%] LOAD guix/serialization.scm [ 2%] LOAD guix/nar.scm [ 2%] LOAD guix/narinfo.scm [ 2%] LOAD guix/derivations.scm [ 2%] LOAD guix/grafts.scm [ 2%] LOAD guix/repl.scm [ 2%] LOAD guix/transformations.scm [ 2%] LOAD guix/inferior.scm [ 2%] LOAD guix/describe.scm [ 2%] LOAD guix/quirks.scm [ 2%] LOAD guix/channels.scm [ 2%] LOAD guix/gnu-maintenance.scm [ 2%] LOAD guix/self.scm [ 2%] LOAD guix/substitutes.scm MAKEINFO doc/guix.ko.info [ 2%] LOAD guix/upstream.scm [ 2%] LOAD guix/licenses.scm [ 2%] LOAD guix/lint.scm MAKEINFO doc/guix.pt_BR.info ./doc/guix.fr.texi:13165: warning: `.' or `,' must follow @xref, not p MAKEINFO doc/guix.ru.info [ 2%] LOAD guix/glob.scm [ 3%] LOAD guix/git.scm [ 3%] LOAD guix/git-authenticate.scm [ 3%] LOAD guix/graph.scm [ 3%] LOAD guix/cache.scm [ 3%] LOAD guix/cve.scm [ 3%] LOAD guix/workers.scm [ 3%] LOAD guix/ipfs.scm [ 3%] LOAD guix/build-system.scm [ 3%] LOAD guix/build-system/android-ndk.scm [ 3%] LOAD guix/build-system/ant.scm [ 3%] LOAD guix/build-system/cargo.scm [ 3%] LOAD guix/build-system/chicken.scm [ 3%] LOAD guix/build-system/clojure.scm [ 3%] LOAD guix/build-system/cmake.scm [ 3%] LOAD guix/build-system/dub.scm [ 3%] LOAD guix/build-system/dune.scm [ 3%] LOAD guix/build-system/emacs.scm [ 3%] LOAD guix/build-system/font.scm [ 4%] LOAD guix/build-system/go.scm [ 4%] LOAD guix/build-system/meson.scm [ 4%] LOAD guix/build-system/minify.scm [ 4%] LOAD guix/build-system/minetest.scm [ 4%] LOAD guix/build-system/asdf.scm [ 4%] LOAD guix/build-system/copy.scm [ 4%] LOAD guix/build-system/glib-or-gtk.scm [ 4%] LOAD guix/build-system/gnu.scm [ 4%] LOAD guix/build-system/guile.scm [ 4%] LOAD guix/build-system/haskell.scm [ 4%] LOAD guix/build-system/julia.scm [ 4%] LOAD guix/build-system/linux-module.scm [ 4%] LOAD guix/build-system/maven.scm [ 4%] LOAD guix/build-system/node.scm [ 4%] LOAD guix/build-system/perl.scm [ 4%] LOAD guix/build-system/python.scm [ 4%] LOAD guix/build-system/renpy.scm [ 4%] LOAD guix/build-system/ocaml.scm [ 4%] LOAD guix/build-system/qt.scm [ 5%] LOAD guix/build-system/waf.scm [ 5%] LOAD guix/build-system/r.scm [ 5%] LOAD guix/build-system/rakudo.scm [ 5%] LOAD guix/build-system/ruby.scm [ 5%] LOAD guix/build-system/scons.scm [ 5%] LOAD guix/build-system/texlive.scm [ 5%] LOAD guix/build-system/trivial.scm [ 5%] LOAD guix/ftp-client.scm [ 5%] LOAD guix/http-client.scm [ 5%] LOAD guix/gnupg.scm [ 5%] LOAD guix/elf.scm [ 5%] LOAD guix/profiling.scm [ 5%] LOAD guix/store.scm [ 5%] LOAD guix/cvs-download.scm [ 5%] LOAD guix/svn-download.scm [ 5%] LOAD guix/colors.scm [ 5%] LOAD guix/i18n.scm [ 5%] LOAD guix/diagnostics.scm [ 5%] LOAD guix/ui.scm [ 6%] LOAD guix/status.scm [ 6%] LOAD guix/build/android-ndk-build-system.scm [ 6%] LOAD guix/build/ant-build-system.scm [ 6%] LOAD guix/build/download.scm [ 6%] LOAD guix/build/download-nar.scm [ 6%] LOAD guix/build/cargo-build-system.scm [ 6%] LOAD guix/build/cargo-utils.scm [ 6%] LOAD guix/build/chicken-build-system.scm [ 6%] LOAD guix/build/cmake-build-system.scm [ 6%] LOAD guix/build/dub-build-system.scm [ 6%] LOAD guix/build/dune-build-system.scm [ 6%] LOAD guix/build/emacs-build-system.scm [ 6%] LOAD guix/build/meson-build-system.scm [ 6%] LOAD guix/build/minify-build-system.scm [ 6%] LOAD guix/build/font-build-system.scm [ 6%] LOAD guix/build/go-build-system.scm [ 6%] LOAD guix/build/android-repo.scm [ 6%] LOAD guix/build/asdf-build-system.scm [ 6%] LOAD guix/build/bzr.scm [ 7%] LOAD guix/build/copy-build-system.scm [ 7%] LOAD guix/build/git.scm [ 7%] LOAD guix/build/hg.scm [ 7%] LOAD guix/build/glib-or-gtk-build-system.scm [ 7%] LOAD guix/build/gnu-bootstrap.scm [ 7%] LOAD guix/build/gnu-build-system.scm [ 7%] LOAD guix/build/gnu-dist.scm [ 7%] LOAD guix/build/guile-build-system.scm [ 7%] LOAD guix/build/maven-build-system.scm [ 7%] LOAD guix/build/minetest-build-system.scm [ 7%] LOAD guix/build/node-build-system.scm [ 7%] LOAD guix/build/perl-build-system.scm [ 7%] LOAD guix/build/python-build-system.scm [ 7%] LOAD guix/build/ocaml-build-system.scm [ 7%] LOAD guix/build/qt-build-system.scm [ 7%] LOAD guix/build/r-build-system.scm [ 7%] LOAD guix/build/renpy-build-system.scm [ 7%] LOAD guix/build/rakudo-build-system.scm [ 7%] LOAD guix/build/ruby-build-system.scm [ 8%] LOAD guix/build/scons-build-system.scm [ 8%] LOAD guix/build/texlive-build-system.scm [ 8%] LOAD guix/build/waf-build-system.scm [ 8%] LOAD guix/build/haskell-build-system.scm [ 8%] LOAD guix/build/julia-build-system.scm [ 8%] LOAD guix/build/linux-module-build-system.scm [ 8%] LOAD guix/build/store-copy.scm [ 8%] LOAD guix/build/json.scm [ 8%] LOAD guix/build/pack.scm [ 8%] LOAD guix/build/utils.scm [ 8%] LOAD guix/build/union.scm [ 8%] LOAD guix/build/profiles.scm [ 8%] LOAD guix/build/compile.scm [ 8%] LOAD guix/build/cvs.scm [ 8%] LOAD guix/build/svn.scm [ 8%] LOAD guix/build/syscalls.scm [ 8%] LOAD guix/build/gremlin.scm [ 8%] LOAD guix/build/debug-link.scm [ 9%] LOAD guix/build/clojure-build-system.scm MAKEINFO doc/guix.sk.info MAKEINFO doc/guix.zh_CN.info [ 9%] LOAD guix/build/clojure-utils.scm [ 9%] LOAD guix/build/emacs-utils.scm [ 9%] LOAD guix/build/java-utils.scm [ 9%] LOAD guix/build/lisp-utils.scm [ 9%] LOAD guix/build/meson-configuration.scm Wide character in warn at /gnu/store/hycbwzbcimhs7zkmh4ngqqbj4nw1dvpm-texinfo-6.7/bin/makeinfo line 632. ./doc/guix.ru.texi:11168: warning: `.' or `,' must follow @xref, not ? [ 9%] LOAD guix/build/maven/java.scm [ 9%] LOAD guix/build/maven/plugin.scm [ 9%] LOAD guix/build/maven/pom.scm [ 9%] LOAD guix/build/graft.scm [ 9%] LOAD guix/build/bournish.scm CXX nix/nix-daemon/guix_daemon-nix-daemon.o [ 9%] LOAD guix/build/qt-utils.scm [ 9%] LOAD guix/build/make-bootstrap.scm [ 9%] LOAD guix/search-paths.scm [ 9%] LOAD guix/packages.scm [ 9%] LOAD guix/import/cabal.scm [ 9%] LOAD guix/import/cpan.scm [ 9%] LOAD guix/import/cran.scm [ 9%] LOAD guix/import/crate.scm guix/grafts.scm:137:7: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead WARNING: Use of `load' in declarative module (guix ui). Add #:declarative? #f to your define-module invocation. WARNING: (guix build ant-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build cargo-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build chicken-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build cmake-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build dub-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build ocaml-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build dune-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build meson-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build minify-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build font-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build go-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build asdf-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build copy-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build gnu-dist): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build guile-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build maven-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build minetest-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build perl-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build python-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build r-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build renpy-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build rakudo-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build ruby-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build scons-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build texlive-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build waf-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build haskell-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build julia-build-system): imported module (guix build utils) overrides core binding `delete' ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; [ 10%] LOAD guix/import/egg.scm [ 10%] LOAD guix/import/elpa.scm [ 10%] LOAD guix/import/gem.scm [ 10%] LOAD guix/import/git.scm [ 10%] LOAD guix/import/github.scm [ 10%] LOAD guix/import/gnome.scm [ 10%] LOAD guix/import/gnu.scm [ 10%] LOAD guix/import/go.scm [ 10%] LOAD guix/import/hackage.scm [ 10%] LOAD guix/import/json.scm [ 10%] LOAD guix/import/kde.scm [ 10%] LOAD guix/import/launchpad.scm [ 10%] LOAD guix/import/minetest.scm [ 10%] LOAD guix/import/opam.scm [ 10%] LOAD guix/import/print.scm [ 10%] LOAD guix/import/pypi.scm [ 10%] LOAD guix/import/stackage.scm [ 10%] LOAD guix/import/texlive.scm [ 10%] LOAD guix/import/utils.scm [ 11%] LOAD guix/scripts.scm [ 11%] LOAD guix/ssh.scm [ 11%] LOAD guix/remote.scm [ 11%] LOAD guix/store/ssh.scm [ 11%] LOAD guix/avahi.scm [ 11%] LOAD guix/store/database.scm [ 11%] LOAD guix/store/deduplication.scm [ 11%] LOAD guix/store/roots.scm [ 11%] LOAD guix/config.scm [ 11%] LOAD guix/tests.scm CXX nix/nix-daemon/guix_daemon-guix-daemon.o CXX nix/libstore/libstore_a-gc.o CXX nix/libstore/libstore_a-globals.o CXX nix/libstore/libstore_a-misc.o CXX nix/libstore/libstore_a-references.o CXX nix/libstore/libstore_a-store-api.o CXX nix/libstore/libstore_a-optimise-store.o CXX nix/libstore/libstore_a-local-store.o CXX nix/libstore/libstore_a-build.o CXX nix/libstore/libstore_a-pathlocks.o CXX nix/libstore/libstore_a-derivations.o CXX nix/libstore/libstore_a-builtins.o CXX nix/libstore/libstore_a-sqlite.o CXX nix/libutil/libutil_a-archive.o CXX nix/libutil/libutil_a-affinity.o CXX nix/libutil/libutil_a-serialise.o CXX nix/libutil/libutil_a-util.o CXX nix/libutil/libutil_a-hash.o CXX nix/boost/format/libformat_a-free_funcs.o CXX nix/boost/format/libformat_a-parsing.o CXX nix/boost/format/libformat_a-format_implementation.o CC gnu/packages/aux-files/guile-guile-launcher.o AR libformat.a ar: `u' modifier ignored since `D' is the default (see `U') CCLD guile AR libstore.a ar: `u' modifier ignored since `D' is the default (see `U') AR libutil.a ar: `u' modifier ignored since `D' is the default (see `U') CXXLD guix-daemon HELP2MAN doc/guix-daemon.1 [ 11%] LOAD guix/tests/http.scm [ 11%] LOAD guix/tests/git.scm [ 11%] LOAD guix/tests/gnupg.scm [ 11%] GUILEC guix.go [ 11%] GUILEC guix/base16.go [ 11%] GUILEC guix/base32.go [ 11%] GUILEC guix/base64.go [ 11%] GUILEC guix/ci.go [ 11%] GUILEC guix/cpio.go [ 12%] GUILEC guix/deprecation.go [ 12%] GUILEC guix/docker.go [ 12%] GUILEC guix/records.go [ 12%] GUILEC guix/openpgp.go [ 12%] GUILEC guix/pki.go [ 12%] GUILEC guix/progress.go [ 12%] GUILEC guix/combinators.go [ 12%] GUILEC guix/memoization.go [ 12%] GUILEC guix/utils.go [ 12%] GUILEC guix/sets.go [ 12%] GUILEC guix/modules.go [ 12%] GUILEC guix/download.go [ 12%] GUILEC guix/discovery.go [ 12%] GUILEC guix/android-repo-download.go [ 12%] GUILEC guix/bzr-download.go [ 12%] GUILEC guix/extracting-download.go [ 12%] GUILEC guix/git-download.go [ 12%] GUILEC guix/hg-download.go [ 12%] GUILEC guix/swh.go [ 13%] GUILEC guix/monads.go [ 13%] GUILEC guix/monad-repl.go [ 13%] GUILEC guix/gexp.go [ 13%] GUILEC guix/profiles.go [ 13%] GUILEC guix/serialization.go [ 13%] GUILEC guix/nar.go [ 13%] GUILEC guix/narinfo.go [ 13%] GUILEC guix/derivations.go [ 13%] GUILEC guix/grafts.go [ 13%] GUILEC guix/repl.go [ 13%] GUILEC guix/transformations.go [ 13%] GUILEC guix/inferior.go [ 13%] GUILEC guix/describe.go [ 13%] GUILEC guix/quirks.go [ 13%] GUILEC guix/channels.go [ 13%] GUILEC guix/gnu-maintenance.go [ 13%] GUILEC guix/self.go [ 13%] GUILEC guix/substitutes.go [ 13%] GUILEC guix/upstream.go [ 14%] GUILEC guix/licenses.go [ 14%] GUILEC guix/lint.go [ 14%] GUILEC guix/glob.go [ 14%] GUILEC guix/git.go [ 14%] GUILEC guix/git-authenticate.go [ 14%] GUILEC guix/graph.go [ 14%] GUILEC guix/cache.go [ 14%] GUILEC guix/cve.go [ 14%] GUILEC guix/workers.go [ 14%] GUILEC guix/ipfs.go [ 14%] GUILEC guix/build-system.go [ 14%] GUILEC guix/build-system/android-ndk.go [ 14%] GUILEC guix/build-system/ant.go [ 14%] GUILEC guix/build-system/cargo.go [ 14%] GUILEC guix/build-system/chicken.go [ 14%] GUILEC guix/build-system/clojure.go [ 14%] GUILEC guix/build-system/cmake.go [ 14%] GUILEC guix/build-system/dub.go [ 15%] GUILEC guix/build-system/dune.go [ 15%] GUILEC guix/build-system/emacs.go [ 15%] GUILEC guix/build-system/font.go [ 15%] GUILEC guix/build-system/go.go [ 15%] GUILEC guix/build-system/meson.go [ 15%] GUILEC guix/build-system/minify.go [ 15%] GUILEC guix/build-system/minetest.go [ 15%] GUILEC guix/build-system/asdf.go [ 15%] GUILEC guix/build-system/copy.go [ 15%] GUILEC guix/build-system/glib-or-gtk.go [ 15%] GUILEC guix/build-system/gnu.go [ 15%] GUILEC guix/build-system/guile.go [ 15%] GUILEC guix/build-system/haskell.go [ 15%] GUILEC guix/build-system/julia.go [ 15%] GUILEC guix/build-system/linux-module.go [ 15%] GUILEC guix/build-system/maven.go [ 15%] GUILEC guix/build-system/node.go [ 15%] GUILEC guix/build-system/perl.go [ 15%] GUILEC guix/build-system/python.go [ 16%] GUILEC guix/build-system/renpy.go [ 16%] GUILEC guix/build-system/ocaml.go [ 16%] GUILEC guix/build-system/qt.go [ 16%] GUILEC guix/build-system/waf.go [ 16%] GUILEC guix/build-system/r.go [ 16%] GUILEC guix/build-system/rakudo.go [ 16%] GUILEC guix/build-system/ruby.go [ 16%] GUILEC guix/build-system/scons.go [ 16%] GUILEC guix/build-system/texlive.go [ 16%] GUILEC guix/build-system/trivial.go [ 16%] GUILEC guix/ftp-client.go [ 16%] GUILEC guix/http-client.go [ 16%] GUILEC guix/gnupg.go [ 16%] GUILEC guix/elf.go [ 16%] GUILEC guix/profiling.go [ 16%] GUILEC guix/store.go [ 16%] GUILEC guix/cvs-download.go [ 16%] GUILEC guix/svn-download.go Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload semverstring in (semver): ;;; no code for module (semver) ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload semverderivation' is deprecated, use 'gexp->derivation' instead guix/derivations.scm:1221:4: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead guix/derivations.scm:1260:2: warning: possibly unbound variable `gexp->derivation' guix/store.scm:1869:0: warning: shadows previous definition of `#{ anym %store-monad instance}#' at guix/store.scm:1869:0 guix/store.scm:1869:0: warning: shadows previous definition of `#{ mapm %store-monad instance}#' at guix/store.scm:1869:0 guix/store.scm:1869:0: warning: shadows previous definition of `#{ mapm %store-monad instance}#' at guix/store.scm:1869:0 guix/store.scm:1869:0: warning: shadows previous definition of `#{ foldm %store-monad instance}#' at guix/store.scm:1869:0 guix/store.scm:1869:0: warning: shadows previous definition of `#{ sequence %store-monad instance}#' at guix/store.scm:1869:0 guix/store.scm:1869:0: warning: shadows previous definition of `#{ sequence %store-monad instance}#' at guix/store.scm:1869:0 guix/store.scm:1869:0: warning: shadows previous definition of `#{ anym %store-monad instance}#' at guix/store.scm:1869:0 guix/store.scm:1869:0: warning: shadows previous definition of `#{ foldm %store-monad instance}#' at [ 16%] GUILEC guix/colors.go [ 17%] GUILEC guix/i18n.go [ 17%] GUILEC guix/diagnostics.go [ 17%] GUILEC guix/ui.go [ 17%] GUILEC guix/status.go [ 17%] GUILEC guix/build/android-ndk-build-system.go [ 17%] GUILEC guix/build/ant-build-system.go [ 17%] GUILEC guix/build/download.go [ 17%] GUILEC guix/build/download-nar.go [ 17%] GUILEC guix/build/cargo-build-system.go [ 17%] GUILEC guix/build/cargo-utils.go [ 17%] GUILEC guix/build/chicken-build-system.go guix/store.scm:1869:0 guix/diagnostics.scm:310:9: warning: non-literal format string WARNING: Use of `load' in declarative module (guix ui). Add #:declarative? #f to your define-module invocation. guix/ui.scm:1071:21: warning: non-literal format string guix/ui.scm:1076:21: warning: non-literal format string guix/ui.scm:1122:21: warning: non-literal format string guix/ui.scm:1127:21: warning: non-literal format string guix/ui.scm:1882:19: warning: non-literal format string guix/status.scm:583:5: warning: non-literal format string guix/status.scm:576:5: warning: non-literal format string guix/status.scm:578:5: warning: non-literal format string guix/status.scm:571:5: warning: non-literal format string guix/status.scm:563:9: warning: non-literal format string guix/status.scm:537:7: warning: non-literal format string guix/status.scm:532:7: warning: non-literal format string guix/status.scm:520:5: warning: non-literal format string guix/status.scm:527:8: warning: non-literal format string guix/status.scm:524:8: warning: non-literal format string guix/status.scm:508:7: warning: non-literal format string guix/status.scm:503:10: warning: non-literal format string guix/status.scm:499:25: warning: non-literal format string guix/status.scm:500:16: warning: non-literal format string guix/status.scm:491:12: warning: non-literal format string guix/status.scm:483:13: warning: non-literal format string WARNING: (guix build ant-build-system): imported module (guix build utils) overrides core binding `delete' guix/build/download.scm:178:5: warning: possibly unbound variable `set-certificate-credentials-x509-trust-data!' guix/build/download.scm:184:16: warning: possibly unbound variable `make-certificate-credentials' guix/build/download.scm:198:21: warning: possibly unbound variable `x509-certificate-format/pem' guix/build/download.scm:204:10: warning: possibly unbound variable `session-peer-certificate-chain' guix/build/download.scm:206:6: warning: possibly unbound variable `import-x509-certificate' guix/build/download.scm:206:36: warning: possibly unbound variable `x509-certificate-format/der' guix/build/download.scm:215:11: warning: possibly unbound variable `x509-certificate-matches-hostname?' guix/build/download.scm:220:10: warning: possibly unbound variable `peer-certificate-status' guix/build/download.scm:239:18: warning: possibly unbound variable `certificate-status->string' guix/build/download.scm:234:21: warning: possibly unbound variable `x509-certificate-dn' guix/build/download.scm:252:19: warning: possibly unbound variable `make-session' guix/build/download.scm:252:32: warning: possibly unbound variable `connection-end/client' guix/build/download.scm:261:9: warning: possibly unbound variable `set-session-server-name!' guix/build/download.scm:261:42: warning: possibly unbound variable `server-name-type/dns' guix/build/download.scm:265:5: warning: possibly unbound variable `set-session-transport-fd!' guix/build/download.scm:266:5: warning: possibly unbound variable `set-session-default-priority!' guix/build/download.scm:272:5: warning: possibly unbound variable `set-session-priorities!' guix/build/download.scm:274:5: warning: possibly unbound variable `set-session-credentials!' guix/build/download.scm:287:11: warning: possibly unbound variable `handshake' guix/build/download.scm:289:26: warning: possibly unbound variable `error/warning-alert-received' guix/build/download.scm:294:26: warning: possibly unbound variable `alert-description->string' guix/build/download.scm:294:53: warning: possibly unbound variable `alert-get' guix/build/download.scm:297:26: warning: possibly unbound variable `fatal-error?' guix/build/download.scm:303:32: warning: possibly unbound variable `error->string' guix/build/download.scm:315:19: warning: possibly unbound variable `session-record-port' guix/build/download.scm:326:27: warning: possibly unbound variable `error/premature-termination' WARNING: (guix build cargo-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build chicken-build-system)[ 17%] GUILEC guix/build/cmake-build-system.go [ 17%] GUILEC guix/build/dub-build-system.go [ 17%] GUILEC guix/build/dune-build-system.go [ 17%] GUILEC guix/build/emacs-build-system.go [ 17%] GUILEC guix/build/meson-build-system.go [ 17%] GUILEC guix/build/minify-build-system.go [ 17%] GUILEC guix/build/font-build-system.go [ 17%] GUILEC guix/build/go-build-system.go [ 18%] GUILEC guix/build/android-repo.go [ 18%] GUILEC guix/build/asdf-build-system.go [ 18%] GUILEC guix/build/bzr.go [ 18%] GUILEC guix/build/copy-build-system.go [ 18%] GUILEC guix/build/git.go [ 18%] GUILEC guix/build/hg.go [ 18%] GUILEC guix/build/glib-or-gtk-build-system.go [ 18%] GUILEC guix/build/gnu-bootstrap.go [ 18%] GUILEC guix/build/gnu-build-system.go [ 18%] GUILEC guix/build/gnu-dist.go [ 18%] GUILEC guix/build/guile-build-system.go [ 18%] GUILEC guix/build/maven-build-system.go [ 18%] GUILEC guix/build/minetest-build-system.go [ 18%] GUILEC guix/build/node-build-system.go [ 18%] GUILEC guix/build/perl-build-system.go [ 18%] GUILEC guix/build/python-build-system.go [ 18%] GUILEC guix/build/ocaml-build-system.go [ 18%] GUILEC guix/build/qt-build-system.go [ 18%] GUILEC guix/build/r-build-system.go [ 19%] GUILEC guix/build/renpy-build-system.go [ 19%] GUILEC guix/build/rakudo-build-system.go [ 19%] GUILEC guix/build/ruby-build-system.go [ 19%] GUILEC guix/build/scons-build-system.go [ 19%] GUILEC guix/build/texlive-build-system.go [ 19%] GUILEC guix/build/waf-build-system.go [ 19%] GUILEC guix/build/haskell-build-system.go [ 19%] GUILEC guix/build/julia-build-system.go [ 19%] GUILEC guix/build/linux-module-build-system.go [ 19%] GUILEC guix/build/store-copy.go [ 19%] GUILEC guix/build/json.go [ 19%] GUILEC guix/build/pack.go [ 19%] GUILEC guix/build/utils.go [ 19%] GUILEC guix/build/union.go [ 19%] GUILEC guix/build/profiles.go [ 19%] GUILEC guix/build/compile.go [ 19%] GUILEC guix/build/cvs.go [ 19%] GUILEC guix/build/svn.go [ 20%] GUILEC guix/build/syscalls.go [ 20%] GUILEC guix/build/gremlin.go [ 20%] GUILEC guix/build/debug-link.go [ 20%] GUILEC guix/build/clojure-build-system.go [ 20%] GUILEC guix/build/clojure-utils.go [ 20%] GUILEC guix/build/emacs-utils.go [ 20%] GUILEC guix/build/java-utils.go [ 20%] GUILEC guix/build/lisp-utils.go [ 20%] GUILEC guix/build/meson-configuration.go [ 20%] GUILEC guix/build/maven/java.go [ 20%] GUILEC guix/build/maven/plugin.go [ 20%] GUILEC guix/build/maven/pom.go [ 20%] GUILEC guix/build/graft.go [ 20%] GUILEC guix/build/bournish.go [ 20%] GUILEC guix/build/qt-utils.go [ 20%] GUILEC guix/build/make-bootstrap.go [ 20%] GUILEC guix/search-paths.go [ 20%] GUILEC guix/packages.go [ 20%] GUILEC guix/import/cabal.go [ 21%] GUILEC guix/import/cpan.go [ 21%] GUILEC guix/import/cran.go [ 21%] GUILEC guix/import/crate.go : imported module (guix build utils) overrides core binding `delete' WARNING: (guix build cmake-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build dub-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build dune-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build meson-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build minify-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build font-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build asdf-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build go-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build copy-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build gnu-dist): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build guile-build-system): imported module (guix build utils) overrides core binding `delete' guix/build/guile-build-system.scm:72:44: warning: possibly unbound variable `current-processor-count' WARNING: (guix build maven-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build minetest-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build perl-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build ocaml-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build python-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build r-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build renpy-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build rakudo-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build ruby-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build scons-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build texlive-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build waf-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build haskell-build-system): imported module (guix build utils) overrides core binding `delete' WARNING: (guix build julia-build-system): imported module (guix build utils) overrides core binding `delete' guix/build/compile.scm:48:19: warning: possibly unbound variable `tree-il-default-optimization-options' guix/build/compile.scm:49:19: warning: possibly unbound variable `cps-default-optimization-options' ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload semverstring in (semver): ;;; no code for module (semver) ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload semversemver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload semverstring in (semver): ;;; no code for module (semver) ;;; Failed to autoload semver->string in (semver): ;;; no code for module (semver) ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload semversemver in (semver): ;;; no code for module (semver) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver->string in (semver): ;;; no code for module (semver) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) guix/import/crate.scm:228:5: warning: possibly unbound variable `semver-range-contains?' ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) guix/import/crate.scm:228:29: warning: possibly unbound variable `string->semver-range' ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) guix/import/crate.scm:229:29: warning: possibly unbound variable `string->semver' ;;; [ 21%] GUILEC guix/import/egg.go [ 21%] GUILEC guix/import/elpa.go [ 21%] GUILEC guix/import/gem.go [ 21%] GUILEC guix/import/git.go [ 21%] GUILEC guix/import/github.go [ 21%] GUILEC guix/import/gnome.go [ 21%] GUILEC guix/import/gnu.go [ 21%] GUILEC guix/import/go.go [ 21%] GUILEC guix/import/hackage.go [ 21%] GUILEC guix/import/json.go [ 21%] GUILEC guix/import/kde.go [ 21%] GUILEC guix/import/launchpad.go [ 21%] GUILEC guix/import/minetest.go [ 21%] GUILEC guix/import/opam.go [ 21%] GUILEC guix/import/print.go [ 21%] GUILEC guix/import/pypi.go [ 22%] GUILEC guix/import/stackage.go [ 22%] GUILEC guix/import/texlive.go [ 22%] GUILEC guix/import/utils.go [ 22%] GUILEC guix/scripts.go [ 22%] GUILEC guix/ssh.go [ 22%] GUILEC guix/remote.go [ 22%] GUILEC guix/store/ssh.go [ 22%] GUILEC guix/avahi.go [ 22%] GUILEC guix/store/database.go [ 22%] GUILEC guix/store/deduplication.go [ 22%] GUILEC guix/store/roots.go [ 22%] GUILEC guix/config.go [ 22%] GUILEC guix/tests.go [ 22%] GUILEC guix/tests/http.go [ 22%] GUILEC guix/tests/git.go [ 22%] GUILEC guix/tests/gnupg.go Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload semverstring in (semver): ;;; no code for module (semver) guix/import/crate.scm:256:12: warning: possibly unbound variable `semver->string' ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload semversemver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload semverstring in (semver): ;;; no code for module (semver) ;;; Failed to autoload string->semver-range in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload semver-range-contains? in (semver ranges): ;;; no code for module (semver ranges) ;;; Failed to autoload string->semver in (semver): ;;; no code for module (semver) ;;; Failed to autoload semver: warning: shadows previous definition of `namespace-configuration-location' at gnu/services/messaging.scm:183:0: warning: shadows previous definition of `maybe-file-name?' at gnu/services/messaging.scm:177:0 gnu/services/messaging.scm:183:0: warning: shadows previous definition of `serialize-maybe-file-name' at gnu/services/messaging.scm:177:0 gnu/services/messaging.scm:195:0: warning: shadows previous definition of `maybe-file-object?' at gnu/services/messaging.scm:189:0 gnu/services/messaging.scm:195:0: warning: shadows previous definition of `serialize-maybe-file-object' at gnu/services/messaging.scm:189:0 WARNING: (gnu services shepherd): imported module (gnu services) overrides core binding `delete' WARNING: Use of `load' in declarative module (gnu system install). Add #:declarative? #f to your define-module invocation. ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) gnu/build/jami-service.scm:246:20: warning: possibly unbound variable `fork+exec-command' ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) ;;; Failed to autoload fork+exec-command in (shepherd service): ;;; no code for module (shepherd service) gnu/build/linux-modules.scm:353:14: warning: possibly unbound variable `load-linux-module/fd' gnu/machine/digital-ocean.scm:303:21: warning: 'static-networking-service' is deprecated, use 'static-networking-service-type' instead Compiling Scheme modules... [ 94%] LOAD guix/scripts/download.scm [ 94%] LOAD guix/scripts/perform-download.scm [ 94%] LOAD guix/scripts/build.scm [ 94%] LOAD guix/scripts/archive.scm [ 94%] LOAD guix/scripts/import.scm [ 94%] LOAD guix/scripts/package.scm [ 94%] LOAD guix/scripts/install.scm [ 94%] LOAD guix/scripts/remove.scm [ 94%] LOAD guix/scripts/upgrade.scm [ 94%] LOAD guix/scripts/search.scm [ 94%] LOAD guix/scripts/show.scm [ 94%] LOAD guix/scripts/gc.scm [ 94%] LOAD guix/scripts/hash.scm [ 94%] LOAD guix/scripts/pack.scm [ 95%] LOAD guix/scripts/pull.scm [ 95%] LOAD guix/scripts/processes.scm [ 95%] LOAD guix/scripts/substitute.scm [ 95%] LOAD guix/scripts/authenticate.scm [ 95%] LOAD guix/scripts/refresh.scm [ 95%] LOAD guix/scripts/repl.scm [ 95%] LOAD guix/scripts/describe.scm [ 95%] LOAD guix/scripts/style.scm [ 95%] LOAD guix/scripts/system.scm [ 95%] LOAD guix/scripts/system/search.scm [ 95%] LOAD guix/scripts/system/reconfigure.scm [ 95%] LOAD guix/scripts/home.scm [ 95%] LOAD guix/scripts/home/import.scm [ 95%] LOAD guix/scripts/lint.scm [ 95%] LOAD guix/scripts/challenge.scm [ 95%] LOAD guix/scripts/import/crate.scm [ 95%] LOAD guix/scripts/import/cran.scm [ 95%] LOAD guix/scripts/import/egg.scm [ 95%] LOAD guix/scripts/import/elpa.scm [ 96%] LOAD guix/scripts/import/gem.scm [ 96%] LOAD guix/scripts/import/gnu.scm [ 96%] LOAD guix/scripts/import/go.scm [ 96%] LOAD guix/scripts/import/hackage.scm [ 96%] LOAD guix/scripts/import/json.scm [ 96%] LOAD guix/scripts/import/minetest.scm [ 96%] LOAD guix/scripts/import/opam.scm [ 96%] LOAD guix/scripts/import/pypi.scm [ 96%] LOAD guix/scripts/import/stackage.scm [ 96%] LOAD guix/scripts/import/texlive.scm [ 96%] LOAD guix/scripts/environment.scm [ 96%] LOAD guix/scripts/shell.scm [ 96%] LOAD guix/scripts/publish.scm [ 96%] LOAD guix/scripts/edit.scm [ 96%] LOAD guix/scripts/size.scm [ 96%] LOAD guix/scripts/git.scm [ 96%] LOAD guix/scripts/git/authenticate.scm [ 96%] LOAD guix/scripts/graph.scm [ 96%] LOAD guix/scripts/weather.scm [ 97%] LOAD guix/scripts/container.scm [ 97%] LOAD guix/scripts/container/exec.scm [ 97%] LOAD guix/scripts/deploy.scm [ 97%] LOAD guix/scripts/time-machine.scm [ 97%] LOAD guix/scripts/copy.scm [ 97%] LOAD guix/scripts/discover.scm [ 97%] LOAD guix/scripts/offload.scm [ 97%] GUILEC guix/scripts/download.go [ 97%] GUILEC guix/scripts/perform-download.go [ 97%] GUILEC guix/scripts/build.go [ 97%] GUILEC guix/scripts/archive.go [ 97%] GUILEC guix/scripts/import.go [ 97%] GUILEC guix/scripts/package.go [ 97%] GUILEC guix/scripts/install.go [ 97%] GUILEC guix/scripts/remove.go [ 97%] GUILEC guix/scripts/upgrade.go [ 97%] GUILEC guix/scripts/search.go [ 97%] GUILEC guix/scripts/show.go [ 98%] GUILEC guix/scripts/gc.go [ 98%] GUILEC guix/scripts/hash.go [ 98%] GUILEC guix/scripts/pack.go [ 98%] GUILEC guix/scripts/pull.go [ 98%] GUILEC guix/scripts/processes.go [ 98%] GUILEC guix/scripts/substitute.go [ 98%] GUILEC guix/scripts/authenticate.go [ 98%] GUILEC guix/scripts/refresh.go [ 98%] GUILEC guix/scripts/repl.go [ 98%] GUILEC guix/scripts/describe.go [ 98%] GUILEC guix/scripts/style.go [ 98%] GUILEC guix/scripts/system.go [ 98%] GUILEC guix/scripts/system/search.go [ 98%] GUILEC guix/scripts/system/reconfigure.go [ 98%] GUILEC guix/scripts/home.go [ 98%] GUILEC guix/scripts/home/import.go [ 98%] GUILEC guix/scripts/lint.go [ 98%] GUILEC guix/scripts/challenge.go [ 98%] GUILEC guix/scripts/import/crate.go [ 99%] GUILEC guix/scripts/import/cran.go [ 99%] GUILEC guix/scripts/import/egg.go [ 99%] GUILEC guix/scripts/import/elpa.go [ 99%] GUILEC guix/scripts/import/gem.go [ 99%] GUILEC guix/scripts/import/gnu.go [ 99%] GUILEC guix/scripts/import/go.go [ 99%] GUILEC guix/scripts/import/hackage.go [ 99%] GUILEC guix/scripts/import/json.go [ 99%] GUILEC guix/scripts/import/minetest.go [ 99%] GUILEC guix/scripts/import/opam.go [ 99%] GUILEC guix/scripts/import/pypi.go [ 99%] GUILEC guix/scripts/import/stackage.go [ 99%] GUILEC guix/scripts/import/texlive.go [ 99%] GUILEC guix/scripts/environment.go [ 99%] GUILEC guix/scripts/shell.go [ 99%] GUILEC guix/scripts/publish.go [ 99%] GUILEC guix/scripts/edit.go [ 99%] GUILEC guix/scripts/size.go [ 99%] GUILEC guix/scripts/git.go [100%] GUILEC guix/scripts/git/authenticate.go [100%] GUILEC guix/scripts/graph.go [100%] GUILEC guix/scripts/weather.go [100%] GUILEC guix/scripts/container.go [100%] GUILEC guix/scripts/container/exec.go [100%] GUILEC guix/scripts/deploy.go [100%] GUILEC guix/scripts/time-machine.go [100%] GUILEC guix/scripts/copy.go [100%] GUILEC guix/scripts/discover.go [100%] GUILEC guix/scripts/offload.go WARNING: Use of `load' in declarative module (guix scripts repl). Add #:declarative? #f to your define-module invocation. ;;; Failed to autoload make-page-map in (charting): ;;; no code for module (charting) ;;; Failed to autoload make-page-map in (charting): ;;; no code for module (charting) guix/scripts/pull.scm:289:2: warning: non-literal format string WARNING: Use of `load' in declarative module (guix scripts repl). Add #:declarative? #f to your define-module invocation. ;;; Failed to autoload make-page-map in (charting): ;;; no code for module (charting) ;;; Failed to autoload make-page-map in (charting): ;;; no code for module (charting) ;;; Failed to autoload make-page-map in (charting): ;;; no code for module (charting) ;;; Failed to autoload make-page-map in (charting): ;;; no code for module (charting) ;;; Failed to autoload make-page-map in (charting): ;;; no code for module (charting) ;;; Failed to autoload make-page-map in (charting): ;;; no code for module (charting) guix/scripts/size.scm:224:3: warning: possibly unbound variable `make-page-map' ;;; Failed to autoload make-page-map in (charting): ;;; no code for module (charting) HELP2MAN doc/guix-archive.1 HELP2MAN doc/guix-build.1 HELP2MAN doc/guix-challenge.1 HELP2MAN doc/guix-deploy.1 HELP2MAN doc/guix-download.1 HELP2MAN doc/guix-edit.1 HELP2MAN doc/guix-environment.1 HELP2MAN doc/guix-gc.1 HELP2MAN doc/guix-hash.1 HELP2MAN doc/guix-import.1 HELP2MAN doc/guix-lint.1 HELP2MAN doc/guix-package.1 HELP2MAN doc/guix-publish.1 HELP2MAN doc/guix-pull.1 HELP2MAN doc/guix-refresh.1 HELP2MAN doc/guix-size.1 HELP2MAN doc/guix-system.1 HELP2MAN doc/guix-time-machine.1 HELP2MAN doc/guix-weather.1 HELP2MAN doc/guix.1 make[2]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' make[1]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' phase `build' succeeded after 1130.4 seconds starting phase `copy-bootstrap-guile' accepted connection from pid 5861, user nixbld accepted connection from pid 5881, user nixbld accepted connection from pid 5901, user nixbld accepted connection from pid 5921, user nixbld accepted connection from pid 5941, user nixbld phase `copy-bootstrap-guile' succeeded after 0.4 seconds starting phase `set-SHELL' phase `set-SHELL' succeeded after 0.0 seconds starting phase `check' make check-recursive make[1]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' Making check in po/guix make[2]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/guix' make[2]: Nothing to be done for 'check'. make[2]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/guix' Making check in po/packages make[2]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/packages' make[2]: Nothing to be done for 'check'. make[2]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/po/packages' make[2]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' Compiling Scheme modules... Compiling Scheme modules... Compiling Scheme modules... Compiling Scheme modules... make check-TESTS check-local make[3]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' make[4]: Entering directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' PASS: tests/accounts.scm PASS: tests/base16.scm PASS: tests/base32.scm PASS: tests/base64.scm PASS: tests/boot-parameters.scm PASS: tests/bournish.scm SKIP: tests/builders.scm PASS: tests/build-utils.scm PASS: tests/cache.scm PASS: tests/challenge.scm SKIP: tests/channels.scm PASS: tests/combinators.scm SKIP: tests/containers.scm PASS: tests/cpan.scm SKIP: tests/cpio.scm PASS: tests/cran.scm SKIP: tests/crate.scm PASS: tests/cve.scm SKIP: tests/debug-link.scm SKIP: tests/derivations.scm PASS: tests/discovery.scm PASS: tests/egg.scm PASS: tests/elpa.scm PASS: tests/file-systems.scm PASS: tests/gem.scm PASS: tests/gexp.scm SKIP: tests/git.scm SKIP: tests/git-authenticate.scm PASS: tests/glob.scm PASS: tests/gnu-maintenance.scm PASS: tests/grafts.scm PASS: tests/graph.scm FAIL: tests/gremlin.scm SKIP: tests/hackage.scm PASS: tests/home-import.scm SKIP: tests/import-git.scm PASS: tests/import-utils.scm SKIP: tests/inferior.scm PASS: tests/lint.scm PASS: tests/minetest.scm PASS: tests/modules.scm PASS: tests/monads.scm PASS: tests/nar.scm PASS: tests/networking.scm PASS: tests/opam.scm PASS: tests/openpgp.scm SKIP: tests/packages.scm SKIP: tests/pack.scm PASS: tests/pki.scm PASS: tests/print.scm PASS: tests/processes.scm SKIP: tests/profiles.scm PASS: tests/publish.scm FAIL: tests/pypi.scm PASS: tests/records.scm PASS: tests/scripts.scm PASS: tests/search-paths.scm PASS: tests/services.scm PASS: tests/services/file-sharing.scm PASS: tests/services/linux.scm PASS: tests/services/telephony.scm PASS: tests/sets.scm PASS: tests/size.scm PASS: tests/status.scm PASS: tests/store-database.scm PASS: tests/store-deduplication.scm PASS: tests/store-roots.scm PASS: tests/store.scm PASS: tests/substitute.scm PASS: tests/swh.scm SKIP: tests/syscalls.scm PASS: tests/system.scm PASS: tests/style.scm PASS: tests/texlive.scm PASS: tests/transformations.scm PASS: tests/ui.scm SKIP: tests/union.scm SKIP: tests/upstream.scm PASS: tests/utils.scm PASS: tests/uuid.scm PASS: tests/workers.scm PASS: tests/go.scm PASS: tests/guix-build.sh SKIP: tests/guix-build-branch.sh PASS: tests/guix-download.sh SKIP: tests/guix-git-authenticate.sh PASS: tests/guix-hash.sh SKIP: tests/guix-pack.sh SKIP: tests/guix-pack-localstatedir.sh SKIP: tests/guix-pack-relocatable.sh PASS: tests/guix-package.sh PASS: tests/guix-package-aliases.sh SKIP: tests/guix-package-net.sh FAIL: tests/guix-system.sh SKIP: tests/guix-home.sh PASS: tests/guix-archive.sh PASS: tests/guix-authenticate.sh PASS: tests/guix-environment.sh SKIP: tests/guix-environment-container.sh PASS: tests/guix-shell.sh PASS: tests/guix-graph.sh SKIP: tests/guix-describe.sh PASS: tests/guix-repl.sh PASS: tests/guix-lint.sh PASS: tests/guix-gc.sh PASS: tests/guix-daemon.sh ============================================================================ Testsuite summary for GNU Guix 1.3.0-17.2a49ddb ============================================================================ # TOTAL: 2077 # PASS: 1969 # SKIP: 104 # XFAIL: 1 # FAIL: 3 # XPASS: 0 # ERROR: 0 ============================================================================ See ./test-suite.log Please report to bug-guix@gnu.org ============================================================================ make[4]: *** [Makefile:6411: test-suite.log] Error 1 make[4]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' make[3]: *** [Makefile:6519: check-TESTS] Error 2 make[3]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' make[2]: *** [Makefile:6768: check-am] Error 2 make[2]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' make[1]: *** [Makefile:6296: check-recursive] Error 1 make[1]: Leaving directory '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source' make: *** [Makefile:6770: check] Error 2 Test suite failed, dumping logs. --- ./test-suite.log -------------------------------------------------------- ================================================= GNU Guix 1.3.0-17.2a49ddb: ./test-suite.log ================================================= # TOTAL: 2077 # PASS: 1969 # SKIP: 104 # XFAIL: 1 # FAIL: 3 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 SKIP: tests/builders ==================== test-name: url-fetch location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/builders.scm:60 source: + (test-assert + "url-fetch" + (let* ((url '("http://ftp.gnu.org/gnu/hello/hello-2.8.tar.gz" + "ftp://ftp.gnu.org/gnu/hello/hello-2.8.tar.gz")) + (hash (nix-base32-string->bytevector + "0wqd8sjmxfskrflaxywc7gqw7sfawrfvdxd9skxawzfgyy0pzdz6")) + (drv (url-fetch* + %store + url + 'sha256 + hash + #:guile + %bootstrap-guile)) + (out-path (derivation->output-path drv))) + (and (build-derivations %store (list drv)) + (file-exists? out-path) + (valid-path? %store out-path)))) result: SKIP test-name: url-fetch, file location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/builders.scm:72 source: + (test-assert + "url-fetch, file" + (let* ((file (search-path %load-path "guix.scm")) + (hash (call-with-input-file file port-sha256)) + (out (url-fetch* %store file 'sha256 hash))) + (and (file-exists? out) (valid-path? %store out)))) actual-value: #t result: PASS test-name: url-fetch, file URI location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/builders.scm:79 source: + (test-assert + "url-fetch, file URI" + (let* ((file (search-path %load-path "guix.scm")) + (hash (call-with-input-file file port-sha256)) + (out (url-fetch* + %store + (string-append + "file://" + (canonicalize-path file)) + 'sha256 + hash))) + (and (file-exists? out) (valid-path? %store out)))) actual-value: #t result: PASS test-name: gnu-build-system location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/builders.scm:88 source: + (test-assert + "gnu-build-system" + (build-system? gnu-build-system)) actual-value: #t result: PASS test-name: gnu-build-system unpack phase, single file (compression: gzip) location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/builders.scm:103 source: + (test-equal + (string-append + "gnu-build-system unpack phase, " + "single file (compression: " + (if comp comp "None") + ")") + "expected text" + (let*-values + (((name) "test") + ((compressed-name) + (if ext (string-append name "." ext) name)) + ((file hash) + (test-file + %store + compressed-name + "expected text"))) + (call-with-temporary-directory + (lambda (dir) + (with-directory-excursion + dir + (unpack #:source file) + (call-with-input-file name get-string-all)))))) result: SKIP test-name: gnu-build-system unpack phase, single file (compression: xz) location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/builders.scm:103 source: + (test-equal + (string-append + "gnu-build-system unpack phase, " + "single file (compression: " + (if comp comp "None") + ")") + "expected text" + (let*-values + (((name) "test") + ((compressed-name) + (if ext (string-append name "." ext) name)) + ((file hash) + (test-file + %store + compressed-name + "expected text"))) + (call-with-temporary-directory + (lambda (dir) + (with-directory-excursion + dir + (unpack #:source file) + (call-with-input-file name get-string-all)))))) result: SKIP test-name: gnu-build-system unpack phase, single file (compression: bzip2) location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/builders.scm:103 source: + (test-equal + (string-append + "gnu-build-system unpack phase, " + "single file (compression: " + (if comp comp "None") + ")") + "expected text" + (let*-values + (((name) "test") + ((compressed-name) + (if ext (string-append name "." ext) name)) + ((file hash) + (test-file + %store + compressed-name + "expected text"))) + (call-with-temporary-directory + (lambda (dir) + (with-directory-excursion + dir + (unpack #:source file) + (call-with-input-file name get-string-all)))))) result: SKIP test-name: gnu-build-system unpack phase, single file (compression: None) location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/builders.scm:103 source: + (test-equal + (string-append + "gnu-build-system unpack phase, " + "single file (compression: " + (if comp comp "None") + ")") + "expected text" + (let*-values + (((name) "test") + ((compressed-name) + (if ext (string-append name "." ext) name)) + ((file hash) + (test-file + %store + compressed-name + "expected text"))) + (call-with-temporary-directory + (lambda (dir) + (with-directory-excursion + dir + (unpack #:source file) + (call-with-input-file name get-string-all)))))) result: SKIP test-name: python-build-system: python-dummy-ok location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/builders.scm:179 source: + (test-assert + (string-append + "python-build-system: " + (package-name p)) + (let* ((drv (package-derivation store p))) + (build-derivations store (list drv)))) result: SKIP test-name: python-build-system: python-dummy-no-setuptools location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/builders.scm:179 source: + (test-assert + (string-append + "python-build-system: " + (package-name p)) + (let* ((drv (package-derivation store p))) + (build-derivations store (list drv)))) result: SKIP test-name: python-build-system: python-dummy-fail-requirements location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/builders.scm:185 source: + (test-assert + (string-append + "python-build-system: " + (package-name p)) + (let ((drv (package-derivation store p))) + (guard (c ((store-protocol-error? c) (pk 'failure c #t))) + (build-derivations store (list drv)) + #f))) result: SKIP test-name: python-build-system: python-dummy-fail-import location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/builders.scm:185 source: + (test-assert + (string-append + "python-build-system: " + (package-name p)) + (let ((drv (package-derivation store p))) + (guard (c ((store-protocol-error? c) (pk 'failure c #t))) + (build-derivations store (list drv)) + #f))) result: SKIP test-name: python-build-system: python-dummy-fail-console-script location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/builders.scm:185 source: + (test-assert + (string-append + "python-build-system: " + (package-name p)) + (let ((drv (package-derivation store p))) + (guard (c ((store-protocol-error? c) (pk 'failure c #t))) + (build-derivations store (list drv)) + #f))) result: SKIP SKIP: tests/channels ==================== test-name: channel-instance-metadata returns default if .guix-channel does not exist location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/channels.scm:117 source: + (test-equal + "channel-instance-metadata returns default if .guix-channel does not exist" + '("/" ()) + (let ((metadata + (channel-instance-metadata instance--boring))) + (list (channel-metadata-directory metadata) + (channel-metadata-dependencies metadata)))) expected-value: ("/" ()) actual-value: ("/" ()) result: PASS test-name: channel-instance-metadata and default dependencies location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/channels.scm:123 source: + (test-equal + "channel-instance-metadata and default dependencies" + '() + (channel-metadata-dependencies + (channel-instance-metadata instance--no-deps))) expected-value: () actual-value: () result: PASS test-name: channel-instance-metadata and directory location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/channels.scm:127 source: + (test-equal + "channel-instance-metadata and directory" + "/modules" + (channel-metadata-directory + (channel-instance-metadata + instance--sub-directory))) expected-value: "/modules" actual-value: "/modules" result: PASS test-name: channel-instance-metadata rejects unsupported version location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/channels.scm:132 source: + (test-equal + "channel-instance-metadata rejects unsupported version" + 1 + (guard (c ((and (message-condition? c) (error-location? c)) + (location-line (error-location c)))) + (channel-instance-metadata + instance--unsupported-version))) expected-value: 1 actual-value: 1 result: PASS test-name: channel-instance-metadata returns location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/channels.scm:138 source: + (test-assert + "channel-instance-metadata returns " + (every (@@ (guix channels) channel-metadata?) + (map channel-instance-metadata + (list instance--no-deps + instance--simple + instance--with-dupes)))) actual-value: #t result: PASS test-name: channel-instance-metadata dependencies are channels location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/channels.scm:145 source: + (test-assert + "channel-instance-metadata dependencies are channels" + (let ((deps ((@@ (guix channels) + channel-metadata-dependencies) + (channel-instance-metadata instance--simple)))) + (match deps (((? channel? dep)) #t) (_ #f)))) actual-value: #t result: PASS test-name: latest-channel-instances includes channel dependencies location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/channels.scm:152 source: + (test-assert + "latest-channel-instances includes channel dependencies" + (let* ((channel (channel (name 'test) (url "test"))) + (test-dir + (channel-instance-checkout instance--simple))) + (mock ((guix git) + update-cached-checkout + (lambda* (url #:key ref starting-commit) + (match url + ("test" (values test-dir "caf3cabba9e" #f)) + (_ (values + (channel-instance-checkout instance--no-deps) + "abcde1234" + #f))))) + (with-store + store + (let ((instances + (latest-channel-instances store (list channel)))) + (and (eq? 2 (length instances)) + (lset= eq? + '(test test-channel) + (map (compose + channel-name + channel-instance-channel) + instances)))))))) actual-value: #t result: PASS test-name: latest-channel-instances excludes duplicate channel dependencies location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/channels.scm:171 source: + (test-assert + "latest-channel-instances excludes duplicate channel dependencies" + (let* ((channel (channel (name 'test) (url "test"))) + (test-dir + (channel-instance-checkout instance--with-dupes))) + (mock ((guix git) + update-cached-checkout + (lambda* (url #:key ref starting-commit) + (match url + ("test" (values test-dir "caf3cabba9e" #f)) + (_ (values + (channel-instance-checkout instance--no-deps) + "abcde1234" + #f))))) + (with-store + store + (let ((instances + (latest-channel-instances store (list channel)))) + (and (= 2 (length instances)) + (lset= eq? + '(test test-channel) + (map (compose + channel-name + channel-instance-channel) + instances)) + (find (lambda (instance) + (and (eq? (channel-name + (channel-instance-channel instance)) + 'test-channel) + (string=? + (channel-commit + (channel-instance-channel instance)) + "abc1234"))) + instances))))))) actual-value: #< channel: #< name: test-channel url: "https://example.com/test-channel" branch: "master" commit: "abc1234" introduction: #f location: ((filename . "guix/channels.scm") (line . 261) (column . 19))> commit: "abcde1234" checkout: "/tmp/guix-tests/store/37d863y2gf8krlkc2604l1llj0j845b4-test-channel-abcde12"> result: PASS test-name: latest-channel-instances #:validate-pull location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/channels.scm:201 source: + (test-equal + "latest-channel-instances #:validate-pull" + 'descendant + (let/ec + return + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "first commit") + (add "b.scm" "#t") + (commit "second commit")) + (with-repository + directory + repository + (let* ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second")) + (spec (channel + (url (string-append "file://" directory)) + (name 'foo))) + (new (channel + (inherit spec) + (commit (oid->string (commit-id commit2))))) + (old (channel + (inherit spec) + (commit (oid->string (commit-id commit1)))))) + (define (validate-pull channel current commit relation) + (return + (and (eq? channel old) + (string=? + (oid->string (commit-id commit2)) + current) + (string=? + (oid->string (commit-id commit1)) + commit) + relation))) + (with-store + store + (latest-channel-instances + store + (list old) + #:current-channels + (list new) + #:validate-pull + validate-pull))))))) result: SKIP test-name: channel-instances->manifest location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/channels.scm:234 source: + (test-assert + "channel-instances->manifest" + (let* ((spec (lambda deps + `(channel + (version 0) + (dependencies + ,@(map (lambda (dep) + `(channel + (name ,dep) + (url "http://example.org"))) + deps))))) + (guix (make-instance #:name 'guix)) + (instance0 (make-instance #:name 'a)) + (instance1 + (make-instance #:name 'b #:spec (spec 'a))) + (instance2 + (make-instance #:name 'c #:spec (spec 'b))) + (instance3 + (make-instance #:name 'd #:spec (spec 'c 'a)))) + (%graft? #f) + (let ((source (channel-instance-checkout guix))) + (mkdir (string-append source "/build-aux")) + (call-with-output-file + (string-append + source + "/build-aux/build-self.scm") + (lambda (port) + (write '(begin + (use-modules (guix) (gnu packages bootstrap)) + (lambda _ (package->derivation %bootstrap-guile))) + port)))) + (with-store + store + (let () + (define manifest + (run-with-store + store + (channel-instances->manifest + (list guix + instance0 + instance1 + instance2 + instance3)))) + (define entries (manifest-entries manifest)) + (define (depends? drv in out) + (let ((set (list->set + (requisites + store + (list (derivation-file-name drv))))) + (in (map derivation-file-name in)) + (out (map derivation-file-name out))) + (and (every (cut set-contains? set <>) in) + (not (any (cut set-contains? set <>) out))))) + (define (lookup name) + (run-with-store + store + (lower-object + (manifest-entry-item + (manifest-lookup + manifest + (manifest-pattern (name name))))))) + (let ((drv-guix (lookup "guix")) + (drv0 (lookup "a")) + (drv1 (lookup "b")) + (drv2 (lookup "c")) + (drv3 (lookup "d"))) + (and (depends? + drv-guix + '() + (list drv0 drv1 drv2 drv3)) + (depends? drv0 (list) (list drv1 drv2 drv3)) + (depends? drv1 (list drv0) (list drv2 drv3)) + (depends? drv2 (list drv1) (list drv3)) + (depends? drv3 (list drv2 drv0) (list)))))))) actual-value: #t result: PASS test-name: channel-news, no news location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/channels.scm:311 source: + (test-equal + "channel-news, no news" + '() + (with-temporary-git-repository + directory + '((add "a.txt" "A") (commit "the commit")) + (with-repository + directory + repository + (let ((channel + (channel + (url (string-append "file://" directory)) + (name 'foo))) + (latest (reference-name->oid repository "HEAD"))) + (channel-news-for-commit + channel + (oid->string latest)))))) result: SKIP test-name: channel-news, one entry location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/channels.scm:323 source: + (test-assert + "channel-news, one entry" + (with-temporary-git-repository + directory + `((add ".guix-channel" + ,(object->string + '(channel (version 0) (news-file "news.scm")))) + (commit "first commit") + (add "src/a.txt" "A") + (commit "second commit") + (tag "tag-for-first-news-entry") + (add "news.scm" + ,(lambda (repository) + (let ((previous + (reference-name->oid repository "HEAD"))) + (object->string + `(channel-news + (version 0) + (entry (commit ,(oid->string previous)) + (title (en "New file!") (eo "Nova dosiero!")) + (body (en "Yeah, a.txt.")))))))) + (commit "third commit") + (add "src/b.txt" "B") + (commit "fourth commit") + (add "news.scm" + ,(lambda (repository) + (let ((second + (commit-id + (find-commit repository "second commit"))) + (previous + (reference-name->oid repository "HEAD"))) + (object->string + `(channel-news + (version 0) + (entry (commit ,(oid->string previous)) + (title (en "Another file!")) + (body (en "Yeah, b.txt."))) + (entry (tag "tag-for-first-news-entry") + (title (en "Old news.") (eo "Malnova?oj.")) + (body (en "For a.txt")))))))) + (commit "fifth commit")) + (with-repository + directory + repository + (define (find-commit* message) + (oid->string + (commit-id (find-commit repository message)))) + (let ((channel + (channel + (url (string-append "file://" directory)) + (name 'foo))) + (commit1 (find-commit* "first commit")) + (commit2 (find-commit* "second commit")) + (commit3 (find-commit* "third commit")) + (commit4 (find-commit* "fourth commit")) + (commit5 (find-commit* "fifth commit"))) + (and (null? (channel-news-for-commit channel commit2)) + (lset= string=? + (map channel-news-entry-commit + (channel-news-for-commit channel commit5)) + (list commit2 commit4)) + (lset= equal? + (map channel-news-entry-title + (channel-news-for-commit channel commit5)) + '((("en" . "Another file!")) + (("en" . "Old news.") ("eo" . "Malnova?oj.")))) + (lset= string=? + (map channel-news-entry-commit + (channel-news-for-commit channel commit3)) + (list commit2)) + (lset= string=? + (map channel-news-entry-commit + (channel-news-for-commit channel commit3 commit1)) + (list commit2)) + (lset= string=? + (map channel-news-entry-commit + (channel-news-for-commit channel commit5 commit3)) + (list commit4)) + (lset= string=? + (map channel-news-entry-commit + (channel-news-for-commit channel commit5 commit1)) + (list commit4 commit2)) + (lset= equal? + (map channel-news-entry-tag + (channel-news-for-commit channel commit5 commit1)) + '(#f "tag-for-first-news-entry"))))))) result: SKIP test-name: channel-news, annotated tag location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/channels.scm:411 source: + (test-assert + "channel-news, annotated tag" + (with-temporary-git-repository + directory + `((add ".guix-channel" + ,(object->string + '(channel (version 0) (news-file "news.scm")))) + (add "src/a.txt" "A") + (commit "first commit") + (tag "tag-for-first-news-entry" + "This is an annotated tag.") + (add "news.scm" + ,(lambda (repository) + (let ((previous + (reference-name->oid repository "HEAD"))) + (object->string + `(channel-news + (version 0) + (entry (tag "tag-for-first-news-entry") + (title (en "New file!")) + (body (en "Yeah, a.txt.")))))))) + (commit "second commit")) + (with-repository + directory + repository + (define (find-commit* message) + (oid->string + (commit-id (find-commit repository message)))) + (let ((channel + (channel + (url (string-append "file://" directory)) + (name 'foo))) + (commit1 (find-commit* "first commit")) + (commit2 (find-commit* "second commit"))) + (and (null? (channel-news-for-commit channel commit1)) + (lset= equal? + (map channel-news-entry-title + (channel-news-for-commit channel commit2)) + '((("en" . "New file!")))) + (lset= string=? + (map channel-news-entry-tag + (channel-news-for-commit channel commit2)) + (list "tag-for-first-news-entry")) + (lset= string=? + (map channel-news-entry-commit + (channel-news-for-commit channel commit2)) + (list commit1))))))) result: SKIP test-name: latest-channel-instances, missing introduction for 'guix' location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/channels.scm:458 source: + (test-assert + "latest-channel-instances, missing introduction for 'guix'" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "first commit") + (add "b.scm" "#t") + (commit "second commit")) + (with-repository + directory + repository + (let* ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second")) + (channel + (channel + (url (string-append "file://" directory)) + (name 'guix)))) + (guard (c ((formatted-message? c) + (->bool + (string-contains + (formatted-message-string c) + "introduction")))) + (with-store + store + (latest-channel-instances store (list channel)) + #f)))))) result: SKIP test-name: authenticate-channel, wrong first commit signer location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/channels.scm:479 source: + (test-equal + "authenticate-channel, wrong first commit signer" + #t + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file + %ed25519-2-public-key-file + %ed25519-2-secret-key-file) + (with-temporary-git-repository + directory + `((add ".guix-channel" + ,(object->string + '(channel + (version 0) + (keyring-reference "master")))) + (add ".guix-authorizations" + ,(object->string + `(authorizations + (version 0) + ((,(key-fingerprint %ed25519-public-key-file) + (name "Charlie")))))) + (add "signer.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (commit + "first commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "random" ,(random-text)) + (commit + "second commit" + (signer + ,(key-fingerprint %ed25519-public-key-file)))) + (with-repository + directory + repository + (let* ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second")) + (intro (make-channel-introduction + (commit-id-string commit1) + (openpgp-public-key-fingerprint + (read-openpgp-packet %ed25519-2-public-key-file)))) + (channel + (channel + (name 'example) + (url (string-append "file://" directory)) + (introduction intro)))) + (guard (c ((formatted-message? c) + (and (string-contains + (formatted-message-string c) + "initial commit") + (equal? + (formatted-message-arguments c) + (list (oid->string (commit-id commit1)) + (key-fingerprint %ed25519-public-key-file) + (key-fingerprint + %ed25519-2-public-key-file)))))) + (authenticate-channel + channel + directory + (commit-id-string commit2) + #:keyring-reference-prefix + "") + 'failed)))))) result: SKIP test-name: authenticate-channel, .guix-authorizations location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/channels.scm:529 source: + (test-equal + "authenticate-channel, .guix-authorizations" + #t + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file + %ed25519-2-public-key-file + %ed25519-2-secret-key-file) + (with-temporary-git-repository + directory + `((add ".guix-channel" + ,(object->string + '(channel + (version 0) + (keyring-reference "channel-keyring")))) + (add ".guix-authorizations" + ,(object->string + `(authorizations + (version 0) + ((,(key-fingerprint %ed25519-public-key-file) + (name "Charlie")))))) + (commit "zeroth commit") + (add "a.txt" "A") + (commit + "first commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "b.txt" "B") + (commit + "second commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "c.txt" "C") + (commit + "third commit" + (signer + ,(key-fingerprint %ed25519-2-public-key-file))) + (branch "channel-keyring") + (checkout "channel-keyring") + (add "signer.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (add "other.key" + ,(call-with-input-file + %ed25519-2-public-key-file + get-string-all)) + (commit "keyring commit") + (checkout "master")) + (with-repository + directory + repository + (let* ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second")) + (commit3 (find-commit repository "third")) + (intro (make-channel-introduction + (commit-id-string commit1) + (openpgp-public-key-fingerprint + (read-openpgp-packet %ed25519-public-key-file)))) + (channel + (channel + (name 'example) + (url (string-append "file://" directory)) + (introduction intro)))) + (and (authenticate-channel + channel + directory + (commit-id-string commit2) + #:keyring-reference-prefix + "") + (guard (c ((unauthorized-commit-error? c) + (and (oid=? (git-authentication-error-commit c) + (commit-id commit3)) + (bytevector=? + (openpgp-public-key-fingerprint + (unauthorized-commit-error-signing-key c)) + (openpgp-public-key-fingerprint + (read-openpgp-packet + %ed25519-2-public-key-file)))))) + (authenticate-channel + channel + directory + (commit-id-string commit3) + #:keyring-reference-prefix + "") + 'failed))))))) result: SKIP test-name: latest-channel-instances, authenticate dependency location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/channels.scm:598 source: + (test-equal + "latest-channel-instances, authenticate dependency" + #t + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file) + (with-temporary-git-repository + dependency-directory + `((add ".guix-channel" + ,(object->string + '(channel + (version 0) + (keyring-reference "master")))) + (add ".guix-authorizations" + ,(object->string `(authorizations (version 0) ()))) + (add "signer.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (commit + "zeroth commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "foo.txt" "evil") + (commit "unsigned commit")) + (with-repository + dependency-directory + dependency + (let* ((commit0 (find-commit dependency "zeroth")) + (commit1 (find-commit dependency "unsigned")) + (intro `(channel-introduction + (version 0) + (commit ,(commit-id-string commit0)) + (signer + ,(openpgp-format-fingerprint + (openpgp-public-key-fingerprint + (read-openpgp-packet + %ed25519-public-key-file))))))) + (with-temporary-git-repository + directory + `((add ".guix-channel" + ,(object->string + `(channel + (version 0) + (dependencies + (channel + (name test-channel) + (url ,dependency-directory) + (introduction ,intro)))))) + (commit "single commit")) + (let ((channel (channel (name 'test) (url directory)))) + (guard (c ((unsigned-commit-error? c) + (oid=? (git-authentication-error-commit c) + (commit-id commit1)))) + (with-store + store + (latest-channel-instances store (list channel)) + 'failed))))))))) result: SKIP Updating channel 'test' from Git repository at 'test'... Updating channel 'test-channel' from Git repository at 'https://example.com/test-channel'... Updating channel 'test' from Git repository at 'test'... Updating channel 'test-channel' from Git repository at 'https://example.com/test-channel'... Updating channel 'test-channel' from Git repository at 'https://example.com/test-channel'... SKIP: tests/containers ====================== test-name: call-with-container, exit with 0 when there is no error location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/containers.scm:51 source: + (test-assert + "call-with-container, exit with 0 when there is no error" + (zero? (call-with-container + '() + (const #t) + #:namespaces + '(user)))) result: SKIP test-name: call-with-container, user namespace location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/containers.scm:57 source: + (test-assert + "call-with-container, user namespace" + (zero? (call-with-container + '() + (lambda () + (assert-exit + (and (zero? (getuid)) (zero? (getgid))))) + #:namespaces + '(user)))) result: SKIP test-name: call-with-container, user namespace, guest UID/GID location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/containers.scm:67 source: + (test-assert + "call-with-container, user namespace, guest UID/GID" + (zero? (call-with-container + '() + (lambda () + (assert-exit + (and (= 42 (getuid)) (= 77 (getgid))))) + #:guest-uid + 42 + #:guest-gid + 77 + #:namespaces + '(user)))) result: SKIP test-name: call-with-container, uts namespace location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/containers.scm:78 source: + (test-assert + "call-with-container, uts namespace" + (zero? (call-with-container + '() + (lambda () + (sethostname "test-container") + (primitive-exit 0)) + #:namespaces + '(user uts)))) result: SKIP test-name: call-with-container, pid namespace location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/containers.scm:90 source: + (test-assert + "call-with-container, pid namespace" + (zero? (call-with-container + '() + (lambda () + (match (primitive-fork) + (0 (assert-exit (= 2 (getpid)))) + (pid (primitive-exit + (match (waitpid pid) + ((_ . status) + (status:exit-val status))))))) + #:namespaces + '(user pid)))) result: SKIP test-name: call-with-container, mnt namespace location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/containers.scm:107 source: + (test-assert + "call-with-container, mnt namespace" + (zero? (call-with-container + (list (file-system + (device "none") + (mount-point "/testing") + (type "tmpfs") + (check? #f))) + (lambda () + (assert-exit (file-exists? "/testing"))) + #:namespaces + '(user mnt)))) result: SKIP test-name: call-with-container, mnt namespace, wrong bind mount location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/containers.scm:120 source: + (test-equal + "call-with-container, mnt namespace, wrong bind mount" + `(system-error ,ENOENT) + (catch 'system-error + (lambda () + (call-with-container + (list (file-system + (device "/does-not-exist") + (mount-point "/foo") + (type "none") + (flags '(bind-mount)) + (check? #f))) + (const #t) + #:namespaces + '(user mnt))) + (lambda args + (list 'system-error (system-error-errno args))))) result: SKIP test-name: call-with-container, all namespaces location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/containers.scm:138 source: + (test-assert + "call-with-container, all namespaces" + (zero? (call-with-container + '() + (lambda () (primitive-exit 0))))) result: SKIP test-name: call-with-container, mnt namespace, root permissions location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/containers.scm:146 source: + (test-assert + "call-with-container, mnt namespace, root permissions" + (zero? (call-with-container + '() + (lambda () + (assert-exit (= 493 (stat:perms (lstat "/"))))) + #:namespaces + '(user mnt)))) result: SKIP test-name: container-excursion location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/containers.scm:155 source: + (test-assert + "container-excursion" + (call-with-temporary-directory + (lambda (root) + (match (list (pipe) (pipe)) + (((start-in . start-out) (end-in . end-out)) + (define (container) + (close end-out) + (close start-in) + (write 'ready start-out) + (close start-out) + (read end-in) + (close end-in)) + (define (namespaces pid) + (let ((pid (number->string pid))) + (map (lambda (ns) + (readlink (string-append "/proc/" pid "/ns/" ns))) + '("user" "ipc" "uts" "net" "pid" "mnt")))) + (let* ((pid (run-container root '() %namespaces 1 container)) + (container-namespaces (namespaces pid)) + (result + (begin + (close start-out) + (read start-in) + (close start-in) + (container-excursion + pid + (lambda () + (match (primitive-fork) + (0 + (assert-exit + (equal? + container-namespaces + (namespaces (getpid))))) + (fork-pid + (match (waitpid fork-pid) + ((_ . status) + (primitive-exit + (status:exit-val + status))))))))))) + (close end-in) + (write 'done end-out) + (close end-out) + (waitpid pid) + (zero? result))))))) result: SKIP test-name: container-excursion, same namespaces location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/containers.scm:213 source: + (test-equal + "container-excursion, same namespaces" + 42 + (container-excursion + (getpid) + (lambda () (primitive-exit 42)))) result: SKIP test-name: container-excursion* location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/containers.scm:223 source: + (test-assert + "container-excursion*" + (call-with-temporary-directory + (lambda (root) + (define (namespaces pid) + (let ((pid (number->string pid))) + (map (lambda (ns) + (readlink (string-append "/proc/" pid "/ns/" ns))) + '("user" "ipc" "uts" "net" "pid" "mnt")))) + (let* ((pid (run-container + root + '() + %namespaces + 1 + (lambda () (sleep 100)))) + (expected (namespaces pid)) + (result + (container-excursion* + pid + (lambda () (namespaces 1))))) + (kill pid SIGKILL) + (equal? result expected))))) result: SKIP test-name: container-excursion*, same namespaces location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/containers.scm:245 source: + (test-equal + "container-excursion*, same namespaces" + 42 + (container-excursion* + (getpid) + (lambda () (* 6 7)))) result: SKIP test-name: eval/container, exit status location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/containers.scm:253 source: + (test-equal + "eval/container, exit status" + 42 + (let* ((store (open-connection-for-tests)) + (status + (run-with-store + store + (eval/container (gexp (exit 42)))))) + (close-connection store) + (status:exit-val status))) result: SKIP test-name: eval/container, writable user mapping location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/containers.scm:263 source: + (test-assert + "eval/container, writable user mapping" + (call-with-temporary-directory + (lambda (directory) + (define store (open-connection-for-tests)) + (define result (string-append directory "/r")) + (define requisites* (store-lift requisites)) + (call-with-output-file result (const #t)) + (run-with-store + store + (mlet %store-monad + ((status + (eval/container + (gexp (begin + (use-modules (ice-9 ftw)) + (call-with-output-file + "/result" + (lambda (port) + (write (scandir (ungexp (%store-prefix))) + port))))) + #:mappings + (list (file-system-mapping + (source result) + (target "/result") + (writable? #t))))) + (reqs (requisites* + (list (derivation->output-path (%guile-for-build)))))) + (close-connection store) + (return + (and (zero? (pk 'status status)) + (lset= string=? + (cons* "." ".." (map basename reqs)) + (pk (call-with-input-file result read)))))))))) result: SKIP test-name: eval/container, non-empty load path location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/containers.scm:297 source: + (test-assert + "eval/container, non-empty load path" + (call-with-temporary-directory + (lambda (directory) + (define store (open-connection-for-tests)) + (define result (string-append directory "/r")) + (define requisites* (store-lift requisites)) + (mkdir result) + (run-with-store + store + (mlet %store-monad + ((status + (eval/container + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules (guix build utils)) + (mkdir-p "/result/a/b/c")))) + #:mappings + (list (file-system-mapping + (source result) + (target "/result") + (writable? #t)))))) + (close-connection store) + (return + (and (zero? status) + (file-is-directory? + (string-append result "/a/b/c"))))))))) result: SKIP SKIP: tests/cpio ================ test-name: file->cpio-header + write-cpio-header + read-cpio-header location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/cpio.scm:37 source: + (test-assert + "file->cpio-header + write-cpio-header + read-cpio-header" + (let* ((file (search-path %load-path "guix.scm")) + (header (file->cpio-header file))) + (call-with-values + (lambda () (open-bytevector-output-port)) + (lambda (port get-bv) + (write-cpio-header header port) + (let ((port (open-bytevector-input-port (get-bv)))) + (equal? header (read-cpio-header port))))))) actual-value: #t result: PASS test-name: bit-identical to GNU cpio's output location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/cpio.scm:49 source: + (test-assert + "bit-identical to GNU cpio's output" + (call-with-temporary-output-file + (lambda (link _) + (delete-file link) + (symlink "chbouib" link) + (let ((files (cons* "/" + (canonicalize-path + (dirname (search-path %load-path "guix.scm"))) + link + (map (compose + canonicalize-path + (cut search-path %load-path <>)) + '("guix.scm" + "guix/build/syscalls.scm" + "guix/packages.scm"))))) + (call-with-temporary-output-file + (lambda (ref-file _) + (let ((pipe (open-pipe* + OPEN_WRITE + %cpio-program + "-o" + "-O" + ref-file + "-H" + "newc" + "--null"))) + (for-each + (lambda (file) (format pipe "~a\x00" file)) + files) + (and (zero? (close-pipe pipe)) + (call-with-temporary-output-file + (lambda (file port) + (write-cpio-archive files port) + (close-port port) + (or (file=? ref-file file) + (throw 'cpio-archives-differ + files + ref-file + file + (stat:size (stat ref-file)) + (stat:size (stat file)))))))))))))) result: SKIP SKIP: tests/crate ================= test-name: guix-package->crate-name location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/crate.scm:326 source: + (test-equal + "guix-package->crate-name" + "rustc-serialize" + (guix-package->crate-name + (dummy-package + "rust-rustc-serialize" + (source + (dummy-origin + (uri (crate-uri "rustc-serialize" "1.0"))))))) expected-value: "rustc-serialize" actual-value: "rustc-serialize" result: PASS test-name: crate->guix-package location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/crate.scm:335 source: + (test-assert + "crate->guix-package" + (mock ((guix http-client) + http-fetch + (lambda (url . rest) + (match url + ("https://crates.io/api/v1/crates/foo" + (open-input-string test-foo-crate)) + ("https://crates.io/api/v1/crates/foo/1.0.3/download" + (set! test-source-hash + (bytevector->nix-base32-string + (sha256 + (string->bytevector "empty file\n" "utf-8")))) + (open-input-string "empty file\n")) + ("https://crates.io/api/v1/crates/foo/1.0.3/dependencies" + (open-input-string test-foo-dependencies)) + ("https://crates.io/api/v1/crates/leaf-alice" + (open-input-string test-leaf-alice-crate)) + ("https://crates.io/api/v1/crates/leaf-alice/0.7.5/download" + (set! test-source-hash + (bytevector->nix-base32-string + (sha256 + (string->bytevector "empty file\n" "utf-8")))) + (open-input-string "empty file\n")) + ("https://crates.io/api/v1/crates/leaf-alice/0.7.5/dependencies" + (open-input-string test-leaf-alice-dependencies)) + (_ (error "Unexpected URL: " url))))) + (match (crate->guix-package "foo") + ((define-public 'rust-foo-1 + (package + (name "rust-foo") + (version "1.0.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "foo" 'version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 (base32 (? string? hash))))) + (build-system 'cargo-build-system) + (arguments + ('quasiquote + (#:skip-build? + #t + #:cargo-inputs + (("rust-leaf-alice" + ('unquote 'rust-leaf-alice-0.7)))))) + (home-page "http://example.com") + (synopsis "summary") + (description "summary") + (license (list license:expat license:asl2.0)))) + (string=? test-source-hash hash)) + (x (pk 'fail x #f))))) result: SKIP test-name: cargo-recursive-import location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/crate.scm:388 source: + (test-assert + "cargo-recursive-import" + (mock ((guix http-client) + http-fetch + (lambda (url . rest) + (match url + ("https://crates.io/api/v1/crates/root" + (open-input-string test-root-crate)) + ("https://crates.io/api/v1/crates/root/1.0.4/download" + (set! test-source-hash + (bytevector->nix-base32-string + (sha256 + (string->bytevector "empty file\n" "utf-8")))) + (open-input-string "empty file\n")) + ("https://crates.io/api/v1/crates/root/1.0.4/dependencies" + (open-input-string test-root-dependencies)) + ("https://crates.io/api/v1/crates/intermediate-a" + (open-input-string test-intermediate-a-crate)) + ("https://crates.io/api/v1/crates/intermediate-a/1.0.42/download" + (set! test-source-hash + (bytevector->nix-base32-string + (sha256 + (string->bytevector "empty file\n" "utf-8")))) + (open-input-string "empty file\n")) + ("https://crates.io/api/v1/crates/intermediate-a/1.0.42/dependencies" + (open-input-string + test-intermediate-a-dependencies)) + ("https://crates.io/api/v1/crates/intermediate-b" + (open-input-string test-intermediate-b-crate)) + ("https://crates.io/api/v1/crates/intermediate-b/1.2.3/download" + (set! test-source-hash + (bytevector->nix-base32-string + (sha256 + (string->bytevector "empty file\n" "utf-8")))) + (open-input-string "empty file\n")) + ("https://crates.io/api/v1/crates/intermediate-b/1.2.3/dependencies" + (open-input-string + test-intermediate-b-dependencies)) + ("https://crates.io/api/v1/crates/leaf-alice" + (open-input-string test-leaf-alice-crate)) + ("https://crates.io/api/v1/crates/leaf-alice/0.7.5/download" + (set! test-source-hash + (bytevector->nix-base32-string + (sha256 + (string->bytevector "empty file\n" "utf-8")))) + (open-input-string "empty file\n")) + ("https://crates.io/api/v1/crates/leaf-alice/0.7.5/dependencies" + (open-input-string test-leaf-alice-dependencies)) + ("https://crates.io/api/v1/crates/leaf-bob" + (open-input-string test-leaf-bob-crate)) + ("https://crates.io/api/v1/crates/leaf-bob/3.0.1/download" + (set! test-source-hash + (bytevector->nix-base32-string + (sha256 + (string->bytevector "empty file\n" "utf-8")))) + (open-input-string "empty file\n")) + ("https://crates.io/api/v1/crates/leaf-bob/3.0.1/dependencies" + (open-input-string test-leaf-bob-dependencies)) + (_ (error "Unexpected URL: " url))))) + (match (crate-recursive-import "root") + (((define-public 'rust-leaf-alice-0.7 + (package + (name "rust-leaf-alice") + (version "0.7.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "leaf-alice" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 (base32 (? string? hash))))) + (build-system cargo-build-system) + (arguments ('quasiquote (#:skip-build? #t))) + (home-page "http://example.com") + (synopsis "summary") + (description "summary") + (license (list license:expat license:asl2.0)))) + (define-public 'rust-leaf-bob-3 + (package + (name "rust-leaf-bob") + (version "3.0.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "leaf-bob" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 (base32 (? string? hash))))) + (build-system cargo-build-system) + (arguments ('quasiquote (#:skip-build? #t))) + (home-page "http://example.com") + (synopsis "summary") + (description "summary") + (license (list license:expat license:asl2.0)))) + (define-public 'rust-intermediate-b-1 + (package + (name "rust-intermediate-b") + (version "1.2.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "intermediate-b" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 (base32 (? string? hash))))) + (build-system cargo-build-system) + (arguments + ('quasiquote + (#:skip-build? + #t + #:cargo-inputs + (("rust-leaf-bob" ('unquote rust-leaf-bob-3)))))) + (home-page "http://example.com") + (synopsis "summary") + (description "summary") + (license (list license:expat license:asl2.0)))) + (define-public 'rust-intermediate-a-1 + (package + (name "rust-intermediate-a") + (version "1.0.42") + (source + (origin + (method url-fetch) + (uri (crate-uri "intermediate-a" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 (base32 (? string? hash))))) + (build-system cargo-build-system) + (arguments + ('quasiquote + (#:skip-build? + #t + #:cargo-inputs + (("rust-intermediate-b" + ('unquote rust-intermediate-b-1)) + ("rust-leaf-alice" + ('unquote 'rust-leaf-alice-0.7)) + ("rust-leaf-bob" ('unquote rust-leaf-bob-3)))))) + (home-page "http://example.com") + (synopsis "summary") + (description "summary") + (license (list license:expat license:asl2.0)))) + (define-public 'rust-root-1 + (package + (name "rust-root") + (version "1.0.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "root" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 (base32 (? string? hash))))) + (build-system cargo-build-system) + (arguments + ('quasiquote + (#:cargo-inputs + (("rust-intermediate-a" + ('unquote rust-intermediate-a-1)) + ("rust-intermediate-b" + ('unquote rust-intermediate-b-1)) + ("rust-leaf-alice" + ('unquote 'rust-leaf-alice-0.7)) + ("rust-leaf-bob" ('unquote rust-leaf-bob-3)))))) + (home-page "http://example.com") + (synopsis "summary") + (description "summary") + (license (list license:expat license:asl2.0))))) + #t) + (x (pk 'fail x #f))))) result: SKIP test-name: licenses: MIT OR Apache-2.0 location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/crate.scm:562 source: + (test-equal + "licenses: MIT OR Apache-2.0" + '(license:expat license:asl2.0) + (string->license "MIT OR Apache-2.0")) expected-value: (license:expat license:asl2.0) actual-value: (license:expat license:asl2.0) result: PASS test-name: licenses: Apache-2.0 / MIT location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/crate.scm:566 source: + (test-equal + "licenses: Apache-2.0 / MIT" + '(license:asl2.0 license:expat) + (string->license "Apache-2.0 / MIT")) expected-value: (license:asl2.0 license:expat) actual-value: (license:asl2.0 license:expat) result: PASS test-name: licenses: Apache-2.0 WITH LLVM-exception location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/crate.scm:570 source: + (test-equal + "licenses: Apache-2.0 WITH LLVM-exception" + '(license:asl2.0 unknown-license!) + (string->license + "Apache-2.0 WITH LLVM-exception")) expected-value: (license:asl2.0 unknown-license!) actual-value: (license:asl2.0 unknown-license!) result: PASS test-name: licenses: MIT/Apache-2.0 AND BSD-2-Clause location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/crate.scm:574 source: + (test-equal + "licenses: MIT/Apache-2.0 AND BSD-2-Clause" + '(license:expat license:asl2.0 unknown-license!) + (string->license + "MIT/Apache-2.0 AND BSD-2-Clause")) expected-value: (license:expat license:asl2.0 unknown-license!) actual-value: (license:expat license:asl2.0 unknown-license!) result: PASS test-name: licenses: MIT/Apache-2.0 location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/crate.scm:578 source: + (test-equal + "licenses: MIT/Apache-2.0" + '(license:expat license:asl2.0) + (string->license "MIT/Apache-2.0")) expected-value: (license:expat license:asl2.0) actual-value: (license:expat license:asl2.0) result: PASS test-name: self-test: rust-docopt 0.8.x is gone, please adjust the test case location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/crate.scm:619 source: + (test-assert + "self-test: rust-docopt 0.8.x is gone, please adjust the test case" + (not (null? (find-packages-by-name "rust-docopt" "0.8")))) actual-value: #t result: PASS test-name: cargo-recursive-import-hoors-existing-packages location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/crate.scm:623 source: + (test-assert + "cargo-recursive-import-hoors-existing-packages" + (mock ((guix http-client) + http-fetch + (lambda (url . rest) + (match url + ("https://crates.io/api/v1/crates/doctool" + (open-input-string test-doctool-crate)) + ("https://crates.io/api/v1/crates/doctool/2.2.2/download" + (set! test-source-hash + (bytevector->nix-base32-string + (sha256 + (string->bytevector "empty file\n" "utf-8")))) + (open-input-string "empty file\n")) + ("https://crates.io/api/v1/crates/doctool/2.2.2/dependencies" + (open-input-string test-doctool-dependencies)) + (_ (error "Unexpected URL: " url))))) + (match (crate-recursive-import "doctool") + (((define-public 'rust-doctool-2 + (package + (name "rust-doctool") + (version "2.2.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "doctool" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 (base32 (? string? hash))))) + (build-system cargo-build-system) + (arguments + ('quasiquote + (#:cargo-inputs + (("rust-docopt" ('unquote 'rust-docopt-0.8)))))) + (home-page "http://example.com") + (synopsis "summary") + (description "summary") + (license (list license:expat license:asl2.0))))) + #t) + (x (pk 'fail x #f))))) result: SKIP SKIP: tests/debug-link ====================== test-name: elf-debuglink location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/debug-link.scm:50 source: + (test-assert + "elf-debuglink" + (let ((elf (call-with-input-file %guile-executable read-elf))) + (match (call-with-values + (lambda () (elf-debuglink elf)) + list) + ((#f #f) (pk 'no-debuglink #t)) + (((? string? file) (? integer? crc)) + (string-suffix? ".debug" file))))) actual-value: #t result: PASS test-name: elf-debuglink location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/debug-link.scm:61 source: + (test-assert + "elf-debuglink" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (let* ((code (plain-file + "test.c" + "int main () { return 42; }")) + (exp (with-imported-modules + '((guix build utils) + (guix build debug-link) + (guix elf)) + (gexp (begin + (use-modules + (guix build utils) + (guix build debug-link) + (guix elf) + (rnrs io ports)) + (define read-elf + (compose parse-elf get-bytevector-all)) + (setenv + "PATH" + (string-join + '((ungexp %bootstrap-gcc) + (ungexp %bootstrap-binutils)) + "/bin:" + 'suffix)) + (invoke + "gcc" + "-O0" + "-g" + (ungexp code) + "-o" + "exe") + (copy-file "exe" "exe.debug") + (invoke + "strip" + "--only-keep-debug" + "exe.debug") + (invoke "strip" "--strip-debug" "exe") + (invoke + "objcopy" + "--add-gnu-debuglink=exe.debug" + "exe") + (call-with-values + (lambda () + (elf-debuglink + (call-with-input-file "exe" read-elf))) + (lambda (file crc) + (call-with-output-file + (ungexp output) + (lambda (port) + (let ((expected + (call-with-input-file + "exe.debug" + debuglink-crc32))) + (write (list file (= crc expected)) + port))))))))))) + (mlet* %store-monad + ((drv (gexp->derivation "debuglink" exp)) + (x (built-derivations (list drv)))) + (call-with-input-file + (derivation->output-path drv) + (lambda (port) + (return + (match (read port) + (("exe.debug" #t) #t) + (x (pk 'fail x #f)))))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) result: SKIP test-name: set-debuglink-crc location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/debug-link.scm:106 source: + (test-assert + "set-debuglink-crc" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (let* ((code (plain-file + "test.c" + "int main () { return 42; }")) + (debug (plain-file "exe.debug" "a")) + (exp (with-imported-modules + '((guix build utils) + (guix build debug-link) + (guix elf)) + (gexp (begin + (use-modules + (guix build utils) + (guix build debug-link) + (guix elf) + (rnrs io ports)) + (define read-elf + (compose parse-elf get-bytevector-all)) + (setenv + "PATH" + (string-join + '((ungexp %bootstrap-gcc) + (ungexp %bootstrap-binutils)) + "/bin:" + 'suffix)) + (invoke + "gcc" + "-O0" + "-g" + (ungexp code) + "-o" + "exe") + (copy-file "exe" "exe.debug") + (invoke + "strip" + "--only-keep-debug" + "exe.debug") + (invoke "strip" "--strip-debug" "exe") + (invoke + "objcopy" + "--add-gnu-debuglink=exe.debug" + "exe") + (set-debuglink-crc "exe" (ungexp debug)) + (call-with-values + (lambda () + (elf-debuglink + (call-with-input-file "exe" read-elf))) + (lambda (file crc) + (call-with-output-file + (ungexp output) + (lambda (port) + (write (list file crc) port)))))))))) + (mlet* %store-monad + ((drv (gexp->derivation "debuglink" exp)) + (x (built-derivations (list drv)))) + (call-with-input-file + (derivation->output-path drv) + (lambda (port) + (return + (match (read port) + (("exe.debug" crc) + (= crc + (debuglink-crc32 + (open-input-string "a")))) + (x (pk 'fail x #f)))))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) result: SKIP SKIP: tests/derivations ======================= @ build-started /tmp/guix-tests/store/vs5ag90iqznlzqj96n7nljrmxrxv189h-foo.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/vs//5ag90iqznlzqj96n7nljrmxrxv189h-foo.drv.bz2 6694 @ build-succeeded /tmp/guix-tests/store/vs5ag90iqznlzqj96n7nljrmxrxv189h-foo.drv - /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:152:15: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead random seed for tests: 1641158834 @ build-started /tmp/guix-tests/store/qwajj7x5p523jxgczdvan0g52f4pkld9-fails.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/qw//ajj7x5p523jxgczdvan0g52f4pkld9-fails.drv.bz2 6702 builder for `/tmp/guix-tests/store/qwajj7x5p523jxgczdvan0g52f4pkld9-fails.drv' failed with exit code 1 @ build-failed /tmp/guix-tests/store/qwajj7x5p523jxgczdvan0g52f4pkld9-fails.drv - 1 builder for `/tmp/guix-tests/store/qwajj7x5p523jxgczdvan0g52f4pkld9-fails.drv' failed with exit code 1 @ build-started /tmp/guix-tests/store/kxck5czvgwswx88m5qhpj9l6yfnyp2cz-sleep-then-succeed.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/kx//ck5czvgwswx88m5qhpj9l6yfnyp2cz-sleep-then-succeed.drv.bz2 6703 @ build-succeeded /tmp/guix-tests/store/kxck5czvgwswx88m5qhpj9l6yfnyp2cz-sleep-then-succeed.drv - test-name: parse & export location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:83 source: + (test-assert + "parse & export" + (let* ((f (search-path %load-path "tests/test.drv")) + (b1 (call-with-input-file f get-bytevector-all)) + (d1 (read-derivation + (open-bytevector-input-port b1) + identity)) + (b2 (call-with-bytevector-output-port + (cut write-derivation d1 <>))) + (d2 (read-derivation + (open-bytevector-input-port b2) + identity))) + (and (equal? b1 b2) (equal? d1 d2)))) actual-value: #t result: PASS test-name: add-to-store, flat location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:96 source: + (test-assert + "add-to-store, flat" + (let* ((file (readlink* + (search-path + %load-path + "language/tree-il/spec.scm"))) + (drv (add-to-store + %store + "flat-test" + #f + "sha256" + file))) + (and (eq? 'regular (stat:type (stat drv))) + (valid-path? %store drv) + (equal? + (call-with-input-file file get-bytevector-all) + (call-with-input-file drv get-bytevector-all))))) actual-value: #t result: PASS test-name: add-to-store, recursive location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:107 source: + (test-assert + "add-to-store, recursive" + (let* ((dir (dirname + (readlink* + (search-path + %load-path + "language/tree-il/spec.scm")))) + (drv (add-to-store + %store + "dir-tree-test" + #t + "sha256" + dir))) + (and (eq? 'directory (stat:type (stat drv))) + (valid-path? %store drv) + (equal? + (directory-contents dir) + (directory-contents drv))))) actual-value: #t result: PASS test-name: derivation with no inputs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:117 source: + (test-assert + "derivation with no inputs" + (let* ((builder + (add-text-to-store + %store + "my-builder.sh" + "echo hello, world\n" + '())) + (drv (derivation + %store + "foo" + %bash + `("-e" ,builder) + #:env-vars + '(("HOME" . "/homeless"))))) + (and (store-path? (derivation-file-name drv)) + (valid-path? %store (derivation-file-name drv))))) actual-value: #t result: PASS test-name: build derivation with 1 source location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:127 source: + (test-assert + "build derivation with 1 source" + (let* ((builder + (add-text-to-store + %store + "my-builder.sh" + "echo hello, world > \"$out\"\n" + '())) + (drv (derivation + %store + "foo" + %bash + `(,builder) + #:env-vars + '(("HOME" . "/homeless") + ("zzz" . "Z!") + ("AAA" . "A!")) + #:sources + `(,%bash ,builder))) + (succeeded? + (build-derivations %store (list drv)))) + (and succeeded? + (let ((path (derivation->output-path drv))) + (and (valid-path? %store path) + (string=? + (call-with-input-file path read-line) + "hello, world")))))) actual-value: #t result: PASS test-name: derivation fails but keep going location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:145 source: + (test-assert + "derivation fails but keep going" + (with-store + store + @ build-started /tmp/guix-tests/store/5damiab1qj1ylsppgwkcrlf3dlcch6yj-bar.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/5d//amiab1qj1ylsppgwkcrlf3dlcch6yj-bar.drv.bz2 6710 @ build-succeeded /tmp/guix-tests/store/5damiab1qj1ylsppgwkcrlf3dlcch6yj-bar.drv - @ build-started /tmp/guix-tests/store/kh8yxx0glgh62fk8cdq17g3yi82qw5jj-foo.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/kh//8yxx0glgh62fk8cdq17g3yi82qw5jj-foo.drv.bz2 6711 @ build-succeeded /tmp/guix-tests/store/kh8yxx0glgh62fk8cdq17g3yi82qw5jj-foo.drv - @ build-started /tmp/guix-tests/store/8y966z00gvsrfp2bmk2srxkxfx3xqmi9-ohoh.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/8y//966z00gvsrfp2bmk2srxkxfx3xqmi9-ohoh.drv.bz2 6718 error: unsupported builtin function 'does-not-exist' builder for `/tmp/guix-tests/store/8y966z00gvsrfp2bmk2srxkxfx3xqmi9-ohoh.drv' failed with exit code 1 @ build-failed /tmp/guix-tests/store/8y966z00gvsrfp2bmk2srxkxfx3xqmi9-ohoh.drv - 1 builder for `/tmp/guix-tests/store/8y966z00gvsrfp2bmk2srxkxfx3xqmi9-ohoh.drv' failed with exit code 1 @ build-started /tmp/guix-tests/store/qpfvnp15nh4zwdygprjdbg5smd27h505-world.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/qp//fvnp15nh4zwdygprjdbg5smd27h505-world.drv.bz2 6727 Starting download of /tmp/guix-tests/store/7v00bnlvbspvvs7wzd1m6ws6cghgbz05-world From http://localhost:35875/foo/bar...  bar 64B 0B/s 00:00 [ ] 0.0%  bar 64B 563KiB/s 00:00 [##################] 100.0%  bar 64B 17KiB/s 00:00 [##################] 100.0% @ build-succeeded /tmp/guix-tests/store/qpfvnp15nh4zwdygprjdbg5smd27h505-world.drv - (let* ((d1 (derivation + %store + "fails" + %bash + `("-c" "false") + #:sources + (list %bash))) + (d2 (build-expression->derivation + %store + "sleep-then-succeed" + `(begin ,(random-text) (sleep 2) (mkdir %output))))) + (set-build-options + %store + #:use-substitutes? + #f + #:keep-going? + #t) + (guard (c ((store-protocol-error? c) + (and (= 100 (store-protocol-error-status c)) + (string-contains + (store-protocol-error-message c) + (derivation-file-name d1)) + (not (valid-path? %store (derivation->output-path d1))) + (valid-path? %store (derivation->output-path d2))))) + (build-derivations %store (list d1 d2)) + #f)))) actual-value: #t result: PASS test-name: identical files are deduplicated location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:172 source: + (test-assert + "identical files are deduplicated" + (let* ((data (make-string 9000 #\a)) + (build1 + (add-text-to-store + %store + "one.sh" + (string-append "echo -n " data " > \"$out\"\n") + '())) + (build2 + (add-text-to-store + %store + "two.sh" + (string-append + "# Hey!\necho -n " + data + " > \"$out\"\n") + '())) + (drv1 (derivation + %store + "foo" + %bash + `(,build1) + #:sources + `(,%bash ,build1))) + (drv2 (derivation + %store + "bar" + %bash + `(,build2) + #:sources + `(,%bash ,build2)))) + (and (build-derivations %store (list drv1 drv2)) + (let ((file1 (derivation->output-path drv1)) + (file2 (derivation->output-path drv2))) + (and (valid-path? %store file1) + (valid-path? %store file2) + (string=? + (call-with-input-file file1 get-string-all) + data) + (= (stat:ino (lstat file1)) + (stat:ino (lstat file2)))))))) actual-value: #t result: PASS test-name: built-in-builders location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:198 source: + (test-equal + "built-in-builders" + '("download") + (built-in-builders %store)) expected-value: ("download") actual-value: ("download") result: PASS test-name: unknown built-in builder location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:202 source: + (test-assert + "unknown built-in builder" + (let ((drv (derivation + %store + "ohoh" + "builtin:does-not-exist" + '()))) + (guard (c ((store-protocol-error? c) + (string-contains + (store-protocol-error-message c) + "failed"))) + (build-derivations %store (list drv)) + #f))) actual-value: 75 result: PASS test-name: 'download' built-in builder location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:209 source: + (test-assert + "'download' built-in builder" + (let ((text (random-text))) + (with-http-server + `((200 ,text)) + (let* ((drv (derivation + %store + "world" + "builtin:download" + '() + #:env-vars + `(("url" unquote (object->string (%local-url)))) + #:hash-algo + 'sha256 + #:hash + @ build-started /tmp/guix-tests/store/247ykhgqzljiri5gl8ndqs3azynlankz-world.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/24//7ykhgqzljiri5gl8ndqs3azynlankz-world.drv.bz2 6740 Starting download of /tmp/guix-tests/store/xfd041gm31rc781kbs9s65dfw5ggdwqk-world From http://localhost:33229/foo/bar...  bar 13B 0B/s 00:00 [ ] 0.0%  bar 13B 149KiB/s 00:00 [##################] 100.0%  bar 13B 4KiB/s 00:00 [##################] 100.0% @ hash-mismatch /tmp/guix-tests/store/xfd041gm31rc781kbs9s65dfw5ggdwqk-world sha256 1jgkrfwwvwr86chlrykhvxizv890j99yqyq0qys0crzsfgknrp8m 0a7pd3rizm1qb3kz1ad1wzrijrhwsnq3lj7qprc86zp6a6r5drk8 hash mismatch for store item '/tmp/guix-tests/store/xfd041gm31rc781kbs9s65dfw5ggdwqk-world' @ build-failed /tmp/guix-tests/store/247ykhgqzljiri5gl8ndqs3azynlankz-world.drv - 1 hash mismatch for store item '/tmp/guix-tests/store/xfd041gm31rc781kbs9s65dfw5ggdwqk-world' @ build-started /tmp/guix-tests/store/wzi6i10n9dm7g5f53mjfbjvrs2qyv76n-will-never-be-found.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/wz//i6i10n9dm7g5f53mjfbjvrs2qyv76n-will-never-be-found.drv.bz2 6753 Starting download of /tmp/guix-tests/store/s7irg4ddmzhnav0aq0d7zqy7p56c96mp-will-never-be-found From http://localhost:44075/foo/bar... download failed "http://localhost:44075/foo/bar" 404 "Such is life" Starting download of /tmp/guix-tests/store/s7irg4ddmzhnav0aq0d7zqy7p56c96mp-will-never-be-found From https://web.archive.org/web/20220102195312/http://localhost:44075/foo/bar... In procedure getaddrinfo: Servname not supported for ai_socktype Trying to use Disarchive to assemble /tmp/guix-tests/store/s7irg4ddmzhnav0aq0d7zqy7p56c96mp-will-never-be-found... could not find its Disarchive specification failed to download "/tmp/guix-tests/store/s7irg4ddmzhnav0aq0d7zqy7p56c96mp-will-never-be-found" from "http://localhost:44075/foo/bar" builder for `/tmp/guix-tests/store/wzi6i10n9dm7g5f53mjfbjvrs2qyv76n-will-never-be-found.drv' failed to produce output path `/tmp/guix-tests/store/s7irg4ddmzhnav0aq0d7zqy7p56c96mp-will-never-be-found' @ build-failed /tmp/guix-tests/store/wzi6i10n9dm7g5f53mjfbjvrs2qyv76n-will-never-be-found.drv - 1 builder for `/tmp/guix-tests/store/wzi6i10n9dm7g5f53mjfbjvrs2qyv76n-will-never-be-found.drv' failed to produce output path `/tmp/guix-tests/store/s7irg4ddmzhnav0aq0d7zqy7p56c96mp-will-never-be-found' @ build-started /tmp/guix-tests/store/jkk3x0p6a3aaw4s3xd3xmmz3wmvi63ri-world.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/jk//k3x0p6a3aaw4s3xd3xmmz3wmvi63ri-world.drv.bz2 6765 guix perform-download: error: /tmp/guix-tests/store/jkk3x0p6a3aaw4s3xd3xmmz3wmvi63ri-world.drv is not a fixed-output derivation builder for `/tmp/guix-tests/store/jkk3x0p6a3aaw4s3xd3xmmz3wmvi63ri-world.drv' failed with exit code 1 @ build-failed /tmp/guix-tests/store/jkk3x0p6a3aaw4s3xd3xmmz3wmvi63ri-world.drv - 1 builder for `/tmp/guix-tests/store/jkk3x0p6a3aaw4s3xd3xmmz3wmvi63ri-world.drv' failed with exit code 1 @ build-started /tmp/guix-tests/store/wai9y5v48lgzgpkdncmvkq6v9fbbgjp7-world.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/wa//i9y5v48lgzgpkdncmvkq6v9fbbgjp7-world.drv.bz2 6778 Starting download of /tmp/guix-tests/store/q74kigxqaicv2x91racfadi16vfwcmh7-world From http://localhost:42709/foo/bar...  bar 64B 0B/s 00:00 [ ] 0.0%  bar 64B 735KiB/s 00:00 [##################] 100.0%  bar 64B 16KiB/s 00:00 [##################] 100.0% @ build-succeeded /tmp/guix-tests/store/wai9y5v48lgzgpkdncmvkq6v9fbbgjp7-world.drv - @ build-started /tmp/guix-tests/store/wai9y5v48lgzgpkdncmvkq6v9fbbgjp7-world.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/wa//i9y5v48lgzgpkdncmvkq6v9fbbgjp7-world.drv.bz2 6785 Starting download of /tmp/guix-tests/store/1c3c3z2s325s3a15nxnfxzcmzf1m7ik5-world From http://localhost:42709/foo/bar...  bar 64B 0B/s 00:00 [ ] 0.0%  bar 64B 710KiB/s 00:00 [##################] 100.0%  bar 64B 17KiB/s 00:00 [##################] 100.0% warning: rewriting hashes in `/tmp/guix-tests/store/q74kigxqaicv2x91racfadi16vfwcmh7-world'; cross fingers @ build-succeeded /tmp/guix-tests/store/wai9y5v48lgzgpkdncmvkq6v9fbbgjp7-world.drv - @ build-succeeded /tmp/guix-tests/store/wai9y5v48lgzgpkdncmvkq6v9fbbgjp7-world.drv - (gcrypt:sha256 (string->utf8 text))))) + (and (build-derivations %store (list drv)) + (string=? + (call-with-input-file + (derivation->output-path drv) + get-string-all) + text)))))) actual-value: #t result: PASS test-name: 'download' built-in builder, invalid hash location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:223 source: + (test-assert + "'download' built-in builder, invalid hash" + (with-http-server + `((200 "hello, world!")) + (let* ((drv (derivation + %store + "world" + "builtin:download" + '() + #:env-vars + `(("url" unquote (object->string (%local-url)))) + #:hash-algo + 'sha256 + #:hash + (gcrypt:sha256 (random-bytevector 100))))) + (guard (c ((store-protocol-error? c) + (string-contains + (store-protocol-error-message c) + "failed"))) + (build-derivations %store (list drv)) + #f)))) actual-value: 76 result: PASS ;;; (#<&store-protocol-error message: "build of `/tmp/guix-tests/store/wzi6i10n9dm7g5f53mjfbjvrs2qyv76n-will-never-be-found.drv' failed" status: 1>) test-name: 'download' built-in builder, not found location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:236 source: + (test-assert + "'download' built-in builder, not found" + (with-http-server + '((404 "not found")) + (let* ((drv (derivation + %store + "will-never-be-found" + "builtin:download" + '() + #:env-vars + `(("url" unquote (object->string (%local-url)))) + #:hash-algo + 'sha256 + #:hash + (gcrypt:sha256 (random-bytevector 100))))) + (guard (c ((store-protocol-error? c) + (string-contains + (store-protocol-error-message (pk c)) + "failed"))) + (build-derivations %store (list drv)) + #f)))) actual-value: 90 result: PASS test-name: 'download' built-in builder, not fixed-output location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:249 source: + (test-assert + "'download' built-in builder, not fixed-output" + (let* ((source (add-text-to-store %store "hello" "hi!")) + (url (string-append "file://" source)) + (drv (derivation + %store + "world" + "builtin:download" + '() + #:env-vars + `(("url" unquote (object->string url)))))) + (guard (c ((store-protocol-error? c) + (string-contains + (store-protocol-error-message c) + "failed"))) + (build-derivations %store (list drv)) + #f))) actual-value: 76 result: PASS test-name: 'download' built-in builder, check mode location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:260 source: + (test-assert + "'download' built-in builder, check mode" + (let* ((text (random-text))) + (with-http-server + `((200 ,text)) + (let ((drv (derivation + %store + "world" + "builtin:download" + '() + #:env-vars + `(("url" unquote (object->string (%local-url)))) + #:hash-algo + 'sha256 + #:hash + (gcrypt:sha256 (string->utf8 text))))) + (and drv + (build-derivations %store (list drv)) + (with-http-server + `((200 ,text)) + (build-derivations + %store + (list drv) + @ build-started /tmp/guix-tests/store/96jwq16xjz7rylza5dwfawccn20343sv-fixed-sha1.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/96//jwq16xjz7rylza5dwfawccn20343sv-fixed-sha1.drv.bz2 6797 @ build-succeeded /tmp/guix-tests/store/96jwq16xjz7rylza5dwfawccn20343sv-fixed-sha1.drv - @ build-started /tmp/guix-tests/store/vhg6jxz0w0kggqqlr4vxgw8ywr1pwjn8-fixed-sha256.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/vh//g6jxz0w0kggqqlr4vxgw8ywr1pwjn8-fixed-sha256.drv.bz2 6804 @ build-succeeded /tmp/guix-tests/store/vhg6jxz0w0kggqqlr4vxgw8ywr1pwjn8-fixed-sha256.drv - @ build-started /tmp/guix-tests/store/jhddic95qf3v5szxi6mj2q6wpws5rpd9-fixed-sha512.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/jh//ddic95qf3v5szxi6mj2q6wpws5rpd9-fixed-sha512.drv.bz2 6811 @ build-succeeded /tmp/guix-tests/store/jhddic95qf3v5szxi6mj2q6wpws5rpd9-fixed-sha512.drv - (build-mode check))) + (string=? + (call-with-input-file + (derivation->output-path drv) + get-string-all) + text)))))) actual-value: #t result: PASS test-name: derivation-name location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:279 source: + (test-equal + "derivation-name" + "foo-0.0" + (let ((drv (derivation %store "foo-0.0" %bash '()))) + (derivation-name drv))) expected-value: "foo-0.0" actual-value: "foo-0.0" result: PASS test-name: derivation-output-names location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:284 source: + (test-equal + "derivation-output-names" + '(("out") ("bar" "chbouib")) + (let ((drv1 (derivation %store "foo-0.0" %bash '())) + (drv2 (derivation + %store + "foo-0.0" + %bash + '() + #:outputs + '("bar" "chbouib")))) + (list (derivation-output-names drv1) + (derivation-output-names drv2)))) expected-value: (("out") ("bar" "chbouib")) actual-value: (("out") ("bar" "chbouib")) result: PASS test-name: offloadable-derivation? location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:292 source: + (test-assert + "offloadable-derivation?" + (and (offloadable-derivation? + (derivation %store "foo" %bash '())) + (offloadable-derivation? + (derivation + %store + "foo" + %bash + '() + #:substitutable? + #f)) + (not (offloadable-derivation? + (derivation + %store + "foo" + %bash + '() + #:local-build? + #t))))) actual-value: #t result: PASS test-name: substitutable-derivation? location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:301 source: + (test-assert + "substitutable-derivation?" + (and (substitutable-derivation? + (derivation %store "foo" %bash '())) + (substitutable-derivation? + (derivation + %store + "foo" + %bash + '() + #:local-build? + #t)) + (not (substitutable-derivation? + (derivation + %store + "foo" + %bash + '() + #:substitutable? + #f))))) actual-value: #t result: PASS test-name: fixed-output-derivation? location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:310 source: + (test-assert + "fixed-output-derivation?" + (let* ((builder + (add-text-to-store + %store + "my-fixed-builder.sh" + "echo -n hello > $out" + '())) + (hash (gcrypt:sha256 (string->utf8 "hello"))) + (drv (derivation + %store + "fixed" + %bash + `(,builder) + #:sources + (list builder) + #:hash + hash + #:hash-algo + 'sha256))) + (fixed-output-derivation? drv))) actual-value: #t result: PASS test-name: fixed-output derivation location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:320 source: + (test-equal + "fixed-output derivation" + '(sha1 sha256 sha512) + (map (lambda (hash-algorithm) + (let* ((builder + (add-text-to-store + %store + "my-fixed-builder.sh" + "echo -n hello > $out" + '())) + (sha256 (gcrypt:sha256 (string->utf8 "hello"))) + (hash (gcrypt:bytevector-hash + (string->utf8 "hello") + (gcrypt:lookup-hash-algorithm hash-algorithm))) + (drv (derivation + @ build-started /tmp/guix-tests/store/774a7sq0jnil19038rshypvs2g3aax5c-fixed.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/77//4a7sq0jnil19038rshypvs2g3aax5c-fixed.drv.bz2 6818 hey @ build-succeeded /tmp/guix-tests/store/774a7sq0jnil19038rshypvs2g3aax5c-fixed.drv - @ build-started /tmp/guix-tests/store/0xyynbv4062m04ny014w4x1ycg1ggqik-fixed-rec.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/0x//yynbv4062m04ny014w4x1ycg1ggqik-fixed-rec.drv.bz2 6825 @ build-succeeded /tmp/guix-tests/store/0xyynbv4062m04ny014w4x1ycg1ggqik-fixed-rec.drv - @ build-started /tmp/guix-tests/store/7rb4wh4rbnv2vg2czr89614z41qz2a35-final.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/7r//b4wh4rbnv2vg2czr89614z41qz2a35-final.drv.bz2 6832 /tmp/guix-tests/store/7bdcga4xc915pgzf524xhjk677521whr-fixed @ build-succeeded /tmp/guix-tests/store/7rb4wh4rbnv2vg2czr89614z41qz2a35-final.drv - %store + (string-append + "fixed-" + (symbol->string hash-algorithm)) + %bash + `(,builder) + #:sources + `(,builder) + #:hash + hash + #:hash-algo + hash-algorithm))) + (build-derivations %store (list drv)) + (let ((p (derivation->output-path drv))) + (and (bytevector=? + (string->utf8 "hello") + (call-with-input-file p get-bytevector-all)) + (bytevector? (query-path-hash %store p)) + hash-algorithm)))) + '(sha1 sha256 sha512))) expected-value: (sha1 sha256 sha512) actual-value: (sha1 sha256 sha512) result: PASS test-name: fixed-output derivation: output paths are equal location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:344 source: + (test-assert + "fixed-output derivation: output paths are equal" + (let* ((builder1 + (add-text-to-store + %store + "fixed-builder1.sh" + "echo -n hello > $out" + '())) + (builder2 + (add-text-to-store + %store + "fixed-builder2.sh" + "echo hey; echo -n hello > $out" + '())) + (hash (gcrypt:sha256 (string->utf8 "hello"))) + (drv1 (derivation + %store + "fixed" + %bash + `(,builder1) + #:hash + hash + #:hash-algo + 'sha256)) + (drv2 (derivation + %store + "fixed" + %bash + `(,builder2) + #:hash + hash + #:hash-algo + 'sha256)) + (succeeded? + (build-derivations %store (list drv1 drv2)))) + (and succeeded? + (equal? + (derivation->output-path drv1) + (derivation->output-path drv2))))) actual-value: #t result: PASS test-name: fixed-output derivation, recursive location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:361 source: + (test-assert + "fixed-output derivation, recursive" + (let* ((builder + (add-text-to-store + %store + "my-fixed-builder.sh" + "echo -n hello > $out" + '())) + (hash (gcrypt:sha256 (string->utf8 "hello"))) + (drv (derivation + %store + "fixed-rec" + %bash + `(,builder) + #:sources + (list builder) + #:hash + (base32 + "0sg9f58l1jj88w6pdrfdpj5x9b1zrwszk84j81zvby36q9whhhqa") + #:hash-algo + 'sha256 + #:recursive? + #t)) + (succeeded? + (build-derivations %store (list drv)))) + (and succeeded? + (let ((p (derivation->output-path drv))) + (and (equal? + (string->utf8 "hello") + (call-with-input-file p get-bytevector-all)) + (bytevector? (query-path-hash %store p))))))) actual-value: #t result: PASS test-name: derivation with a fixed-output input location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:378 source: + (test-assert + "derivation with a fixed-output input" + (let* ((builder1 + (add-text-to-store + %store + "fixed-builder1.sh" + "echo -n hello > $out" + '())) + (builder2 + (add-text-to-store + %store + "fixed-builder2.sh" + "echo hey; echo -n hello > $out" + '())) + @ build-started /tmp/guix-tests/store/03f35bblv1jdg0m9rp3r7rx9dc95j0iy-fixed.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/03//f35bblv1jdg0m9rp3r7rx9dc95j0iy-fixed.drv.bz2 6840 @ build-succeeded /tmp/guix-tests/store/03f35bblv1jdg0m9rp3r7rx9dc95j0iy-fixed.drv - (hash (gcrypt:sha256 (string->utf8 "hello"))) + (fixed1 + (derivation + %store + "fixed" + %bash + `(,builder1) + #:hash + hash + #:hash-algo + 'sha256)) + (fixed2 + (derivation + %store + "fixed" + %bash + `(,builder2) + #:hash + hash + #:hash-algo + 'sha256)) + (fixed-out (derivation->output-path fixed1)) + (builder3 + (add-text-to-store + %store + "final-builder.sh" + "echo $in ; (read -u 3 c; echo $c) 3< $in > $out" + '())) + (final1 + (derivation + %store + "final" + %bash + `(,builder3) + #:env-vars + `(("in" unquote fixed-out)) + #:sources + (list %bash builder3) + #:inputs + (list (derivation-input fixed1)))) + (final2 + (derivation + %store + "final" + %bash + `(,builder3) + #:env-vars + `(("in" unquote fixed-out)) + #:sources + (list %bash builder3) + #:inputs + (list (derivation-input fixed2)))) + (succeeded? + (build-derivations %store (list final1 final2)))) + (and succeeded? + (equal? + (derivation->output-path final1) + (derivation->output-path final2))))) actual-value: #t result: PASS test-name: derivation with duplicate fixed-output inputs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:414 source: + (test-assert + "derivation with duplicate fixed-output inputs" + (let* ((builder1 + (add-text-to-store + %store + "fixed-builder1.sh" + "echo -n hello > $out" + '())) + (builder2 + (add-text-to-store + %store + "fixed-builder2.sh" + "echo hey; echo -n hello > $out" + '())) + (hash (gcrypt:sha256 (string->utf8 "hello"))) + (fixed1 + (derivation + %store + "fixed" + %bash + `(,builder1) + #:hash + hash + #:hash-algo + 'sha256)) + (fixed2 + (derivation + %store + "fixed" + %bash + `(,builder2) + #:hash + hash + #:hash-algo + 'sha256)) + (builder3 + (add-text-to-store + %store + "builder.sh" + "echo fake builder")) + (final (derivation + %store + "final" + %bash + `(,builder3) + #:sources + (list %bash builder3) + #:inputs + (list (derivation-input fixed1) + (derivation-input fixed2))))) + (and (derivation? final) + (match (derivation-inputs final) + (((= derivation-input-derivation one) + (= derivation-input-derivation two)) + (and (not (string=? + (derivation-file-name one) + (derivation-file-name two))) + (string=? + (derivation->output-path one) + (derivation->output-path two)))))))) actual-value: #t result: PASS test-name: multiple-output derivation location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:446 source: + (test-assert + "multiple-output derivation" + (let* ((builder + (add-text-to-store + %store + @ build-started /tmp/guix-tests/store/bblxgxkjpdpw5c3cfspkhljpkwrznfwb-fixed.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/bb//lxgxkjpdpw5c3cfspkhljpkwrznfwb-fixed.drv.bz2 6847 @ build-succeeded /tmp/guix-tests/store/bblxgxkjpdpw5c3cfspkhljpkwrznfwb-fixed.drv - "my-fixed-builder.sh" + "echo one > $out ; echo two > $second" + '())) + (drv (derivation + %store + "fixed" + %bash + `(,builder) + #:env-vars + '(("HOME" . "/homeless") + ("zzz" . "Z!") + ("AAA" . "A!")) + #:sources + `(,%bash ,builder) + #:outputs + '("out" "second"))) + (succeeded? + (build-derivations %store (list drv)))) + (and succeeded? + (let ((one (derivation->output-path drv "out")) + (two (derivation->output-path drv "second"))) + (and (lset= equal? + (derivation->output-paths drv) + `(("out" unquote one) ("second" unquote two))) + (eq? 'one (call-with-input-file one read)) + (eq? 'two (call-with-input-file two read))))))) actual-value: #t result: PASS test-name: multiple-output derivation, non-alphabetic order location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:467 source: + (test-assert + "multiple-output derivation, non-alphabetic order" + (let* ((builder + (add-text-to-store + %store + "my-fixed-builder.sh" + "echo one > $out ; echo two > $AAA" + '())) + (drv (derivation + %store + "fixed" + %bash + `(,builder) + #:sources + `(,%bash ,builder) + #:outputs + '("out" "AAA"))) + (succeeded? + (build-derivations %store (list drv)))) + (and succeeded? + (let ((one (derivation->output-path drv "out")) + (two (derivation->output-path drv "AAA"))) + (and (eq? 'one (call-with-input-file one read)) + (eq? 'two (call-with-input-file two read))))))) actual-value: #t result: PASS test-name: read-derivation vs. derivation location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:484 source: + (test-assert + "read-derivation vs. derivation" + (let* ((sources + (unfold + (cut >= <> 10) + (lambda (n) + (add-text-to-store + %store + (format #f "input~a" n) + (random-text))) + #{1+}# + 0)) + (inputs + (map (lambda (file) + (derivation + %store + "derivation-input" + %bash + '() + #:sources + `(,%bash ,file))) + sources)) + (builder + (add-text-to-store + %store + "builder.sh" + "echo one > $one ; echo two > $two" + '())) + (drv (derivation + %store + "derivation" + %bash + `(,builder) + #:sources + `(,%bash ,builder ,@sources) + #:inputs + (map derivation-input inputs) + #:outputs + '("two" "one"))) + (drv* (call-with-input-file + (derivation-file-name drv) + read-derivation))) + (equal? drv* drv))) actual-value: #t result: PASS test-name: multiple-output derivation, derivation-path->output-path location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:511 source: + (test-assert + "multiple-output derivation, derivation-path->output-path" + (let* ((builder + (add-text-to-store + %store + "builder.sh" + "echo one > $out ; echo two > $second" + '())) + (drv (derivation + %store + "multiple" + %bash + @ build-started /tmp/guix-tests/store/3yx2r6pxj7662y23k6bpbc1hwngr8d7m-multiple-output.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/3y//x2r6pxj7662y23k6bpbc1hwngr8d7m-multiple-output.drv.bz2 6854 @ build-succeeded /tmp/guix-tests/store/3yx2r6pxj7662y23k6bpbc1hwngr8d7m-multiple-output.drv - @ build-started /tmp/guix-tests/store/q439a80j1x4c18qygncyf0d3sk1z3vjz-multiple-output-user.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/q4//39a80j1x4c18qygncyf0d3sk1z3vjz-multiple-output-user.drv.bz2 6855 @ build-succeeded /tmp/guix-tests/store/q439a80j1x4c18qygncyf0d3sk1z3vjz-multiple-output-user.drv - @ build-started /tmp/guix-tests/store/v3jq87s27fiifinaiz32x5g0zv5d1zdm-closure-graphs.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/v3//jq87s27fiifinaiz32x5g0zv5d1zdm-closure-graphs.drv.bz2 6862 @ build-succeeded /tmp/guix-tests/store/v3jq87s27fiifinaiz32x5g0zv5d1zdm-closure-graphs.drv - `(,builder) + #:outputs + '("out" "second"))) + (drv-file (derivation-file-name drv)) + (one (derivation->output-path drv "out")) + (two (derivation->output-path drv "second")) + (first (derivation-path->output-path drv-file "out")) + (second + (derivation-path->output-path drv-file "second"))) + (and (not (string=? one two)) + (string-suffix? "-second" two) + (string=? first one) + (string=? second two)))) actual-value: #t result: PASS ;;; (udrv # /tmp/guix-tests/store/awgjaj1xx6hw47x962nc7l01vw5rn2cf-multiple-output-user 23d2460>) test-name: user of multiple-output derivation location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:528 source: + (test-assert + "user of multiple-output derivation" + (let* ((builder1 + (add-text-to-store + %store + "my-mo-builder.sh" + "echo one > $out ; echo two > $two" + '())) + (mdrv (derivation + %store + "multiple-output" + %bash + `(,builder1) + #:sources + (list %bash builder1) + #:outputs + '("out" "two"))) + (builder2 + (add-text-to-store + %store + "my-mo-user-builder.sh" + "read x < $one;\n read y < $two;\n echo \"($x $y)\" > $out" + '())) + (udrv (derivation + %store + "multiple-output-user" + %bash + `(,builder2) + #:env-vars + `(("one" + unquote + (derivation->output-path mdrv "out")) + ("two" + unquote + (derivation->output-path mdrv "two"))) + #:sources + (list %bash builder2) + #:inputs + (list (derivation-input mdrv) + (derivation-input mdrv '("two")))))) + (and (build-derivations %store (list (pk 'udrv udrv))) + (let ((p (derivation->output-path udrv))) + (and (valid-path? %store p) + (equal? '(one two) (call-with-input-file p read))))))) actual-value: #t result: PASS test-name: derivation with #:references-graphs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:561 source: + (test-assert + "derivation with #:references-graphs" + (let* ((input1 + (add-text-to-store + %store + "foo" + "hello" + (list %bash))) + (input2 + (add-text-to-store + %store + "bar" + (number->string (random 7777)) + (list input1))) + (builder + (add-text-to-store + %store + "build-graph" + (format + #f + "\n~a $out\n (while read l ; do echo $l ; done) < bash > $out/bash\n (while read l ; do echo $l ; done) < input1 > $out/input1\n (while read l ; do echo $l ; done) < input2 > $out/input2" + %mkdir) + (list %mkdir))) + (drv (derivation + %store + "closure-graphs" + %bash + `(,builder) + #:references-graphs + `(("bash" unquote %bash) + ("input1" unquote input1) + ("input2" unquote input2)) + #:sources + (list %bash builder))) + (out (derivation->output-path drv))) + (define (deps path . deps) + (let ((count (length deps))) + (string-append + path + @ build-started /tmp/guix-tests/store/c3vi3sycs15kwb13cqlxq64afx0ggmi6-allowed.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/c3//vi3sycs15kwb13cqlxq64afx0ggmi6-allowed.drv.bz2 6873 @ build-succeeded /tmp/guix-tests/store/c3vi3sycs15kwb13cqlxq64afx0ggmi6-allowed.drv - @ build-started /tmp/guix-tests/store/4da551m6yrdlqk91vf8wdl5d4q2vj7c3-disallowed.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/4d//a551m6yrdlqk91vf8wdl5d4q2vj7c3-disallowed.drv.bz2 6880 output (`/tmp/guix-tests/store/70109sfaj24bzhyf625azycx8ws3zqs4-disallowed') is not allowed to refer to path `/tmp/guix-tests/store/bdx3lhq3793i8lz6fvldrp917ba52v1v-foo' @ build-failed /tmp/guix-tests/store/4da551m6yrdlqk91vf8wdl5d4q2vj7c3-disallowed.drv - 1 output (`/tmp/guix-tests/store/70109sfaj24bzhyf625azycx8ws3zqs4-disallowed') is not allowed to refer to path `/tmp/guix-tests/store/bdx3lhq3793i8lz6fvldrp917ba52v1v-foo' @ build-started /tmp/guix-tests/store/nmmh5flzm6lh1gbik2zf7rcs3nl15mb8-allowed.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/nm//mh5flzm6lh1gbik2zf7rcs3nl15mb8-allowed.drv.bz2 6887 @ build-succeeded /tmp/guix-tests/store/nmmh5flzm6lh1gbik2zf7rcs3nl15mb8-allowed.drv - @ build-started /tmp/guix-tests/store/6zy7jd3dqj0gal0jq5n8f1x9mx9ijm5b-disallowed.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/6z//y7jd3dqj0gal0jq5n8f1x9mx9ijm5b-disallowed.drv.bz2 6894 output (`/tmp/guix-tests/store/g3hsz6anj8svngzz3gy0c5000ia0lm82-disallowed') is not allowed to refer to path `/tmp/guix-tests/store/g3hsz6anj8svngzz3gy0c5000ia0lm82-disallowed' @ build-failed /tmp/guix-tests/store/6zy7jd3dqj0gal0jq5n8f1x9mx9ijm5b-disallowed.drv - 1 output (`/tmp/guix-tests/store/g3hsz6anj8svngzz3gy0c5000ia0lm82-disallowed') is not allowed to refer to path `/tmp/guix-tests/store/g3hsz6anj8svngzz3gy0c5000ia0lm82-disallowed' @ build-started /tmp/guix-tests/store/23xa60in5drnspzm3qxpgcf892bybim9-disallowed.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/23//xa60in5drnspzm3qxpgcf892bybim9-disallowed.drv.bz2 6901 @ build-succeeded /tmp/guix-tests/store/23xa60in5drnspzm3qxpgcf892bybim9-disallowed.drv - "\n\n" + (number->string count) + "\n" + (string-join (sort deps string? input1 %bash) + (string-append (deps %bash) (deps input1 %bash)) + (string-append (deps input1 %bash) (deps %bash)))) + ("/input2" + unquote + (string-concatenate + (map cdr + (sort (map (lambda (p d) (cons p (apply deps p d))) + (list %bash input1 input2) + (list '() (list %bash) (list input1))) + (lambda (x y) + (match x + ((p1 . _) + (match y + ((p2 . _) + (string $out") + #:sources + (list %bash) + #:allowed-references + '()))) + (build-derivations %store (list drv)))) actual-value: #t result: PASS test-name: derivation #:allowed-references, not allowed location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:618 source: + (test-assert + "derivation #:allowed-references, not allowed" + (let* ((txt (add-text-to-store %store "foo" "Hello, world.")) + (drv (derivation + %store + "disallowed" + %bash + `("-c" ,(string-append "echo " txt "> $out")) + #:sources + (list %bash txt) + #:allowed-references + '()))) + (guard (c ((store-protocol-error? c) #t)) + (build-derivations %store (list drv)) + #f))) actual-value: #t result: PASS test-name: derivation #:allowed-references, self allowed location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:630 source: + (test-assert + "derivation #:allowed-references, self allowed" + (let ((drv (derivation + %store + "allowed" + %bash + '("-c" "echo $out > $out") + #:sources + (list %bash) + #:allowed-references + '("out")))) + (build-derivations %store (list drv)))) actual-value: #t result: PASS test-name: derivation #:allowed-references, self not allowed location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:637 source: + (test-assert + "derivation #:allowed-references, self not allowed" + (let ((drv (derivation + %store + "disallowed" + %bash + `("-c" ,"echo $out > $out") + #:sources + (list %bash) + #:allowed-references + '()))) + (guard (c ((store-protocol-error? c) #t)) + (build-derivations %store (list drv)) + #f))) actual-value: #t result: PASS test-name: derivation #:disallowed-references, ok location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:648 source: + (test-assert + "derivation #:disallowed-references, ok" + (let ((drv (derivation + %store + "disallowed" + %bash + '("-c" "echo hello > $out") + #:sources@ build-started /tmp/guix-tests/store/l46k8zdpvvk341d5byw4i9irnlm67b0l-disdisallowed.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/l4//6k8zdpvvk341d5byw4i9irnlm67b0l-disdisallowed.drv.bz2 6908 output (`/tmp/guix-tests/store/9bcs2q7khdkn8xxv5f01jpz4zixnccwb-disdisallowed') is not allowed to refer to path `/tmp/guix-tests/store/bdx3lhq3793i8lz6fvldrp917ba52v1v-foo' @ build-failed /tmp/guix-tests/store/l46k8zdpvvk341d5byw4i9irnlm67b0l-disdisallowed.drv - 1 output (`/tmp/guix-tests/store/9bcs2q7khdkn8xxv5f01jpz4zixnccwb-disdisallowed') is not allowed to refer to path `/tmp/guix-tests/store/bdx3lhq3793i8lz6fvldrp917ba52v1v-foo' @ build-started /tmp/guix-tests/store/ns7pwcw06w9kh07z7crsq8mp6lvvc7bs-leaked-env-vars.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/ns//7pwcw06w9kh07z7crsq8mp6lvvc7bs-leaked-env-vars.drv.bz2 6915 @ build-succeeded /tmp/guix-tests/store/ns7pwcw06w9kh07z7crsq8mp6lvvc7bs-leaked-env-vars.drv - + (list %bash) + #:disallowed-references + '("out")))) + (build-derivations %store (list drv)))) actual-value: #t result: PASS test-name: derivation #:disallowed-references, not ok location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:655 source: + (test-assert + "derivation #:disallowed-references, not ok" + (let* ((txt (add-text-to-store %store "foo" "Hello, world.")) + (drv (derivation + %store + "disdisallowed" + %bash + `("-c" ,(string-append "echo " txt "> $out")) + #:sources + (list %bash txt) + #:disallowed-references + (list txt)))) + (guard (c ((store-protocol-error? c) #t)) + (build-derivations %store (list drv)) + #f))) actual-value: #t result: PASS test-name: derivation #:leaked-env-vars location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:671 source: + (test-equal + "derivation #:leaked-env-vars" + (getenv "GUIX_STATE_DIRECTORY") + (let* ((value (getenv "GUIX_STATE_DIRECTORY")) + (drv (derivation + %store + "leaked-env-vars" + %bash + '("-c" "echo -n $GUIX_STATE_DIRECTORY > $out") + #:hash + (gcrypt:sha256 (string->utf8 value)) + #:hash-algo + 'sha256 + #:sources + (list %bash) + #:leaked-env-vars + '("GUIX_STATE_DIRECTORY")))) + (and (build-derivations %store (list drv)) + (call-with-input-file + (derivation->output-path drv) + get-string-all)))) expected-value: "/tmp/guix-tests/var/6654" actual-value: "/tmp/guix-tests/var/6654" result: PASS test-name: build derivation with coreutils location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:692 source: + (test-assert + "build derivation with coreutils" + (let* ((builder + (add-text-to-store + %store + "build-with-coreutils.sh" + "echo $PATH ; mkdir --version ; mkdir $out ; touch $out/good" + '())) + (drv (derivation + %store + "foo" + %bash + `(,builder) + #:env-vars + `(("PATH" + unquote + (string-append + (derivation->output-path %coreutils) + "/bin"))) + #:sources + (list builder) + #:inputs + (list (derivation-input %coreutils)))) + (succeeded? + (build-derivations %store (list drv)))) + (and succeeded? + (let ((p (derivation->output-path drv))) + (and (valid-path? %store p) + (file-exists? (string-append p "/good"))))))) result: SKIP test-name: build-expression->derivation and invalid module name location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:715 source: + (test-equal + "build-expression->derivation and invalid module name" + '(file-search-error + "guix/module/that/does/not/exist.scm") + (guard (c ((file-search-error? c) + (list 'file-search-error + (file-search-error-file-name c)))) + (build-expression->derivation + %store + "foo" + #t + #:modules + '((guix module that does not exist))))) expected-value: (file-search-error "guix/module/that/does/not/exist.scm") actual-value: (file-search-error "guix/module/that/does/not/exist.scm") result: PASS test-name: build-expression->derivation and builder encoding location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:724 source: + (test-equal + "build-expression->derivation and builder encoding" + '("UTF-8" #t) + (let* (/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:720:4: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:727:14: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:739:13: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:746:12: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:747:12: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:748:12: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead @ build-started /tmp/guix-tests/store/z8nw1s0vm50pa4rphnfcpvnjmgn7yawd-a.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/z8//nw1s0vm50pa4rphnfcpvnjmgn7yawd-a.drv.bz2 6922 @ build-succeeded /tmp/guix-tests/store/z8nw1s0vm50pa4rphnfcpvnjmgn7yawd-a.drv - /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:769:21: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead @ build-started /tmp/guix-tests/store/14v6g39hkzb5pm7pd6wsr69fp6x4drk3-goo.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/14//v6g39hkzb5pm7pd6wsr69fp6x4drk3-goo.drv.bz2 6929 @ build-succeeded /tmp/guix-tests/store/14v6g39hkzb5pm7pd6wsr69fp6x4drk3-goo.drv - /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:781:21: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable substitute: guix substitute: warning: authentication and authorization of substitutes disabled! @ build-started /tmp/guix-tests/store/2jx3s69aldix2yx51x03ig0m5s9g4brz-silent.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/2j//x3s69aldix2yx51x03ig0m5s9g4brz-silent.drv.bz2 6943 building of `/tmp/guix-tests/store/2jx3s69aldix2yx51x03ig0m5s9g4brz-silent.drv' timed out after 1 seconds of silence @ build-failed /tmp/guix-tests/store/2jx3s69aldix2yx51x03ig0m5s9g4brz-silent.drv - timeout killing process 6943 (exp '(? (?) (+ ? 1))) + (drv (build-expression->derivation %store "foo" exp))) + (match (derivation-builder-arguments drv) + ((... builder) + (with-fluids + ((%default-port-encoding "UTF-8")) + (call-with-input-file + builder + (lambda (port) + (list (port-encoding port) + (->bool + (string-contains + (get-string-all port) + "(? (?) (+ ? 1))")))))))))) expected-value: ("UTF-8" #t) actual-value: ("UTF-8" #t) result: PASS test-name: build-expression->derivation and derivation-prerequisites location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:738 source: + (test-assert + "build-expression->derivation and derivation-prerequisites" + (let ((drv (build-expression->derivation %store "fail" #f))) + (any (match-lambda + (($ + (= derivation-file-name path)) + (string=? + path + (derivation-file-name (%guile-for-build))))) + (derivation-prerequisites drv)))) actual-value: #t result: PASS test-name: derivation-prerequisites and valid-derivation-input? location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:745 source: + (test-assert + "derivation-prerequisites and valid-derivation-input?" + (let* ((a (build-expression->derivation + %store + "a" + '(mkdir %output))) + (b (build-expression->derivation + %store + "b" + `(list ,(random-text)))) + (c (build-expression->derivation + %store + "c" + `(mkdir %output) + #:inputs + `(("a" ,a) ("b" ,b))))) + (build-derivations + %store + (list a + (package-derivation %store %bootstrap-guile))) + (match (derivation-prerequisites + c + (cut valid-derivation-input? %store <>)) + ((($ + (= derivation-file-name file) + ("out"))) + (string=? file (derivation-file-name b))) + (x (pk 'fail x #f))))) actual-value: #t result: PASS test-name: build-expression->derivation without inputs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:763 source: + (test-assert + "build-expression->derivation without inputs" + (let* ((builder + '(begin + (mkdir %output) + (call-with-output-file + (string-append %output "/test") + (lambda (p) (display '(hello guix) p))))) + (drv (build-expression->derivation + %store + "goo" + builder)) + (succeeded? + (build-derivations %store (list drv)))) + (and succeeded? + (let ((p (derivation->output-path drv))) + (equal? + '(hello guix) + (call-with-input-file + (string-append p "/test") + read)))))) actual-value: #t result: PASS test-name: build-expression->derivation and max-silent-time location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:776 source: + (test-assert + "build-expression->derivation and max-silent-time" + (let* ((store (let ((s (open-connection))) + (set-build-options s #:max-silent-time 1) + s)) + (builder '(begin (sleep 100) (mkdir %output) #t)) + (drv (build-expression->derivation + store + "silent" + builder)) + (out-path (derivation->output-path drv))) + (guard (c ((store-protocol-error? c) + (and (string-contains + (store-protocol-error-message c) + "failed") + /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:795:21: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable substitute: guix substitute: warning: authentication and authorization of substitutes disabled! @ build-started /tmp/guix-tests/store/rclydwd65halb43bxxlpihw3386dnh3p-slow.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/rc//lydwd65halb43bxxlpihw3386dnh3p-slow.drv.bz2 6957 building of `/tmp/guix-tests/store/rclydwd65halb43bxxlpihw3386dnh3p-slow.drv' timed out after 1 seconds @ build-failed /tmp/guix-tests/store/rclydwd65halb43bxxlpihw3386dnh3p-slow.drv - timeout killing process 6957 /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:807:20: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable substitute: guix substitute: warning: authentication and authorization of substitutes disabled! substitute: guix substitute: warning: authentication and authorization of substitutes disabled! @ substituter-started /tmp/guix-tests/store/4vpkndg6iiqz44y4cxqk20c8i9adx0pj-substitute-me substitute guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable Downloading file:/tmp/guix-tests/var/6654/substituter-data/example.nar...  example.nar 176B 0B/s 00:00 [ ] 0.0%  example.nar 176B 45KiB/s 00:00 [##################] 100.0%  example.nar 176B 42KiB/s 00:00 [##################] 100.0% @ substituter-succeeded /tmp/guix-tests/store/4vpkndg6iiqz44y4cxqk20c8i9adx0pj-substitute-me /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:830:13: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:837:21: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:839:21: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead @ build-started /tmp/guix-tests/store/gwfa5813yh0i34x7143r2iji48f7r6as-input.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/gw//fa5813yh0i34x7143r2iji48f7r6as-input.drv.bz2 6977 @ build-succeeded /tmp/guix-tests/store/gwfa5813yh0i34x7143r2iji48f7r6as-input.drv - @ build-started /tmp/guix-tests/store/7wnhy6ldc4mzqg2i4wi4mrb2lpxhnlrg-something.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/7w//nhy6ldc4mzqg2i4wi4mrb2lpxhnlrg-something.drv.bz2 6978 @ build-succeeded /tmp/guix-tests/store/7wnhy6ldc4mzqg2i4wi4mrb2lpxhnlrg-something.drv - finding garbage collector roots... removing stale temporary roots file `/tmp/guix-tests/var/6654/temproots/6686' deleting unused links... (not (valid-path? store out-path))))) + (build-derivations store (list drv)) + #f))) actual-value: #t result: PASS test-name: build-expression->derivation and timeout location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:790 source: + (test-assert + "build-expression->derivation and timeout" + (let* ((store (let ((s (open-connection))) + (set-build-options s #:timeout 1) + s)) + (builder '(begin (sleep 100) (mkdir %output) #t)) + (drv (build-expression->derivation + store + "slow" + builder)) + (out-path (derivation->output-path drv))) + (guard (c ((store-protocol-error? c) + (and (string-contains + (store-protocol-error-message c) + "failed") + (not (valid-path? store out-path))))) + (build-derivations store (list drv)) + #f))) actual-value: #t result: PASS ;;; (x "a722b1e30c1065eaf088135dadb67d0b1013ab352542b64fdbb1d8a01fdc4f1c") ;;; (y "a722b1e30c1065eaf088135dadb67d0b1013ab352542b64fdbb1d8a01fdc4f1c") test-name: build-derivations with specific output location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:804 source: + (test-assert + "build-derivations with specific output" + (with-store + store + (let* ((content (random-text)) + (drv (build-expression->derivation + store + "substitute-me" + `(begin ,content (exit 1)) + #:outputs + '("out" "one" "two") + #:guile-for-build + (package-derivation store %bootstrap-guile))) + (out (derivation->output-path drv))) + (with-derivation-substitute + drv + content + (set-build-options + store + #:use-substitutes? + #t + #:substitute-urls + (%test-substitute-urls)) + (and (has-substitutes? store out) + (build-derivations + store + `(((unquote drv) . "out"))) + (build-derivations + store + (list (derivation-input drv '("out")))) + (valid-path? store out) + (equal? + (pk 'x content) + (pk 'y (call-with-input-file out get-string-all)))))))) actual-value: #t result: PASS test-name: build-expression->derivation and derivation-build-plan location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:829 source: + (test-assert + "build-expression->derivation and derivation-build-plan" + (let ((drv (build-expression->derivation %store "fail" #f))) + (null? (derivation-build-plan + %store + (derivation-inputs drv))))) actual-value: #t result: PASS test-name: derivation-build-plan when outputs already present location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:835 source: + (test-assert + "derivation-build-plan when outputs already present" + (let* ((builder + `(begin ,(random-text) (mkdir %output) #t)) + (input-drv + (build-expression->derivation + %store + "input" + builder)) + (input-path (derivation->output-path input-drv)) + (drv (build-expression->derivation + %store + "something" + builder + #:inputs + `(("i" ,input-drv)))) + (output (derivation->output-path drv))) + (when (or (valid-path? %store input-path) + (valid-path? %store output)) + (error "things already built" input-drv)) + (and (lset= equal? + (map derivation-file-name + (derivation-build-plan + %store + (list (derivation-input drv)))) + (list /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:867:17: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable substitute: guix substitute: warning: authentication and authorization of substitutes disabled! /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:891:17: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:913:17: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:916:17: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable substitute: guix substitute: warning: authentication and authorization of substitutes disabled! (derivation-file-name input-drv) + (derivation-file-name drv))) + (build-derivations %store (list drv)) + (delete-paths %store (list input-path)) + (not (valid-path? %store input-path)) + (null? (derivation-build-plan + %store + (list (derivation-input drv))))))) actual-value: #t result: PASS test-name: derivation-build-plan and substitutes location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:865 source: + (test-assert + "derivation-build-plan and substitutes" + (let* ((store (open-connection)) + (drv (build-expression->derivation + store + "prereq-subst" + (random 1000))) + (output (derivation->output-path drv))) + (set-build-options + store + #:use-substitutes? + #t + #:substitute-urls + (%test-substitute-urls)) + (with-derivation-narinfo + drv + (let-values + (((build download) + (derivation-build-plan + store + (list (derivation-input drv)))) + ((build* download*) + (derivation-build-plan + store + (list (derivation-input drv)) + #:substitutable-info + (const #f)))) + (and (null? build) + (equal? + (map substitutable-path download) + (list output)) + (null? download*) + (equal? (list drv) build*)))))) actual-value: #t result: PASS test-name: derivation-build-plan and substitutes, non-substitutable build location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:889 source: + (test-assert + "derivation-build-plan and substitutes, non-substitutable build" + (let* ((store (open-connection)) + (drv (build-expression->derivation + store + "prereq-no-subst" + (random 1000) + #:substitutable? + #f)) + (output (derivation->output-path drv))) + (set-build-options + store + #:use-substitutes? + #t + #:substitute-urls + (%test-substitute-urls)) + (with-derivation-narinfo + drv + (let-values + (((build download) + (derivation-build-plan + store + (list (derivation-input drv))))) + (and (null? download) + (match build + (((= derivation-file-name build)) + (string=? build (derivation-file-name drv))))))))) actual-value: #t result: PASS test-name: derivation-build-plan and substitutes, non-substitutable dep location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:911 source: + (test-assert + "derivation-build-plan and substitutes, non-substitutable dep" + (with-store + store + (let* ((drv1 (build-expression->derivation + store + "prereq-no-subst" + (random 1000) + #:substitutable? + #f)) + (drv2 (build-expression->derivation + store + "substitutable" + (random 1000) + #:inputs + `(("dep" ,drv1))))) + (set-build-options + store + #:use-substitutes? + #t + #:substitute-urls + (%test-substitute-urls)) + (with-derivation-narinfo + drv2 + (sha256 => (make-bytevector 32 0)) + (references + => + (list (derivation->output-path drv1))) + (let-values + (((build download) + (derivation-build-plan + store + (list (derivation-input drv2))))) + (and (match download + (((= substitutable-path item)) + (string=? item (derivation->output-path drv2)))) + (match build + (/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:942:19: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable substitute: guix substitute: warning: authentication and authorization of substitutes disabled! /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:965:16: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:968:16: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable substitute: guix substitute: warning: authentication and authorization of substitutes disabled! substitute: guix substitute: warning: authentication and authorization of substitutes disabled! building path(s) `/tmp/guix-tests/store/23pvk0vn3lniq4cz8bsbkg5ghmpvbcq8-dep' building path(s) `/tmp/guix-tests/store/68rjaz0r6pmc0swa1bycrvnq64r6jpjs-to-check' finding garbage collector roots... removing stale temporary roots file `/tmp/guix-tests/var/6654/temproots/7008' [0 MiB] deleting '/tmp/guix-tests/store/23pvk0vn3lniq4cz8bsbkg5ghmpvbcq8-dep' deleting `/tmp/guix-tests/store/trash' deleting unused links... note: currently hard linking saves 11.90 MiB ((= derivation-file-name build)) + (string=? build (derivation-file-name drv1)))))))))) actual-value: #t result: PASS test-name: derivation-build-plan and substitutes, local build location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:940 source: + (test-assert + "derivation-build-plan and substitutes, local build" + (with-store + store + (let* ((drv (build-expression->derivation + store + "prereq-subst-local" + (random 1000) + #:local-build? + #t)) + (output (derivation->output-path drv))) + (set-build-options + store + #:use-substitutes? + #t + #:substitute-urls + (%test-substitute-urls)) + (with-derivation-narinfo + drv + (let-values + (((build download) + (derivation-build-plan + store + (list (derivation-input drv))))) + (and (null? build) + (match download + (((= substitutable-path item)) + (string=? item (derivation->output-path drv)))))))))) actual-value: #t result: PASS test-name: derivation-build-plan in 'check' mode location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:963 source: + (test-assert + "derivation-build-plan in 'check' mode" + (with-store + store + (let* ((dep (build-expression->derivation + store + "dep" + `(begin ,(random-text) (mkdir %output)))) + (drv (build-expression->derivation + store + "to-check" + '(mkdir %output) + #:inputs + `(("dep" ,dep))))) + (build-derivations store (list drv)) + (delete-paths + store + (list (derivation->output-path dep))) + (and (null? (derivation-build-plan + store + (list (derivation-input drv)))) + (lset= equal? + (derivation-build-plan + store + (list (derivation-input drv)) + #:mode + (build-mode check)) + (list drv dep)))))) actual-value: #t result: PASS test-name: derivation-input-fold location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:983 source: + (test-assert + "derivation-input-fold" + (let* ((builder + (add-text-to-store + %store + "my-builder.sh" + "echo hello, world > \"$out\"\n" + '())) + (drv1 (derivation + %store + "foo" + %bash + `(,builder) + #:sources + `(,%bash ,builder))) + (drv2 (derivation + %store + "bar" + %bash + `(,builder) + #:inputs + `((,drv1)) + #:sources + `(,%bash ,builder)))) + (equal? + (derivation-input-fold + (lambda (input result) + (cons (derivation-input-derivation input) result)) + '() + (list (derivation-input drv2))) + (list drv1 drv2)))) actual-value: #t result: PASS ;;; (query ("/tmp/guix-tests/store/gm8nni9qmv8dcbr74rwirhsvzlrf95iz-dep")) test-name: substitution-oracle and #:substitute? #f location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1001 source: + (test-assert + "substitution-oracle and #:substitute? #f" + (with-store + store + (let* ((dep (build-expression->derivation + store + "dep" + `(begin ,(random-text) (mkdir %output)))) + (drv (build-expression->derivation + store + "not-subst" + warning: in 'bar': deprecated 'derivation' calling convention used /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1003:18: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1006:18: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1034:19: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead @ build-started /tmp/guix-tests/store/z7b19xjlv1fdydj31ln72pr9i7g37af4-fail.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/z7//b19xjlv1fdydj31ln72pr9i7g37af4-fail.drv.bz2 7037 builder for `/tmp/guix-tests/store/z7b19xjlv1fdydj31ln72pr9i7g37af4-fail.drv' failed with exit code 1 @ build-failed /tmp/guix-tests/store/z7b19xjlv1fdydj31ln72pr9i7g37af4-fail.drv - 1 builder for `/tmp/guix-tests/store/z7b19xjlv1fdydj31ln72pr9i7g37af4-fail.drv' failed with exit code 1 /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1053:21: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead @ build-started /tmp/guix-tests/store/a2vzyygxrwg54ypwd21afys59i6a2wm2-double.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/a2//vzyygxrwg54ypwd21afys59i6a2wm2-double.drv.bz2 7044 @ build-succeeded /tmp/guix-tests/store/a2vzyygxrwg54ypwd21afys59i6a2wm2-double.drv - /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1072:21: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1086:19: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead @ build-started /tmp/guix-tests/store/wwp4xvygdq8sn3mgh7wdcblwah46vjw2-module-import-compiled.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/ww//p4xvygdq8sn3mgh7wdcblwah46vjw2-module-import-compiled.drv.bz2 7045 @ build-succeeded /tmp/guix-tests/store/wwp4xvygdq8sn3mgh7wdcblwah46vjw2-module-import-compiled.drv - @ build-started /tmp/guix-tests/store/sak63hab15qmsn7m047xbb6l7rjl7vk9-test-with-modules.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/sa//k63hab15qmsn7m047xbb6l7rjl7vk9-test-with-modules.drv.bz2 7052 @ build-succeeded /tmp/guix-tests/store/sak63hab15qmsn7m047xbb6l7rjl7vk9-test-with-modules.drv - `(begin ,(random-text) (mkdir %output)) + #:substitutable? + #f + #:inputs + `(("dep" ,dep)))) + (query #f)) + (define (record-substitutable-path-query store paths) + (when query (error "already called!" query)) + (set! query paths) + '()) + (mock ((guix store) + substitutable-path-info + record-substitutable-path-query) + (let ((pred (substitution-oracle store (list drv)))) + (pred (derivation->output-path drv)))) + (equal? + (pk 'query query) + (list (derivation->output-path dep)))))) actual-value: #t result: PASS test-name: build-expression->derivation with expression returning #f location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1030 source: + (test-assert + "build-expression->derivation with expression returning #f" + (let* ((builder '(begin (mkdir %output) #f)) + (drv (build-expression->derivation + %store + "fail" + builder)) + (out-path (derivation->output-path drv))) + (guard (c ((store-protocol-error? c) + (and (string-match + "build .* failed" + (store-protocol-error-message c)) + (not (valid-path? %store out-path))))) + (build-derivations %store (list drv)) + #f))) actual-value: #t result: PASS test-name: build-expression->derivation with two outputs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1045 source: + (test-assert + "build-expression->derivation with two outputs" + (let* ((builder + '(begin + (call-with-output-file + (assoc-ref %outputs "out") + (lambda (p) (display '(hello) p))) + (call-with-output-file + (assoc-ref %outputs "second") + (lambda (p) (display '(world) p))))) + (drv (build-expression->derivation + %store + "double" + builder + #:outputs + '("out" "second"))) + (succeeded? + (build-derivations %store (list drv)))) + (and succeeded? + (let ((one (derivation->output-path drv)) + (two (derivation->output-path drv "second"))) + (and (equal? '(hello) (call-with-input-file one read)) + (equal? '(world) (call-with-input-file two read))))))) actual-value: #t result: PASS test-name: build-expression->derivation with one input location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1064 source: + (test-assert + "build-expression->derivation with one input" + (let* ((builder + '(call-with-output-file + %output + (lambda (p) + (let ((cu (assoc-ref %build-inputs "cu"))) + (close 1) + (dup2 (port->fdes p) 1) + (execl (string-append cu "/bin/uname") + "uname" + "-a"))))) + (drv (build-expression->derivation + %store + "uname" + builder + #:inputs + `(("cu" ,%coreutils)))) + (succeeded? + (build-derivations %store (list drv)))) + (and succeeded? + (let ((p (derivation->output-path drv))) + (string-contains + (call-with-input-file p read-line) + "GNU"))))) result: SKIP test-name: build-expression->derivation with modules location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1080 source: + (test-assert + "build-expression->derivation with modules" + (let* ((builder + `(begin + (use-modules (guix build utils)) + (let ((out (assoc-ref %outputs "out"))) + /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1103:21: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1106:21: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1124:21: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1127:21: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1134:20: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1137:20: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead @ build-started /tmp/guix-tests/store/af7ibbnhgcn3fl0k3qj0xp237q53v0fp-final.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/af//7ibbnhgcn3fl0k3qj0xp237q53v0fp-final.drv.bz2 7059 @ build-succeeded /tmp/guix-tests/store/af7ibbnhgcn3fl0k3qj0xp237q53v0fp-final.drv - /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1157:18: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead @ build-started /tmp/guix-tests/store/i0m3dym9wibhxl5z01ky74p9z63da2dd-fixed-rec.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/i0//m3dym9wibhxl5z01ky74p9z63da2dd-fixed-rec.drv.bz2 7066 @ build-succeeded /tmp/guix-tests/store/i0m3dym9wibhxl5z01ky74p9z63da2dd-fixed-rec.drv - (mkdir-p (string-append out "/guile/guix/nix")) + #t))) + (drv (build-expression->derivation + %store + "test-with-modules" + builder + #:modules + '((guix build utils))))) + (and (build-derivations %store (list drv)) + (let* ((p (derivation->output-path drv)) + (s (stat (string-append p "/guile/guix/nix")))) + (eq? (stat:type s) 'directory))))) actual-value: #t result: PASS test-name: build-expression->derivation: same fixed-output path location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1095 source: + (test-assert + "build-expression->derivation: same fixed-output path" + (let* ((builder1 + '(call-with-output-file + %output + (lambda (p) (write "hello" p)))) + (builder2 + '(call-with-output-file + (pk 'difference-here! %output) + (lambda (p) (write "hello" p)))) + (hash (gcrypt:sha256 (string->utf8 "hello"))) + (input1 + (build-expression->derivation + %store + "fixed" + builder1 + #:hash + hash + #:hash-algo + 'sha256)) + (input2 + (build-expression->derivation + %store + "fixed" + builder2 + #:hash + hash + #:hash-algo + 'sha256)) + (succeeded? + (build-derivations %store (list input1 input2)))) + (and succeeded? + (not (string=? + (derivation-file-name input1) + (derivation-file-name input2))) + (string=? + (derivation->output-path input1) + (derivation->output-path input2))))) actual-value: #t result: PASS test-name: build-expression->derivation with a fixed-output input location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1116 source: + (test-assert + "build-expression->derivation with a fixed-output input" + (let* ((builder1 + '(call-with-output-file + %output + (lambda (p) (write "hello" p)))) + (builder2 + '(call-with-output-file + (pk 'difference-here! %output) + (lambda (p) (write "hello" p)))) + (hash (gcrypt:sha256 (string->utf8 "hello"))) + (input1 + (build-expression->derivation + %store + "fixed" + builder1 + #:hash + hash + #:hash-algo + 'sha256)) + (input2 + (build-expression->derivation + %store + "fixed" + builder2 + #:hash + hash + #:hash-algo + 'sha256)) + (builder3 + '(let ((input (assoc-ref %build-inputs "input"))) + (call-with-output-file + %output + (lambda (out) + (format #f "My input is ~a.~%" input))))) + (final1 + (build-expression->derivation + %store + "final" + builder3 + #:inputs + `(("input" ,input1)))) + (final2 + (build-expression->derivation + %store + "final" + builder3 + #:inputs + `(("input" ,input2))))) + (and (string=? + (derivation->output-path final1) + (derivation->output-path final2)) + (string=? + (derivation->output-path final1) + (derivation-path->output-path + (derivation-file-name final1))) + (build-derivations %store (list final1 final2))))) actual-value: #t result: PASS test-name: build-expression->derivation produces recursive fixed-output location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1177:18: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1188:18: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead @ build-started /tmp/guix-tests/store/s6ds4ksi496dvnfizj2w31a61r3z9h74-small-fixed-rec.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/s6//ds4ksi496dvnfizj2w31a61r3z9h74-small-fixed-rec.drv.bz2 7073 @ build-succeeded /tmp/guix-tests/store/s6ds4ksi496dvnfizj2w31a61r3z9h74-small-fixed-rec.drv - @ build-started /tmp/guix-tests/store/y5323p2jx52aabz51b7k6i0gk8mc8bmf-fixed-rec-user.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/y5//323p2jx52aabz51b7k6i0gk8mc8bmf-fixed-rec-user.drv.bz2 7074 @ build-succeeded /tmp/guix-tests/store/y5323p2jx52aabz51b7k6i0gk8mc8bmf-fixed-rec-user.drv - /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1199:18: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead @ build-started /tmp/guix-tests/store/qrf4zb7686kmaj0y02fydfvkmin92jgy-references-graphs.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/qr//f4zb7686kmaj0y02fydfvkmin92jgy-references-graphs.drv.bz2 7081 @ build-succeeded /tmp/guix-tests/store/qrf4zb7686kmaj0y02fydfvkmin92jgy-references-graphs.drv - /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1147 source: + (test-assert + "build-expression->derivation produces recursive fixed-output" + (let* ((builder + '(begin + (use-modules (srfi srfi-26)) + (mkdir %output) + (chdir %output) + (call-with-output-file + "exe" + (cut display "executable" <>)) + (chmod "exe" 511) + (symlink "exe" "symlink") + (mkdir "subdir"))) + (drv (build-expression->derivation + %store + "fixed-rec" + builder + #:hash-algo + 'sha256 + #:hash + (base32 + "10k1lw41wyrjf9mxydi0is5nkpynlsvgslinics4ppir13g7d74p") + #:recursive? + #t))) + (and (build-derivations %store (list drv)) + (let* ((dir (derivation->output-path drv)) + (exe (string-append dir "/exe")) + (link (string-append dir "/symlink")) + (subdir (string-append dir "/subdir"))) + (and (executable-file? exe) + (string=? + "executable" + (call-with-input-file exe get-string-all)) + (string=? "exe" (readlink link)) + (file-is-directory? subdir)))))) actual-value: #t result: PASS test-name: build-expression->derivation uses recursive fixed-output location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1173 source: + (test-assert + "build-expression->derivation uses recursive fixed-output" + (let* ((builder + '(call-with-output-file + %output + (lambda (port) (display "hello" port)))) + (fixed (build-expression->derivation + %store + "small-fixed-rec" + builder + #:hash-algo + 'sha256 + #:hash + (base32 + "0sg9f58l1jj88w6pdrfdpj5x9b1zrwszk84j81zvby36q9whhhqa") + #:recursive? + #t)) + (in (derivation->output-path fixed)) + (builder + `(begin + (mkdir %output) + (chdir %output) + (symlink ,in "symlink"))) + (drv (build-expression->derivation + %store + "fixed-rec-user" + builder + #:inputs + `(("fixed" ,fixed))))) + (and (build-derivations %store (list drv)) + (let ((out (derivation->output-path drv))) + (string=? + (readlink (string-append out "/symlink")) + in))))) actual-value: #t result: PASS test-name: build-expression->derivation with #:references-graphs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1195 source: + (test-assert + "build-expression->derivation with #:references-graphs" + (let* ((input (add-text-to-store + %store + "foo" + "hello" + (list %bash %mkdir))) + (builder '(copy-file "input" %output)) + (drv (build-expression->derivation + %store + "references-graphs" + builder + #:references-graphs + `(("input" unquote input)))) + (out (derivation->output-path drv))) + (define (deps path . deps) + (let ((count (length deps))) + (string-append + path + "\n\n" + (number->string count) + "\n" + (string-join (sort deps stringderivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1230:14: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1240:15: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1243:15: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1247:15: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead @ build-started /tmp/guix-tests/store/22dixq4wkxhrr5v5g7akx9anmg8wkd96-original-drv2.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/22//dixq4wkxhrr5v5g7akx9anmg8wkd96-original-drv2.drv.bz2 7088 @ build-succeeded /tmp/guix-tests/store/22dixq4wkxhrr5v5g7akx9anmg8wkd96-original-drv2.drv - @ build-started /tmp/guix-tests/store/gc3acjsbhwwpciw8x53fij0wkiyrvwpr-drv-to-remap.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/gc//3acjsbhwwpciw8x53fij0wkiyrvwpr-drv-to-remap.drv.bz2 7089 @ build-succeeded /tmp/guix-tests/store/gc3acjsbhwwpciw8x53fij0wkiyrvwpr-drv-to-remap.drv - @ build-started /tmp/guix-tests/store/4scypgmdi09sljb55v6p7jd6ji407nci-drv-to-remap.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/4s//cypgmdi09sljb55v6p7jd6ji407nci-drv-to-remap.drv.bz2 7096 @ build-succeeded /tmp/guix-tests/store/4scypgmdi09sljb55v6p7jd6ji407nci-drv-to-remap.drv - (lambda (p d) (cons p (apply deps p d))) + (list input %bash %mkdir) + (list (list %bash %mkdir) '() '())) + (lambda (x y) + (match x + ((p1 . _) + (match y + ((p2 . _) + (stringderivation + %store + "bar" + '(mkdir %output))) + (drv2 (build-expression->derivation + %store + "foo" + '(mkdir %output) + #:properties + '((type . test))))) + (list (derivation-properties drv1) + (derivation-properties drv2)))) expected-value: (() ((type . test))) actual-value: (() ((type . test))) result: PASS ;;; (remapped # /tmp/guix-tests/store/znv0df79k18nrv149ynpdbdw200xxfzi-drv-to-remap 45fb050>) test-name: map-derivation location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1236 source: + (test-equal + "map-derivation" + "hello" + (let* ((joke (package-derivation %store guile-1.8)) + (good (package-derivation %store %bootstrap-guile)) + (drv1 (build-expression->derivation + %store + "original-drv1" + #f + #:guile-for-build + joke)) + (drv2 (build-expression->derivation + %store + "original-drv2" + '(call-with-output-file + %output + (lambda (p) (display "hello" p))))) + (drv3 (build-expression->derivation + %store + "drv-to-remap" + '(let ((in (assoc-ref %build-inputs "in"))) + (copy-file in %output)) + #:inputs + `(("in" ,drv1)) + #:guile-for-build + joke)) + (drv4 (map-derivation + %store + drv3 + `((,drv1 unquote drv2) (,joke unquote good)))) + (out (derivation->output-path drv4))) + (and (build-derivations + %store + (list (pk 'remapped drv4))) + (call-with-input-file out get-string-all)))) expected-value: "hello" actual-value: "hello" result: PASS ;;; (remapped* # /tmp/guix-tests/store/n9zx46g8b5idvmgnarzf2g9ssnrnlpf0-drv-to-remap 4698500>) test-name: map-derivation, sources location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/derivations.scm:1259 source: + (test-equal + "map-derivation, sources" + "hello" + (let* ((script1 + (add-text-to-store %store "fail.sh" "exit 1")) + (script2 + (add-text-to-store + %store + "hi.sh" + "echo -n hello > $out")) + (bash-full + (package-derivation + %store + (@ (gnu packages bash) bash))) + (drv1 (derivation + %store + "drv-to-remap" + (derivation->output-path bash-full) + `("-e" ,script1) + #:sources + (list script1) + #:inputs + (list (derivation-input bash-full '("out"))))) + (drv2 (map-derivation + %store + drv1 + `((,bash-full unquote %bash) + (,script1 unquote script2)))) + (out (derivation->output-path drv2))) + (and (build-derivations + %store + (list (pk 'remapped* drv2))) + (call-with-input-file out get-string-all)))) expected-value: "hello" actual-value: "hello" result: PASS SKIP: tests/git =============== test-name: commit-difference, linear history location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/git.scm:34 source: + (test-assert + "commit-difference, linear history" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "first commit") + (add "b.txt" "B") + (commit "second commit") + (add "c.txt" "C") + (commit "third commit") + (add "d.txt" "D") + (commit "fourth commit")) + (with-repository + directory + repository + (let ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second")) + (commit3 (find-commit repository "third")) + (commit4 (find-commit repository "fourth"))) + (and (lset= eq? + (commit-difference commit4 commit1) + (list commit2 commit3 commit4)) + (lset= eq? + (commit-difference commit4 commit2) + (list commit3 commit4)) + (equal? + (commit-difference commit3 commit2) + (list commit3)) + (null? (commit-difference commit1 commit4))))))) result: SKIP test-name: commit-difference, fork location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/git.scm:61 source: + (test-assert + "commit-difference, fork" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "first commit") + (branch "devel") + (checkout "devel") + (add "devel/1.txt" "1") + (commit "first devel commit") + (add "devel/2.txt" "2") + (commit "second devel commit") + (checkout "master") + (add "b.txt" "B") + (commit "second commit") + (add "c.txt" "C") + (commit "third commit") + (merge "devel" "merge") + (add "d.txt" "D") + (commit "fourth commit")) + (with-repository + directory + repository + (let ((master1 (find-commit repository "first commit")) + (master2 + (find-commit repository "second commit")) + (master3 (find-commit repository "third commit")) + (master4 + (find-commit repository "fourth commit")) + (devel1 (find-commit repository "first devel")) + (devel2 (find-commit repository "second devel")) + (merge (find-commit repository "merge"))) + (and (equal? + (commit-difference master4 merge) + (list master4)) + (lset= eq? + (commit-difference master3 master1) + (list master3 master2)) + (lset= eq? + (commit-difference devel2 master1) + (list devel2 devel1)) + (lset= eq? + (commit-difference master4 master2) + (list master4 merge master3 devel1 devel2))))))) result: SKIP test-name: commit-difference, excluded commits location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/git.scm:101 source: + (test-assert + "commit-difference, excluded commits" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "first commit") + (add "b.txt" "B") + (commit "second commit") + (add "c.txt" "C") + (commit "third commit") + (add "d.txt" "D") + (commit "fourth commit") + (add "e.txt" "E") + (commit "fifth commit")) + (with-repository + directory + repository + (let ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second")) + (commit3 (find-commit repository "third")) + (commit4 (find-commit repository "fourth")) + (commit5 (find-commit repository "fifth"))) + (and (lset= eq? + (commit-difference + commit4 + commit1 + (list commit2)) + (list commit3 commit4)) + (lset= eq? + (commit-difference + commit4 + commit1 + (list commit3)) + (list commit4)) + (null? (commit-difference + commit4 + commit1 + (list commit5)))))))) result: SKIP test-name: commit-relation location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/git.scm:126 source: + (test-equal + "commit-relation" + '(self ancestor + descendant + unrelated + unrelated + ancestor + descendant + ancestor + descendant) + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "first commit") + (branch "hack") + (checkout "hack") + (add "1.txt" "1") + (commit "branch commit") + (checkout "master") + (add "b.txt" "B") + (commit "second commit") + (add "c.txt" "C") + (commit "third commit") + (merge "hack" "merge")) + (with-repository + directory + repository + (let ((master1 (find-commit repository "first")) + (master2 (find-commit repository "second")) + (master3 (find-commit repository "third")) + (branch1 (find-commit repository "branch")) + (merge (find-commit repository "merge"))) + (list (commit-relation master3 master3) + (commit-relation master1 master3) + (commit-relation master3 master1) + (commit-relation master2 branch1) + (commit-relation branch1 master2) + (commit-relation branch1 merge) + (commit-relation merge branch1) + (commit-relation master1 merge) + (commit-relation merge master1)))))) result: SKIP test-name: remote-refs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/git.scm:166 source: + (test-equal + "remote-refs" + '("refs/heads/develop" + "refs/heads/master" + "refs/tags/v1.0" + "refs/tags/v1.1") + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "v1.0" "release-1.0") + (branch "develop") + (checkout "develop") + (add "b.txt" "B") + (commit "Second commit") + (tag "v1.1" "release-1.1")) + (remote-refs directory))) result: SKIP test-name: remote-refs: only tags location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/git.scm:181 source: + (test-equal + "remote-refs: only tags" + '("refs/tags/v1.0" "refs/tags/v1.1") + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "v1.0" "Release 1.0") + (add "b.txt" "B") + (commit "Second commit") + (tag "v1.1" "Release 1.1")) + (remote-refs directory #:tags? #t))) result: SKIP SKIP: tests/git-authenticate ============================ test-name: unsigned commits location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/git-authenticate.scm:43 source: + (test-assert + "unsigned commits" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "first commit") + (add "b.txt" "B") + (commit "second commit")) + (with-repository + directory + repository + (let ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second"))) + (guard (c ((unsigned-commit-error? c) + (oid=? (git-authentication-error-commit c) + (commit-id commit1)))) + (authenticate-commits + repository + (list commit1 commit2) + #:keyring-reference + "master") + 'failed))))) result: SKIP test-name: signed commits, SHA1 signature location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/git-authenticate.scm:60 source: + (test-assert + "signed commits, SHA1 signature" + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file) + (call-with-output-file + (string-append (getenv "GNUPGHOME") "/gpg.conf") + (lambda (port) (display "digest-algo sha1" port))) + (with-temporary-git-repository + directory + `((add "a.txt" "A") + (add "signer.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (add ".guix-authorizations" + ,(object->string + `(authorizations + (version 0) + ((,(key-fingerprint %ed25519-public-key-file) + (name "Charlie")))))) + (commit + "first commit" + (signer + ,(key-fingerprint %ed25519-public-key-file)))) + (with-repository + directory + repository + (let ((commit (find-commit repository "first"))) + (guard (c ((unsigned-commit-error? c) + (oid=? (git-authentication-error-commit c) + (commit-id commit)))) + (authenticate-commits + repository + (list commit) + #:keyring-reference + "master") + 'failed)))))) result: SKIP test-name: signed commits, default authorizations location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/git-authenticate.scm:89 source: + (test-assert + "signed commits, default authorizations" + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file) + (with-temporary-git-repository + directory + `((add "signer.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (commit "zeroth commit") + (add "a.txt" "A") + (commit + "first commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "b.txt" "B") + (commit + "second commit" + (signer + ,(key-fingerprint %ed25519-public-key-file)))) + (with-repository + directory + repository + (let ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second"))) + (authenticate-commits + repository + (list commit1 commit2) + #:default-authorizations + (list (openpgp-public-key-fingerprint + (read-openpgp-packet %ed25519-public-key-file))) + #:keyring-reference + "master")))))) result: SKIP test-name: signed commits, .guix-authorizations location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/git-authenticate.scm:113 source: + (test-assert + "signed commits, .guix-authorizations" + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file) + (with-temporary-git-repository + directory + `((add "signer.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (add ".guix-authorizations" + ,(object->string + `(authorizations + (version 0) + ((,(key-fingerprint %ed25519-public-key-file) + (name "Charlie")))))) + (commit "zeroth commit") + (add "a.txt" "A") + (commit + "first commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add ".guix-authorizations" + ,(object->string `(authorizations (version 0) ()))) + (commit + "second commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "b.txt" "B") + (commit + "third commit" + (signer + ,(key-fingerprint %ed25519-public-key-file)))) + (with-repository + directory + repository + (let ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second")) + (commit3 (find-commit repository "third"))) + (and (authenticate-commits + repository + (list commit1 commit2) + #:keyring-reference + "master") + (guard (c ((unauthorized-commit-error? c) + (and (oid=? (git-authentication-error-commit c) + (commit-id commit3)) + (bytevector=? + (openpgp-public-key-fingerprint + (unauthorized-commit-error-signing-key c)) + (openpgp-public-key-fingerprint + (read-openpgp-packet + %ed25519-public-key-file)))))) + (authenticate-commits + repository + (list commit1 commit2 commit3) + #:keyring-reference + "master") + 'failed))))))) result: SKIP test-name: signed commits, .guix-authorizations, unauthorized merge location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/git-authenticate.scm:161 source: + (test-assert + "signed commits, .guix-authorizations, unauthorized merge" + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file + %ed25519-2-public-key-file + %ed25519-2-secret-key-file) + (with-temporary-git-repository + directory + `((add "signer1.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (add "signer2.key" + ,(call-with-input-file + %ed25519-2-public-key-file + get-string-all)) + (add ".guix-authorizations" + ,(object->string + `(authorizations + (version 0) + ((,(key-fingerprint %ed25519-public-key-file) + (name "Alice")))))) + (commit "zeroth commit") + (add "a.txt" "A") + (commit + "first commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (branch "devel") + (checkout "devel") + (add "devel/1.txt" "1") + (commit + "first devel commit" + (signer + ,(key-fingerprint %ed25519-2-public-key-file))) + (checkout "master") + (add "b.txt" "B") + (commit + "second commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (merge "devel" + "merge" + (signer + ,(key-fingerprint %ed25519-public-key-file)))) + (with-repository + directory + repository + (let ((master1 (find-commit repository "first commit")) + (master2 + (find-commit repository "second commit")) + (devel1 + (find-commit repository "first devel commit")) + (merge (find-commit repository "merge"))) + (define (correct? c commit) + (and (oid=? (git-authentication-error-commit c) + (commit-id commit)) + (bytevector=? + (openpgp-public-key-fingerprint + (unauthorized-commit-error-signing-key c)) + (openpgp-public-key-fingerprint + (read-openpgp-packet %ed25519-2-public-key-file))))) + (and (authenticate-commits + repository + (list master1 master2) + #:keyring-reference + "master") + (guard (c ((unauthorized-commit-error? c) + (correct? c devel1))) + (authenticate-commits + repository + (list master1 devel1) + #:keyring-reference + "master") + #f) + (guard (c ((unauthorized-commit-error? c) + (correct? c devel1))) + (authenticate-commits + repository + (list master1 master2 devel1 merge) + #:keyring-reference + "master") + #f))))))) result: SKIP test-name: signed commits, .guix-authorizations, authorized merge location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/git-authenticate.scm:230 source: + (test-assert + "signed commits, .guix-authorizations, authorized merge" + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file + %ed25519-2-public-key-file + %ed25519-2-secret-key-file) + (with-temporary-git-repository + directory + `((add "signer1.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (add "signer2.key" + ,(call-with-input-file + %ed25519-2-public-key-file + get-string-all)) + (add ".guix-authorizations" + ,(object->string + `(authorizations + (version 0) + ((,(key-fingerprint %ed25519-public-key-file) + (name "Alice")))))) + (commit "zeroth commit") + (add "a.txt" "A") + (commit + "first commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (branch "devel") + (checkout "devel") + (add ".guix-authorizations" + ,(object->string + `(authorizations + (version 0) + ((,(key-fingerprint %ed25519-public-key-file) + (name "Alice")) + (,(key-fingerprint %ed25519-2-public-key-file)))))) + (commit + "first devel commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "devel/2.txt" "2") + (commit + "second devel commit" + (signer + ,(key-fingerprint %ed25519-2-public-key-file))) + (checkout "master") + (add "b.txt" "B") + (commit + "second commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (merge "devel" + "merge" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "c.txt" "C") + (commit + "third commit" + (signer + ,(key-fingerprint %ed25519-2-public-key-file)))) + (with-repository + directory + repository + (let ((master1 (find-commit repository "first commit")) + (master2 + (find-commit repository "second commit")) + (devel1 + (find-commit repository "first devel commit")) + (devel2 + (find-commit repository "second devel commit")) + (merge (find-commit repository "merge")) + (master3 (find-commit repository "third commit"))) + (authenticate-commits + repository + (list master1 + master2 + devel1 + devel2 + merge + master3) + #:keyring-reference + "master")))))) result: SKIP test-name: signed commits, .guix-authorizations removed location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/git-authenticate.scm:290 source: + (test-assert + "signed commits, .guix-authorizations removed" + (with-fresh-gnupg-setup + (list %ed25519-public-key-file + %ed25519-secret-key-file) + (with-temporary-git-repository + directory + `((add "signer.key" + ,(call-with-input-file + %ed25519-public-key-file + get-string-all)) + (add ".guix-authorizations" + ,(object->string + `(authorizations + (version 0) + ((,(key-fingerprint %ed25519-public-key-file) + (name "Charlie")))))) + (commit "zeroth commit") + (add "a.txt" "A") + (commit + "first commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (remove ".guix-authorizations") + (commit + "second commit" + (signer + ,(key-fingerprint %ed25519-public-key-file))) + (add "b.txt" "B") + (commit + "third commit" + (signer + ,(key-fingerprint %ed25519-public-key-file)))) + (with-repository + directory + repository + (let ((commit1 (find-commit repository "first")) + (commit2 (find-commit repository "second")) + (commit3 (find-commit repository "third"))) + (and (authenticate-commits + repository + (list commit1 commit2) + #:keyring-reference + "master") + (guard (c ((unauthorized-commit-error? c) + (oid=? (git-authentication-error-commit c) + (commit-id commit2)))) + (authenticate-commits + repository + (list commit1 commit2 commit3) + #:keyring-reference + "master") + 'failed))))))) result: SKIP FAIL: tests/gremlin =================== t.c: In function ?main?: t.c:1:15: warning: implicit declaration of function ?puts? [-Wimplicit-function-declaration] 1 | int main () { puts("hello"); } | ^~~~ test-name: elf-dynamic-info-needed, executable location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/gremlin.scm:52 source: + (test-assert + "elf-dynamic-info-needed, executable" + (let* ((elf (call-with-input-file %guile-executable read-elf)) + (dyninfo (elf-dynamic-info elf))) + (or (not dyninfo) + (lset<= + string=? + (list (string-append "libguile-" (effective-version)) + "libc") + (map (lambda (lib) + (string-take lib (string-contains lib ".so"))) + (elf-dynamic-info-needed dyninfo)))))) actual-value: #t result: PASS ;;; (truth ("/gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/lib/libguile-3.0.so.1" "/gnu/store/1gkpbfxjx2sbchjhf19yjm4a8vkir0nm-libgc-8.0.4/lib/libgc.so.1" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libpthread.so.0" "/gnu/store/hjirgm7pwmc2biqz6d0fc1ajr3ha4v14-libffi-3.3/lib/libffi.so.7" "/gnu/store/4k552fq1p6q73mr9ww7g5y3m77p7cfbm-libunistring-0.9.10/lib/libunistring.so.2" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libcrypt.so.1" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libdl.so.2" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libm.so.6" "/gnu/store/47snyrq6pq6896m9dysp2s5vx53m6x08-gcc-10.3.0-lib/lib/libgcc_s.so.1" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libc.so.6" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/ld-linux-aarch64.so.1")) ;;; (needed ("/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libc.so.6" "/gnu/store/47snyrq6pq6896m9dysp2s5vx53m6x08-gcc-10.3.0-lib/lib/libgcc_s.so.1" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libm.so.6" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libdl.so.2" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libcrypt.so.1" "/gnu/store/4k552fq1p6q73mr9ww7g5y3m77p7cfbm-libunistring-0.9.10/lib/libunistring.so.2" "/gnu/store/hjirgm7pwmc2biqz6d0fc1ajr3ha4v14-libffi-3.3/lib/libffi.so.7" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib/libpthread.so.0" "/gnu/store/1gkpbfxjx2sbchjhf19yjm4a8vkir0nm-libgc-8.0.4/lib/libgc.so.1" "/gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7/lib/libguile-3.0.so.1")) test-name: file-needed/recursive location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/gremlin.scm:70 source: + (test-assert + "file-needed/recursive" + (let* ((needed + (file-needed/recursive %guile-executable)) + (pipe (dynamic-wind + (lambda () + (setenv "LD_TRACE_LOADED_OBJECTS" "yup")) + (lambda () + (open-pipe* OPEN_READ %guile-executable)) + (lambda () (unsetenv "LD_TRACE_LOADED_OBJECTS"))))) + (define ldd-rx + (make-regexp + "^[[:blank:]]+([[:graph:]]+ => )?([[:graph:]]+) .*$")) + (define (read-ldd-output port) + (let loop ((result '())) + (match (read-line port) + ((? eof-object?) (reverse result)) + ((= (cut regexp-exec ldd-rx <>) m) + (if m + (loop (cons (match:substring m 2) result)) + (loop result)))))) + (define ground-truth + (remove + (cut string-prefix? "linux-vdso.so" <>) + (read-ldd-output pipe))) + (and (zero? (close-pipe pipe)) + (lset= string=? + (pk 'truth ground-truth) + (pk 'needed needed))))) actual-value: #f result: FAIL test-name: expand-origin location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/gremlin.scm:101 source: + (test-equal + "expand-origin" + '("OOO/../lib" + "OOO" + "../OOO/bar/OOO/baz" + "ORIGIN/foo") + (map (cut expand-origin <> "OOO") + '("$ORIGIN/../lib" + "${ORIGIN}" + "../${ORIGIN}/bar/$ORIGIN/baz" + "ORIGIN/foo"))) expected-value: ("OOO/../lib" "OOO" "../OOO/bar/OOO/baz" "ORIGIN/foo") actual-value: ("OOO/../lib" "OOO" "../OOO/bar/OOO/baz" "ORIGIN/foo") result: PASS tt.c: In function ?main?: t.c:1:15: warning: implicit declaration of function ?puts? [-Wimplicit-function-declaration] 1 | int main () { puts("hello"); } | ^~~~ est-name: strip-runpath location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/gremlin.scm:114 source: + (test-equal + "strip-runpath" + "hello\n" + (call-with-temporary-directory + (lambda (directory) + (with-directory-excursion + directory + (call-with-output-file + "t.c" + (lambda (port) + (display "int main () { puts(\"hello\"); }" port))) + (invoke + c-compiler + "t.c" + "-Wl,--enable-new-dtags" + "-Wl,-rpath=/foo" + "-Wl,-rpath=/bar") + (let* ((dyninfo + (elf-dynamic-info + (parse-elf + (call-with-input-file "a.out" get-bytevector-all)))) + (old (elf-dynamic-info-runpath dyninfo)) + (new (strip-runpath "a.out")) + (new* (strip-runpath "a.out"))) + (validate-needed-in-runpath "a.out") + (and (member "/foo" old) + (member "/bar" old) + (not (member "/foo" new)) + (not (member "/bar" new)) + (equal? new* new) + (let* ((pipe (open-input-pipe "./a.out")) + (str (get-string-all pipe))) + (close-pipe pipe) + str))))))) expected-value: "hello\n" actual-value: "hello\n" result: PASS test-name: set-file-runpath + file-runpath location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/gremlin.scm:142 source: + (test-equal + "set-file-runpath + file-runpath" + "hello\n" + (call-with-temporary-directory + (lambda (directory) + (with-directory-excursion + directory + (call-with-output-file + "t.c" + (lambda (port) + (display "int main () { puts(\"hello\"); }" port))) + (invoke + c-compiler + "t.c" + "-Wl,--enable-new-dtags" + "-Wl,-rpath=/xxxxxxxxx") + (let ((original-runpath (file-runpath "a.out"))) + (and (member "/xxxxxxxxx" original-runpath) + (guard (c ((runpath-too-long-error? c) + (string=? + "a.out" + (runpath-too-long-error-file c)))) + (set-file-runpath + "a.out" + (list (make-string 777 #\y)))) + (let ((runpath (delete "/xxxxxxxxx" original-runpath))) + (set-file-runpath "a.out" runpath) + (equal? runpath (file-runpath "a.out"))) + (let* ((pipe (open-input-pipe "./a.out")) + (str (get-string-all pipe))) + (close-pipe pipe) + str))))))) expected-value: "hello\n" actual-value: "hello\n" result: PASS test-name: elf-dynamic-info-soname location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/gremlin.scm:169 source: + (test-equal + "elf-dynamic-info-soname" + "libfoo.so.2" + (call-with-temporary-directory + (lambda (directory) + (with-directory-excursion + directory + (call-with-output-file + "t.c" + (lambda (port) (display "// empty file" port))) + (invoke + c-compiler + "t.c" + "-shared" + "-Wl,-soname,libfoo.so.2") + (let* ((dyninfo + (elf-dynamic-info + (parse-elf + (call-with-input-file "a.out" get-bytevector-all)))) + (soname (elf-dynamic-info-soname dyninfo))) + soname))))) expected-value: "libfoo.so.2" actual-value: "libfoo.so.2" result: PASS a.out: stripping RUNPATH to ("/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib" "/gnu/store/47snyrq6pq6896m9dysp2s5vx53m6x08-gcc-10.3.0-lib/lib" "/gnu/store/47snyrq6pq6896m9dysp2s5vx53m6x08-gcc-10.3.0-lib/lib/gcc/aarch64-unknown-linux-gnu/10.3.0/../../..") (removed ("/foo" "/bar")) a.out: warning: RUNPATH contains bogus entries: ("/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33/lib" "/gnu/store/47snyrq6pq6896m9dysp2s5vx53m6x08-gcc-10.3.0-lib/lib" "/gnu/store/47snyrq6pq6896m9dysp2s5vx53m6x08-gcc-10.3.0-lib/lib/gcc/aarch64-unknown-linux-gnu/10.3.0/../../..") a.out: error: depends on 'libgcc_s.so.1', which cannot be found in RUNPATH () WARNING: (test-gremlin): imported module (guix build utils) overrides core binding `delete' SKIP: tests/hackage =================== Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.EQ1hTd From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.EQ1hTd From https://web.archive.org/web/20220102195445/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Trying to use Disarchive to assemble /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.EQ1hTd... could not find its Disarchive specification failed to download "/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.EQ1hTd" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.9qaJQY From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.9qaJQY From https://web.archive.org/web/20220102195445/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Trying to use Disarchive to assemble /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.9qaJQY... could not find its Disarchive specification failed to download "/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.9qaJQY" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.YvRORx From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.YvRORx From https://web.archive.org/web/20220102195445/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Trying to use Disarchive to assemble /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.YvRORx... could not find its Disarchive specification failed to download "/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.YvRORx" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.9xZNWU From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.9xZNWU From https://web.archive.org/web/20220102195445/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Trying to use Disarchive to assemble /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.9xZNWU... could not find its Disarchive specification failed to download "/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.9xZNWU" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.rVXyV6 From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.rVXyV6 From https://web.archive.org/web/20220102195445/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Trying to use Disarchive to assemble /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.rVXyV6... could not find its Disarchive specification failed to download "/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.rVXyV6" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.2Dlthh From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.2Dlthh From https://web.archive.org/web/20220102195445/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Trying to use Disarchive to assemble /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.2Dlthh... could not find its Disarchive specification failed to download "/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.2Dlthh" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.Ike7xI From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.Ike7xI From https://web.archive.org/web/20220102195445/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Trying to use Disarchive to assemble /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.Ike7xI... could not find its Disarchive specification failed to download "/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.Ike7xI" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.5DN7TJ From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.5DN7TJ From https://web.archive.org/web/20220102195445/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Trying to use Disarchive to assemble /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.5DN7TJ... could not find its Disarchive specification failed to download "/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.5DN7TJ" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" Syntax error: unexpected token : (ghc-options (-Wall)) (at line 11, column 2) Syntax error: unexpected end of input Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.bOhBBk From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.bOhBBk From https://web.archive.org/web/20220102195445/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Trying to use Disarchive to assemble /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.bOhBBk... could not find its Disarchive specification failed to download "/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.bOhBBk" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.EkAkvY From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.EkAkvY From https://web.archive.org/web/20220102195446/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Trying to use Disarchive to assemble /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.EkAkvY... could not find its Disarchive specification failed to download "/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.EkAkvY" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" test-name: hackage->guix-package test 1 location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/hackage.scm:189 source: + (test-assert + "hackage->guix-package test 1" + (eval-test-with-cabal test-cabal-1 match-ghc-foo)) actual-value: #t result: PASS test-name: hackage->guix-package test 2 location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/hackage.scm:192 source: + (test-assert + "hackage->guix-package test 2" + (eval-test-with-cabal test-cabal-2 match-ghc-foo)) actual-value: #t result: PASS test-name: hackage->guix-package test 3 location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/hackage.scm:195 source: + (test-assert + "hackage->guix-package test 3" + (eval-test-with-cabal + test-cabal-3 + match-ghc-foo + #:cabal-environment + '(("impl" . "ghc-7.8")))) actual-value: #t result: PASS test-name: hackage->guix-package test 4 location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/hackage.scm:199 source: + (test-assert + "hackage->guix-package test 4" + (eval-test-with-cabal + test-cabal-4 + match-ghc-foo + #:cabal-environment + '(("impl" . "ghc-7.8")))) actual-value: #t result: PASS test-name: hackage->guix-package test 5 location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/hackage.scm:203 source: + (test-assert + "hackage->guix-package test 5" + (eval-test-with-cabal + test-cabal-5 + match-ghc-foo + #:cabal-environment + '(("impl" . "ghc-7.8")))) actual-value: #t result: PASS test-name: hackage->guix-package test 6 location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/hackage.scm:226 source: + (test-assert + "hackage->guix-package test 6" + (eval-test-with-cabal + test-cabal-6 + match-ghc-foo-6)) actual-value: #t result: PASS test-name: hackage->guix-package test multiline desc (layout) location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/hackage.scm:244 source: + (test-assert + "hackage->guix-package test multiline desc (layout)" + (eval-test-with-cabal + test-cabal-multiline-layout + match-ghc-foo)) actual-value: #t result: PASS test-name: hackage->guix-package test multiline desc (braced) location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/hackage.scm:264 source: + (test-assert + "hackage->guix-package test multiline desc (braced)" + (eval-test-with-cabal + test-cabal-multiline-braced + match-ghc-foo)) actual-value: #t result: PASS ;;; (fail #f #f) test-name: hackage->guix-package test mixed layout location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/hackage.scm:284 source: + (test-assert + "hackage->guix-package test mixed layout" + (eval-test-with-cabal + test-cabal-mixed-layout + match-ghc-foo)) actual-value: #f result: XFAIL test-name: hackage->guix-package test flag executable location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/hackage.scm:309 source: + (test-assert + "hackage->guix-package test flag executable" + (eval-test-with-cabal + test-cabal-flag-executable + match-ghc-foo)) actual-value: #t result: PASS test-name: hackage->guix-package test cabal revision location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/hackage.scm:349 source: + (test-assert + "hackage->guix-package test cabal revision" + (eval-test-with-cabal + test-cabal-revision + match-ghc-foo-revision)) actual-value: #t result: PASS test-name: read-cabal test 1 location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/hackage.scm:352 source: + (test-assert + "read-cabal test 1" + (match (call-with-input-string + test-read-cabal-1 + read-cabal) + ((("name" ("test-me")) + ('section + 'library + (('if + ('flag "base4point8") + (("build-depends" ("base >= 4.8 && < 5"))) + (('if + ('flag "base4") + (("build-depends" ("base >= 4 && < 4.8"))) + (('if + ('flag "base3") + Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.vN7yns From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Starting download of /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.vN7yns From https://web.archive.org/web/20220102195446/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz... In procedure getaddrinfo: Servname not supported for ai_socktype Trying to use Disarchive to assemble /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.vN7yns... could not find its Disarchive specification failed to download "/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/guix-file.vN7yns" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" (("build-depends" ("base >= 3 && < 4"))) + (("build-depends" ("base < 3")))))))) + ('if + ('or + ('flag "base4point8") + ('and ('flag "base4") ('flag "base3"))) + (("build-depends" ("random"))) + ()) + ("build-depends" ("containers")) + ("exposed-modules" ("Test.QuickCheck.Exception"))))) + #t) + (x (pk 'fail x #f)))) actual-value: #t result: PASS test-name: hackage->guix-package test cabal import location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/hackage.scm:406 source: + (test-assert + "hackage->guix-package test cabal import" + (eval-test-with-cabal + test-cabal-import + match-ghc-foo-import)) actual-value: #t result: PASS SKIP: tests/import-git ====================== test-name: latest-git-tag-version: no custom prefix, suffix, and delimiter location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/import-git.scm:50 source: + (test-equal + "latest-git-tag-version: no custom prefix, suffix, and delimiter" + "1.0.1" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "1.0.1" "Release 1.0.1")) + (let ((package (make-package directory "1.0.0"))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: custom prefix, no suffix and delimiter location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/import-git.scm:60 source: + (test-equal + "latest-git-tag-version: custom prefix, no suffix and delimiter" + "1.0.1" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "prefix-1.0.1" "Release 1.0.1")) + (let ((package + (make-package + directory + "1.0.0" + '((release-tag-prefix . "prefix-"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: custom suffix, no prefix and delimiter location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/import-git.scm:71 source: + (test-equal + "latest-git-tag-version: custom suffix, no prefix and delimiter" + "1.0.1" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "1.0.1-suffix-123" "Release 1.0.1")) + (let ((package + (make-package + directory + "1.0.0" + '((release-tag-suffix . "-suffix-[0-9]*"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: custom delimiter, no prefix and suffix location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/import-git.scm:82 source: + (test-equal + "latest-git-tag-version: custom delimiter, no prefix and suffix" + "2021.09.07" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "2021-09-07" "Release 2021-09-07")) + (let ((package + (make-package + directory + "2021-09-06" + '((release-tag-version-delimiter . "-"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: empty delimiter, no prefix and suffix location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/import-git.scm:93 source: + (test-equal + "latest-git-tag-version: empty delimiter, no prefix and suffix" + "20210907" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "20210907" "Release 20210907")) + (let ((package + (make-package + directory + "20210906" + '((release-tag-version-delimiter . ""))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: custom prefix and suffix, no delimiter location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/import-git.scm:104 source: + (test-equal + "latest-git-tag-version: custom prefix and suffix, no delimiter" + "2.0.0" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "Release-2.0.0suffix-1" "Release 2.0.0")) + (let ((package + (make-package + directory + "1.0.0" + '((release-tag-prefix . "Release-") + (release-tag-suffix . "suffix-[0-9]"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: custom prefix, suffix, and delimiter location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/import-git.scm:116 source: + (test-equal + "latest-git-tag-version: custom prefix, suffix, and delimiter" + "2.0.0" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "Release-2_0_0suffix-1" "Release 2.0.0")) + (let ((package + (make-package + directory + "1.0.0" + '((release-tag-prefix . "Release-") + (release-tag-suffix . "suffix-[0-9]") + (release-tag-version-delimiter . "_"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: only pre-releases available location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/import-git.scm:129 source: + (test-equal + "latest-git-tag-version: only pre-releases available" + #f + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "2.0.0-rc1" "Release candidate for 2.0.0")) + (let ((package (make-package directory "1.0.0"))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: accept pre-releases location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/import-git.scm:139 source: + (test-equal + "latest-git-tag-version: accept pre-releases" + "2.0.0-rc1" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "2.0.0-rc1" "Release candidate for 2.0.0")) + (let ((package + (make-package + directory + "1.0.0" + '((accept-pre-releases? . #t))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: accept pre-releases, and custom prefix location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/import-git.scm:150 source: + (test-equal + "latest-git-tag-version: accept pre-releases, and custom prefix" + "2.0.0-rc1" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "version-2.0.0-rc1" + "Release candidate for 2.0.0")) + (let ((package + (make-package + directory + "1.0.0" + '((accept-pre-releases? . #t) + (release-tag-prefix . "version-"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: accept pre-releases, and custom suffix location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/import-git.scm:162 source: + (test-equal + "latest-git-tag-version: accept pre-releases, and custom suffix" + "2.0.0-rc1" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "2.0.0-rc1-suffix" + "Release candidate for 2.0.0")) + (let ((package + (make-package + directory + "1.0.0" + '((accept-pre-releases? . #t) + (release-tag-suffix . "-suffix"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: accept pre-releases, delimiter conflicts with pre-release part location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/import-git.scm:174 source: + (test-equal + "latest-git-tag-version: accept pre-releases, delimiter conflicts with pre-release part" + "2.0.0_alpha" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "2_0_0_alpha" "Alpha release for 2.0.0")) + (let ((package + (make-package + directory + "1.0.0" + '((accept-pre-releases? . #t) + (release-tag-version-delimiter . "_"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: accept pre-releases, and custom suffix and prefix location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/import-git.scm:186 source: + (test-equal + "latest-git-tag-version: accept pre-releases, and custom suffix and prefix" + "2.0.0-alpha" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "prefix123-2.0.0-alpha-suffix" + "Alpha release for 2.0.0")) + (let ((package + (make-package + directory + "1.0.0" + '((accept-pre-releases? . #t) + (release-tag-prefix . "prefix[0-9]{3}-") + (release-tag-suffix . "-suffix"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: accept pre-releases, and custom suffix, prefix, and delimiter location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/import-git.scm:199 source: + (test-equal + "latest-git-tag-version: accept pre-releases, and custom suffix, prefix, and delimiter" + "2.0.0-alpha" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "prefix123-2-0-0-alpha-suffix" + "Alpha release for 2.0.0")) + (let ((package + (make-package + directory + "1.0.0" + '((accept-pre-releases? . #t) + (release-tag-prefix . "prefix[0-9]{3}-") + (release-tag-suffix . "-suffix") + (release-tag-version-delimiter . "-"))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: accept pre-releases, no delimiter, and custom suffix, prefix location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/import-git.scm:213 source: + (test-equal + "latest-git-tag-version: accept pre-releases, no delimiter, and custom suffix, prefix" + "2alpha" + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "prefix123-2alpha-suffix" + "Alpha release for version 2")) + (let ((package + (make-package + directory + "1.0.0" + '((accept-pre-releases? . #t) + (release-tag-prefix . "prefix[0-9]{3}-") + (release-tag-suffix . "-suffix") + (release-tag-version-delimiter . ""))))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: no tags found location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/import-git.scm:227 source: + (test-equal + "latest-git-tag-version: no tags found" + #f + (with-temporary-git-repository + directory + '((add "a.txt" "A") (commit "First commit")) + (let ((package (make-package directory "1.0.0"))) + (latest-git-tag-version package)))) result: SKIP test-name: latest-git-tag-version: no valid tags found location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/import-git.scm:236 source: + (test-equal + "latest-git-tag-version: no valid tags found" + #f + (with-temporary-git-repository + directory + '((add "a.txt" "A") + (commit "First commit") + (tag "Test" "Test tag")) + (let ((package (make-package directory "1.0.0"))) + (latest-git-tag-version package)))) result: SKIP SKIP: tests/inferior ==================== test-name: open-inferior location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/inferior.scm:54 source: + (test-equal + "open-inferior" + '(42 #t) + (let ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix"))) + (and (inferior? inferior) + (let ((a (inferior-eval '(apply * '(6 7)) inferior)) + (b (inferior-eval + '(@ (gnu packages base) coreutils) + inferior))) + (close-inferior inferior) + (list a (inferior-object? b)))))) expected-value: (42 #t) actual-value: (42 #t) result: PASS test-name: &inferior-exception location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/inferior.scm:65 source: + (test-equal + "&inferior-exception" + '(a b c d) + (let ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix"))) + (guard (c ((inferior-exception? c) + (close-inferior inferior) + (and (eq? inferior (inferior-exception-inferior c)) + (match (inferior-exception-stack c) + (((_ (files lines columns)) ..1) + (member "guix/repl.scm" files))) + (inferior-exception-arguments c)))) + (inferior-eval '(throw 'a 'b 'c 'd) inferior) + 'badness))) expected-value: (a b c d) actual-value: (a b c d) result: PASS test-name: &inferior-exception, legacy mode location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/inferior.scm:79 source: + (test-equal + "&inferior-exception, legacy mode" + '(a b c d) + (let ((inferior (open-inferior %top-builddir))) + (guard (c ((inferior-exception? c) + (close-inferior inferior) + (and (eq? inferior (inferior-exception-inferior c)) + (inferior-exception-arguments c)))) + (inferior-eval '(throw 'a 'b 'c 'd) inferior) + 'badness))) expected-value: (a b c d) actual-value: (a b c d) result: PASS test-name: inferior-packages location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/inferior.scm:91 source: + (test-equal + "inferior-packages" + (take (sort (fold-packages + (lambda (package lst) + (cons (list (package-name package) + (package-version package) + (package-home-page package) + (package-location package)) + lst)) + '()) + (lambda (x y) (string file: "gnu/packages/games.scm" line: 6594 column: 2>) ("0ad-data" "0.0.25b-alpha" "https://play0ad.com" #< file: "gnu/packages/games.scm" line: 6547 column: 2>) ("0xffff" "0.9" "https://github.com/pali/0xFFFF" #< file: "gnu/packages/flashing-tools.scm" line: 106 column: 2>) ("389-ds-base" "1.4.4.17" "https://directory.fedoraproject.org" #< file: "gnu/packages/openldap.scm" line: 204 column: 2>) ("4dtris" "0.4.3" "https://launchpad.net/4dtris/" #< file: "gnu/packages/games.scm" line: 8624 column: 2>) ("4store" "1.1.6" "https://github.com/4store/4store" #< file: "gnu/packages/databases.scm" line: 175 column: 2>) ("4ti2" "1.6.9" "http://www.4ti2.de/" #< file: "gnu/packages/maths.scm" line: 675 column: 2>) ("7kaa" "2.15.4p1" "https://7kfans.com/" #< file: "gnu/packages/games.scm" line: 11990 column: 2>) ("a2jmidid" "9" "https://github.com/jackaudio/a2jmidid" #< file: "gnu/packages/music.scm" line: 6741 column: 2>) ("a2ps" "4.14" "https://www.gnu.org/software/a2ps/" #< file: "gnu/packages/pretty-print.scm" line: 51 column: 2>)) actual-value: (("0ad" "0.0.25b-alpha" "https://play0ad.com" #< file: "gnu/packages/games.scm" line: 6594 column: 2>) ("0ad-data" "0.0.25b-alpha" "https://play0ad.com" #< file: "gnu/packages/games.scm" line: 6547 column: 2>) ("0xffff" "0.9" "https://github.com/pali/0xFFFF" #< file: "gnu/packages/flashing-tools.scm" line: 106 column: 2>) ("389-ds-base" "1.4.4.17" "https://directory.fedoraproject.org" #< file: "gnu/packages/openldap.scm" line: 204 column: 2>) ("4dtris" "0.4.3" "https://launchpad.net/4dtris/" #< file: "gnu/packages/games.scm" line: 8624 column: 2>) ("4store" "1.1.6" "https://github.com/4store/4store" #< file: "gnu/packages/databases.scm" line: 175 column: 2>) ("4ti2" "1.6.9" "http://www.4ti2.de/" #< file: "gnu/packages/maths.scm" line: 675 column: 2>) ("7kaa" "2.15.4p1" "https://7kfans.com/" #< file: "gnu/packages/games.scm" line: 11990 column: 2>) ("a2jmidid" "9" "https://github.com/jackaudio/a2jmidid" #< file: "gnu/packages/music.scm" line: 6741 column: 2>) ("a2ps" "4.14" "https://www.gnu.org/software/a2ps/" #< file: "gnu/packages/pretty-print.scm" line: 51 column: 2>)) result: PASS test-name: inferior-available-packages location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/inferior.scm:120 source: + (test-equal + "inferior-available-packages" + (take (sort (fold-available-packages + (lambda* (name + version + result + #:key + supported? + deprecated? + #:allow-other-keys) + (if (and supported? (not deprecated?)) + (alist-cons name version result) + result)) + '()) + (lambda (x y) (stringlist + (lambda (package) + (list (package-name package) + (package-version package) + (package-location package))))) + (list (map ->list (find-packages-by-name "guile" #f)) + (map ->list + (find-packages-by-name "guile" "2.2")))) + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix")) + (->list + (lambda (package) + (list (inferior-package-name package) + (inferior-package-version package) + (inferior-package-location package)))) + (lst1 (map ->list + (lookup-inferior-packages inferior "guile"))) + (lst2 (map ->list + (lookup-inferior-packages inferior "guile" "2.2")))) + (close-inferior inferior) + (list lst1 lst2))) expected-value: ((("guile" "3.0.7" #< file: "gnu/packages/guile.scm" line: 306 column: 2>) ("guile" "2.2.7" #< file: "gnu/packages/guile.scm" line: 247 column: 2>) ("guile" "2.2.4" #< file: "gnu/packages/guile.scm" line: 293 column: 2>) ("guile" "2.0.14" #< file: "gnu/packages/guile.scm" line: 147 column: 2>) ("guile" "1.8.8" #< file: "gnu/packages/guile.scm" line: 76 column: 2>)) (("guile" "2.2.7" #< file: "gnu/packages/guile.scm" line: 247 column: 2>) ("guile" "2.2.4" #< file: "gnu/packages/guile.scm" line: 293 column: 2>))) actual-value: ((("guile" "3.0.7" #< file: "gnu/packages/guile.scm" line: 306 column: 2>) ("guile" "2.2.7" #< file: "gnu/packages/guile.scm" line: 247 column: 2>) ("guile" "2.2.4" #< file: "gnu/packages/guile.scm" line: 293 column: 2>) ("guile" "2.0.14" #< file: "gnu/packages/guile.scm" line: 147 column: 2>) ("guile" "1.8.8" #< file: "gnu/packages/guile.scm" line: 76 column: 2>)) (("guile" "2.2.7" #< file: "gnu/packages/guile.scm" line: 247 column: 2>) ("guile" "2.2.4" #< file: "gnu/packages/guile.scm" line: 293 column: 2>))) result: PASS test-name: lookup-inferior-packages and eq?-ness location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/inferior.scm:161 source: + (test-assert + "lookup-inferior-packages and eq?-ness" + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix")) + (lst1 (lookup-inferior-packages inferior "guile")) + (lst2 (lookup-inferior-packages inferior "guile"))) + (close-inferior inferior) + (every eq? lst1 lst2))) actual-value: #t result: PASS test-name: inferior-package-inputs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/inferior.scm:169 source: + (test-equal + "inferior-package-inputs" + (let ((->list + (match-lambda + ((label (? package? package) . rest) + `(,label + (package + ,(package-name package) + ,(package-version package) + ,(package-location package)) + ,@rest))))) + (list (map ->list (package-inputs guile-3.0-latest)) + (map ->list + (package-native-inputs guile-3.0-latest)) + (map ->list + (package-propagated-inputs guile-3.0-latest)))) + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix")) + (guile (first (lookup-inferior-packages inferior "guile"))) + (->list + (match-lambda + ((label (? inferior-package? package) . rest) + `(,label + (package + ,(inferior-package-name package) + ,(inferior-package-version package) + ,(inferior-package-location package)) + ,@rest)))) + (result + (list (map ->list (inferior-package-inputs guile)) + (map ->list + (inferior-package-native-inputs guile)) + (map ->list + (inferior-package-propagated-inputs guile))))) + (close-inferior inferior) + result)) expected-value: ((("libffi" (package "libffi" "3.3" #< file: "gnu/packages/libffi.scm" line: 44 column: 2>)) ("bash" (package "bash-minimal" "5.1.8" #< file: "gnu/packages/bash.scm" line: 215 column: 2>))) (("pkgconfig" (package "pkg-config" "0.29.2" #< file: "gnu/packages/pkg-config.scm" line: 36 column: 2>))) (("libunistring" (package "libunistring" "0.9.10" #< file: "gnu/packages/libunistring.scm" line: 35 column: 2>)) ("bdw-gc" (package "libgc" "8.0.4" #< file: "gnu/packages/bdw-gc.scm" line: 33 column: 2>)))) actual-value: ((("libffi" (package "libffi" "3.3" #< file: "gnu/packages/libffi.scm" line: 44 column: 2>)) ("bash" (package "bash-minimal" "5.1.8" #< file: "gnu/packages/bash.scm" line: 215 column: 2>))) (("pkgconfig" (package "pkg-config" "0.29.2" #< file: "gnu/packages/pkg-config.scm" line: 36 column: 2>))) (("libunistring" (package "libunistring" "0.9.10" #< file: "gnu/packages/libunistring.scm" line: 35 column: 2>)) ("bdw-gc" (package "libgc" "8.0.4" #< file: "gnu/packages/bdw-gc.scm" line: 33 column: 2>)))) result: PASS test-name: inferior-package-search-paths location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/inferior.scm:199 source: + (test-equal + "inferior-package-search-paths" + (package-native-search-paths guile-3.0) + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix")) + (guile (first (lookup-inferior-packages inferior "guile"))) + (result + (inferior-package-native-search-paths guile))) + (close-inferior inferior) + result)) expected-value: (#< variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #< variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>) actual-value: (#< variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #< variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>) result: PASS test-name: inferior-eval-with-store location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/inferior.scm:208 source: + (test-equal + "inferior-eval-with-store" + (add-text-to-store %store "foo" "Hello, world!") + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix"))) + (inferior-eval-with-store + inferior + %store + '(lambda (store) + (add-text-to-store store "foo" "Hello, world!"))))) expected-value: "/tmp/guix-tests/store/3hc50d22dv8mx47cf49lmp1blyncdzhn-foo" actual-value: "/tmp/guix-tests/store/3hc50d22dv8mx47cf49lmp1blyncdzhn-foo" result: PASS test-name: inferior-eval-with-store, &store-protocol-error location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/inferior.scm:217 source: + (test-assert + "inferior-eval-with-store, &store-protocol-error" + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix"))) + (guard (c ((store-protocol-error? c) + (string-contains + (store-protocol-error-message c) + "invalid character"))) + (inferior-eval-with-store + inferior + %store + '(lambda (store) + (add-text-to-store store "we|rd/?!@" "uh uh"))) + #f))) actual-value: 0 result: PASS test-name: inferior-eval-with-store, exception location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/inferior.scm:229 source: + (test-equal + "inferior-eval-with-store, exception" + '(the-answer = 42) + (let ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix"))) + (guard (c ((inferior-exception? c) + (close-inferior inferior) + (inferior-exception-arguments c))) + (inferior-eval-with-store + inferior + %store + '(lambda (store) (throw 'the-answer '= 42)))))) expected-value: (the-answer = 42) actual-value: (the-answer = 42) result: PASS test-name: inferior-eval-with-store, not a procedure location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/inferior.scm:240 source: + (test-equal + "inferior-eval-with-store, not a procedure" + 'wrong-type-arg + (let ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix"))) + (guard (c ((inferior-exception? c) + (close-inferior inferior) + (car (inferior-exception-arguments c)))) + (inferior-eval-with-store + inferior + %store + '(+ 1 2))))) expected-value: wrong-type-arg actual-value: wrong-type-arg result: PASS test-name: inferior-package-derivation location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/inferior.scm:249 source: + (test-equal + "inferior-package-derivation" + (map derivation-file-name + (list (package-derivation + %store + %bootstrap-guile + "x86_64-linux") + (package-derivation + %store + %bootstrap-guile + "armhf-linux"))) + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix")) + (packages (inferior-packages inferior)) + (guile (find (lambda (package) + (string=? + (package-name %bootstrap-guile) + (inferior-package-name package))) + packages))) + (map derivation-file-name + (list (inferior-package-derivation + %store + guile + "x86_64-linux") + (inferior-package-derivation + %store + guile + "armhf-linux"))))) expected-value: ("/tmp/guix-tests/store/2fszpv9vs36ii0y04izpb3gdd3p62h8q-guile-bootstrap-2.0.drv" "/tmp/guix-tests/store/ingh0gyba0c48af8ff80wszgp7l1pjd9-guile-bootstrap-2.0.drv") actual-value: ("/tmp/guix-tests/store/2fszpv9vs36ii0y04izpb3gdd3p62h8q-guile-bootstrap-2.0.drv" "/tmp/guix-tests/store/ingh0gyba0c48af8ff80wszgp7l1pjd9-guile-bootstrap-2.0.drv") result: PASS test-name: inferior-package-replacement location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/inferior.scm:267 source: + (test-equal + "inferior-package-replacement" + (package-derivation + %store + (package-replacement sqlite) + "x86_64-linux") + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix")) + (packages (inferior-packages inferior))) + (match (lookup-inferior-packages + inferior + (package-name sqlite) + (package-version sqlite)) + ((inferior-sqlite rest ...) + (inferior-package-derivation + %store + (inferior-package-replacement inferior-sqlite) + "x86_64-linux"))))) result: SKIP test-name: inferior-package->manifest-entry location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/inferior.scm:283 source: + (test-equal + "inferior-package->manifest-entry" + (manifest-entry->list + (package->manifest-entry + (first (find-best-packages-by-name "guile" #f)))) + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix")) + (guile (first (lookup-inferior-packages inferior "guile"))) + (entry (inferior-package->manifest-entry guile))) + (close-inferior inferior) + (manifest-entry->list entry))) expected-value: ("guile" "3.0.7" "out" (#< variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #< variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>) (("libunistring" "0.9.10" "out" () ()) ("libgc" "8.0.4" "out" () ()))) actual-value: ("guile" "3.0.7" "out" (#< variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #< variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>) (("libunistring" "0.9.10" "out" () ()) ("libgc" "8.0.4" "out" () ()))) result: PASS test-name: packages->manifest location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/inferior.scm:293 source: + (test-equal + "packages->manifest" + (map manifest-entry->list + (manifest-entries + (packages->manifest + (find-best-packages-by-name "guile" #f)))) + (let* ((inferior + (open-inferior + %top-builddir + #:command + "scripts/guix")) + (guile (first (lookup-inferior-packages inferior "guile"))) + (manifest (packages->manifest (list guile)))) + (close-inferior inferior) + (map manifest-entry->list + (manifest-entries manifest)))) expected-value: (("guile" "3.0.7" "out" (#< variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #< variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>) (("libunistring" "0.9.10" "out" () ()) ("libgc" "8.0.4" "out" () ())))) actual-value: (("guile" "3.0.7" "out" (#< variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #< variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>) (("libunistring" "0.9.10" "out" () ()) ("libgc" "8.0.4" "out" () ())))) result: PASS SKIP: tests/packages ==================== test-name: printer with location location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:82 source: + (test-assert + "printer with location" + (string-match + "^#$" + (with-output-to-string + (lambda () + (write (dummy-package + "foo" + (location (make-location "foo.scm" 42 7)))))))) actual-value: #("#" (0 . 35)) result: PASS test-name: printer without location location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:90 source: + (test-assert + "printer without location" + (string-match + "^#$" + (with-output-to-string + (lambda () + (write (dummy-package "foo" (location #f))))))) actual-value: #("#" (0 . 24)) result: PASS test-name: hidden-package location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:97 source: + (test-assert + "hidden-package" + (and (hidden-package? + (hidden-package (dummy-package "foo"))) + (not (hidden-package? (dummy-package "foo"))))) actual-value: #t result: PASS test-name: package-superseded location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:101 source: + (test-assert + "package-superseded" + (let* ((new (dummy-package "bar")) + (old (deprecated-package "foo" new))) + (and (eq? (package-superseded old) new) + (mock ((gnu packages) + find-best-packages-by-name + (const (list old))) + (specification->package "foo") + (and (eq? new (specification->package "foo")) + (eq? new (specification->package+output "foo"))))))) actual-value: #t result: PASS test-name: transaction-upgrade-entry, zero upgrades location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:110 source: + (test-assert + "transaction-upgrade-entry, zero upgrades" + (let* ((old (dummy-package "foo" (version "1"))) + (tx (mock ((gnu packages) + find-best-packages-by-name + (const '())) + (transaction-upgrade-entry + #f + (manifest-entry + (inherit (package->manifest-entry old)) + (item (string-append + (%store-prefix) + "/" + (make-string 32 #\e) + "-foo-1"))) + (manifest-transaction))))) + (manifest-transaction-null? tx))) actual-value: #t result: PASS test-name: transaction-upgrade-entry, zero upgrades, equivalent package location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:123 source: + (test-assert + "transaction-upgrade-entry, zero upgrades, equivalent package" + (let* ((old (dummy-package "foo" (version "1"))) + (drv (package-derivation %store old)) + (tx (mock ((gnu packages) + find-best-packages-by-name + (const (list old))) + (transaction-upgrade-entry + %store + (manifest-entry + (inherit (package->manifest-entry old)) + (item (derivation->output-path drv))) + (manifest-transaction))))) + (manifest-transaction-null? tx))) actual-value: #t result: PASS test-name: transaction-upgrade-entry, zero upgrades, propagated inputs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:136 source: + (test-assert + "transaction-upgrade-entry, zero upgrades, propagated inputs" + (let* ((dep (dummy-package "dep" (version "2"))) + (old (dummy-package + "foo" + (version "1") + (propagated-inputs (list dep)))) + (drv (package-derivation %store old)) + (tx (mock ((gnu packages) + find-best-packages-by-name + (const (list old))) + (transaction-upgrade-entry + %store + (manifest-entry + (inherit (package->manifest-entry old)) + (item (derivation->output-path drv)) + (dependencies + (list (manifest-entry + (inherit (package->manifest-entry dep)) + (item (derivation->output-path + (package-derivation + %store + dep))))))) + (manifest-transaction))))) + (manifest-transaction-null? tx))) actual-value: #t result: PASS test-name: transaction-upgrade-entry, one upgrade location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:158 source: + (test-assert + "transaction-upgrade-entry, one upgrade" + (let* ((old (dummy-package "foo" (version "1"))) + (new (dummy-package "foo" (version "2"))) + (tx (mock ((gnu packages) + find-best-packages-by-name + (const (list new))) + (transaction-upgrade-entry + #f + (manifest-entry + (inherit (package->manifest-entry old)) + (item (string-append + (%store-prefix) + "/" + (make-string 32 #\e) + "-foo-1"))) + (manifest-transaction))))) + (and (match (manifest-transaction-install tx) + ((($ "foo" "2" "out" item)) + (eq? item new))) + (null? (manifest-transaction-remove tx))))) actual-value: #t result: PASS test-name: transaction-upgrade-entry, superseded package location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:175 source: + (test-assert + "transaction-upgrade-entry, superseded package" + (let* ((old (dummy-package "foo" (version "1"))) + (new (dummy-package "bar" (version "2"))) + (dep (deprecated-package "foo" new)) + (tx (mock ((gnu packages) + find-best-packages-by-name + (const (list dep))) + (transaction-upgrade-entry + #f + (manifest-entry + (inherit (package->manifest-entry old)) + (item (string-append + (%store-prefix) + "/" + (make-string 32 #\e) + "-foo-1"))) + (manifest-transaction))))) + (and (match (manifest-transaction-install tx) + ((($ "bar" "2" "out" item)) + (eq? item new))) + (match (manifest-transaction-remove tx) + (((? manifest-pattern? pattern)) + (and (string=? (manifest-pattern-name pattern) "foo") + (string=? (manifest-pattern-version pattern) "1") + (string=? + (manifest-pattern-output pattern) + "out"))))))) actual-value: #t result: PASS test-name: transaction-upgrade-entry, transformation options preserved location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:197 source: + (test-equal + "transaction-upgrade-entry, transformation options preserved" + (derivation-file-name + (package-derivation %store grep)) + (let* ((old (dummy-package "emacs" (version "1"))) + (props '((transformations (with-input . "emacs=grep")))) + (tx (transaction-upgrade-entry + %store + (manifest-entry + (inherit (package->manifest-entry old)) + (properties props) + (item (string-append + (%store-prefix) + "/" + (make-string 32 #\e) + "-foo-1"))) + (manifest-transaction)))) + (match (manifest-transaction-install tx) + (((? manifest-entry? entry)) + (and (string=? + (manifest-entry-version entry) + (package-version grep)) + (string=? + (manifest-entry-name entry) + (package-name grep)) + (equal? (manifest-entry-properties entry) props) + (derivation-file-name + (package-derivation + %store + (manifest-entry-item entry)))))))) expected-value: "/tmp/guix-tests/store/27ic97iwcqsqcmrhj67lx16j8wi3x0qz-grep-3.6.drv" actual-value: "/tmp/guix-tests/store/27ic97iwcqsqcmrhj67lx16j8wi3x0qz-grep-3.6.drv" result: PASS test-name: transaction-upgrade-entry, grafts location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:220 source: + (test-assert + "transaction-upgrade-entry, grafts" + (with-build-handler + (const 'failed!) + (parameterize + ((%graft? #t)) + (let* ((old (dummy-package "foo" (version "1"))) + (bar (dummy-package + "bar" + (version "0") + (replacement old))) + (new (dummy-package + "foo" + (version "1") + (inputs (list bar)))) + (tx (mock ((gnu packages) + find-best-packages-by-name + (const (list new))) + (transaction-upgrade-entry + %store + (manifest-entry + (inherit (package->manifest-entry old)) + (item (string-append + (%store-prefix) + "/" + (make-string 32 #\e) + "-foo-1"))) + (manifest-transaction))))) + (and (match (manifest-transaction-install tx) + ((($ "foo" "1" "out" item)) + (eq? item new))) + (null? (manifest-transaction-remove tx))))))) actual-value: #t result: PASS test-name: package-definition-location location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:244 source: + (test-assert + "package-definition-location" + (let ((location (package-location hello)) + (definition (package-definition-location hello))) + (and (string=? + (location-file location) + (location-file definition)) + (= 0 (location-column definition)) + (= 2 (location-column location)) + (= (location-line definition) + (- (location-line location) 1))))) actual-value: #t result: PASS test-name: package-field-location location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:255 source: + (test-assert + "package-field-location" + (let () + (define (goto port line column) + (unless + (and (= (port-column port) (- column 1)) + (= (port-line port) (- line 1))) + (unless + (eof-object? (get-char port)) + (goto port line column)))) + (define read-at + (match-lambda + (($ file line column) + (call-with-input-file + (search-path %load-path file) + (lambda (port) + (goto port line column) + (read port)))))) + (and (member + (read-at + (package-field-location %bootstrap-guile 'name)) + (let ((name (package-name %bootstrap-guile))) + (list name `(name ,name)))) + (member + (read-at + (package-field-location + %bootstrap-guile + 'version)) + (let ((version (package-version %bootstrap-guile))) + (list version `(version ,version)))) + (not (package-field-location + %bootstrap-guile + 'does-not-exist))))) actual-value: #t result: PASS test-name: package-field-location, relative file name location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:282 source: + (test-equal + "package-field-location, relative file name" + (location-file + (package-location %bootstrap-guile)) + (with-fluids + ((%file-port-name-canonicalization 'absolute)) + (location-file + (package-field-location + %bootstrap-guile + 'version)))) expected-value: "gnu/packages/bootstrap.scm" actual-value: "gnu/packages/bootstrap.scm" result: PASS ;;; (x (("b" #) ("c" #) ("d" #) ("a" #) ("x" "something.drv"))) test-name: package-transitive-inputs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:287 source: + (test-assert + "package-transitive-inputs" + (let* ((a (dummy-package "a")) + (b (dummy-package "b" (propagated-inputs (list a)))) + (c (dummy-package "c" (inputs (list a)))) + (d (dummy-package + "d" + (propagated-inputs `(("x" "something.drv"))))) + (e (dummy-package "e" (inputs (list b c d))))) + (and (null? (package-transitive-inputs a)) + (equal? + `(("a" ,a)) + (package-transitive-inputs b)) + (equal? + `(("a" ,a)) + (package-transitive-inputs c)) + (equal? + (package-propagated-inputs d) + (package-transitive-inputs d)) + (equal? + `(("b" ,b) + ("c" ,c) + ("d" ,d) + ("a" ,a) + ("x" "something.drv")) + (pk 'x (package-transitive-inputs e)))))) actual-value: #t result: PASS test-name: package-transitive-inputs, no duplicates location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:306 source: + (test-assert + "package-transitive-inputs, no duplicates" + (let* ((a (dummy-package "a")) + (b (dummy-package + "b" + (inputs `(("a+" ,a))) + (native-inputs `(("a*" ,a))) + (propagated-inputs `(("a" ,a))))) + (c (dummy-package + "c" + (propagated-inputs `(("b" ,b))))) + (d (dummy-package "d" (inputs `(("a" ,a) ("c" ,c))))) + (e (dummy-package "e" (inputs `(("b" ,b) ("c" ,c)))))) + (and (null? (package-transitive-inputs a)) + (equal? + `(("a*" ,a) ("a+" ,a) ("a" ,a)) + (package-transitive-inputs b)) + (equal? + `(("b" ,b) ("a" ,a)) + (package-transitive-inputs c)) + (equal? + `(("a" ,a) ("c" ,c) ("b" ,b)) + (package-transitive-inputs d)) + (equal? + `(("b" ,b) ("c" ,c) ("a" ,a)) + (package-transitive-inputs e))))) actual-value: #t result: PASS test-name: package-transitive-supported-systems location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:328 source: + (test-equal + "package-transitive-supported-systems" + '(("x" "y" "z") ("x" "y") ("y") ("y") ("y")) + (let* ((a (dummy-package + "a" + (build-system trivial-build-system) + (supported-systems '("x" "y" "z")))) + (b (dummy-package + "b" + (build-system trivial-build-system) + (supported-systems '("x" "y")) + (inputs (list a)))) + (c (dummy-package + "c" + (build-system trivial-build-system) + (supported-systems '("y" "z")) + (inputs (list b)))) + (d (dummy-package + "d" + (build-system trivial-build-system) + (supported-systems '("x" "y" "z")) + (inputs (list b c)))) + (e (dummy-package + "e" + (build-system trivial-build-system) + (supported-systems '("x" "y" "z")) + (inputs (list d))))) + (list (package-transitive-supported-systems a) + (package-transitive-supported-systems b) + (package-transitive-supported-systems c) + (package-transitive-supported-systems d) + (package-transitive-supported-systems e)))) expected-value: (("x" "y" "z") ("x" "y") ("y") ("y") ("y")) actual-value: (("x" "y" "z") ("x" "y") ("y") ("y") ("y")) result: PASS test-name: package-development-inputs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:361 source: + (test-assert + "package-development-inputs" + (lset<= + equal? + `(("source" ,(package-source hello)) + ,@(standard-packages)) + (package-development-inputs hello))) actual-value: #t result: PASS test-name: package-development-inputs, cross-compilation location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:368 source: + (test-assert + "package-development-inputs, cross-compilation" + (lset<= + equal? + `(("source" ,(package-source hello)) + ,@(standard-cross-packages + "mips64el-linux-gnu" + 'host) + ,@(standard-cross-packages + "mips64el-linux-gnu" + 'target)) + (package-development-inputs + hello + #:target + "mips64el-linux-gnu"))) actual-value: #t result: PASS test-name: package-closure location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:375 source: + (test-assert + "package-closure" + (let-syntax ((dummy-package/no-implicit + (syntax-rules () + ((_ name rest ...) + (package + (inherit (dummy-package name rest ...)) + (build-system trivial-build-system)))))) + (let* ((a (dummy-package/no-implicit "a")) + (b (dummy-package/no-implicit + "b" + (propagated-inputs (list a)))) + (c (dummy-package/no-implicit "c" (inputs (list a)))) + (d (dummy-package/no-implicit + "d" + (native-inputs (list b)))) + (e (dummy-package/no-implicit + "e" + (inputs (list c d))))) + (lset= eq? + (list a b c d e) + (package-closure (list e)) + (package-closure (list e d)) + (package-closure (list e c b)))))) actual-value: #t result: PASS test-name: origin-actual-file-name location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:397 source: + (test-equal + "origin-actual-file-name" + "foo-1.tar.gz" + (let ((o (dummy-origin + (uri "http://www.example.com/foo-1.tar.gz")))) + (origin-actual-file-name o))) expected-value: "foo-1.tar.gz" actual-value: "foo-1.tar.gz" result: PASS test-name: origin-actual-file-name, file-name location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:402 source: + (test-equal + "origin-actual-file-name, file-name" + "foo-1.tar.gz" + (let ((o (dummy-origin + (uri "http://www.example.com/tarball") + (file-name "foo-1.tar.gz")))) + (origin-actual-file-name o))) expected-value: "foo-1.tar.gz" actual-value: "foo-1.tar.gz" result: PASS test-name: package-direct-sources, no source location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:418 source: + (test-assert + "package-direct-sources, no source" + (null? (package-direct-sources a))) actual-value: #t result: PASS test-name: package-direct-sources, #f source location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:420 source: + (test-equal + "package-direct-sources, #f source" + (list i) + (package-direct-sources b)) expected-value: (# () 3ef15a0>) actual-value: (# () 3ef15a0>) result: PASS test-name: package-direct-sources, not input source location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:423 source: + (test-equal + "package-direct-sources, not input source" + (list u) + (package-direct-sources d)) expected-value: (# () 3ef1660>) actual-value: (# () 3ef1660>) result: PASS ;;; (s-sources (# () 3ef1720> # () 3ef15a0>)) test-name: package-direct-sources location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:426 source: + (test-assert + "package-direct-sources" + (let ((s (package-direct-sources c))) + (and (= (length (pk 's-sources s)) 2) + (member o s) + (member i s)))) actual-value: (# () 3ef15a0>) result: PASS ;;; (d-sources (# () 3ef1660> # () 3ef1720> # () 3ef15a0>)) test-name: package-transitive-sources location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:431 source: + (test-assert + "package-transitive-sources" + (let ((s (package-transitive-sources d))) + (and (= (length (pk 'd-sources s)) 3) + (member o s) + (member i s) + (member u s)))) actual-value: (# () 3ef1660> # () 3ef1720> # () 3ef15a0>) result: PASS ;;; (refs ((assoc-ref l "c*") (assoc-ref l "boo"))) test-name: transitive-input-references location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:438 source: + (test-assert + "transitive-input-references" + (let* ((a (dummy-package "a")) + (b (dummy-package "b")) + (c (dummy-package + "c" + (inputs `(("a" ,a))) + (propagated-inputs `(("boo" ,b))))) + (d (dummy-package "d" (inputs `(("c*" ,c))))) + (keys (map (match-lambda (('assoc-ref 'l key) key)) + (pk 'refs + (transitive-input-references + 'l + (package-inputs d)))))) + (and (= (length keys) 2) + (member "c*" keys) + (member "boo" keys)))) actual-value: ("boo") result: PASS test-name: package-transitive-supported-systems, implicit inputs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:455 source: + (test-equal + "package-transitive-supported-systems, implicit inputs" + %supported-systems + (let ((p (dummy-package + "foo" + (build-system gnu-build-system) + (supported-systems + `("does-not-exist" "foobar" ,@%supported-systems))))) + (parameterize + ((%current-system "armhf-linux")) + (package-transitive-supported-systems p)))) expected-value: ("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-linux" "mips64el-linux" "i586-gnu" "powerpc64le-linux" "powerpc-linux") actual-value: ("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-linux" "mips64el-linux" "i586-gnu" "powerpc64le-linux" "powerpc-linux") result: PASS test-name: package-transitive-supported-systems: reduced binary seed, implicit inputs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:467 source: + (test-equal + "package-transitive-supported-systems: reduced binary seed, implicit inputs" + '("x86_64-linux" "i686-linux") + (let ((p (dummy-package + "foo" + (build-system gnu-build-system) + (supported-systems + `("does-not-exist" "foobar" ,@%supported-systems))))) + (parameterize + ((%current-system "x86_64-linux")) + (package-transitive-supported-systems p)))) expected-value: ("x86_64-linux" "i686-linux") actual-value: ("x86_64-linux" "i686-linux") result: PASS test-name: supported-package? location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:479 source: + (test-assert + "supported-package?" + (let* ((d (dummy-package + "dep" + (build-system trivial-build-system) + (supported-systems '("x86_64-linux")))) + (p (dummy-package + "foo" + (build-system gnu-build-system) + (inputs (list d)) + (supported-systems + '("x86_64-linux" "armhf-linux"))))) + (and (supported-package? p "x86_64-linux") + (not (supported-package? p "i686-linux")) + (not (supported-package? p "armhf-linux"))))) actual-value: #t result: PASS test-name: supported-package? vs. system-dependent graph location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:491 source: + (test-assert + "supported-package? vs. system-dependent graph" + (let* ((p0a (dummy-package + "foo-arm" + (build-system trivial-build-system) + (supported-systems '("armhf-linux")))) + (p0b (dummy-package + "foo-x86_64" + (build-system trivial-build-system) + (supported-systems '("x86_64-linux")))) + (p (dummy-package + "bar" + (build-system trivial-build-system) + (inputs + (if (string=? (%current-system) "armhf-linux") + `(("foo" ,p0a)) + `(("foo" ,p0b))))))) + (and (supported-package? p "x86_64-linux") + (supported-package? p "armhf-linux")))) actual-value: ("armhf-linux") result: PASS test-name: package-source-derivation, file location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:513 source: + (test-assert + "package-source-derivation, file" + (let* ((file (search-path %load-path "guix.scm")) + (package + (package + (inherit (dummy-package "p")) + (source file))) + (source + (package-source-derivation + %store + (package-source package)))) + (and (store-path? source) + (valid-path? %store source) + (equal? + (call-with-input-file source get-bytevector-all) + (call-with-input-file file get-bytevector-all))))) actual-value: #t result: PASS test-name: package-source-derivation, store path location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:524 source: + (package 'foo' has been superseded by 'bar' package 'foo' has been superseded by 'bar' package 'foo' has been superseded by 'bar' warning: package 'foo' no longer exists package 'foo' has been superseded by 'bar' @ build-started /tmp/guix-tests/store/mvjaqf8zvagja931134b4j65klybnhaz-origin-sha512.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/mv//jaqf8zvagja931134b4j65klybnhaz-origin-sha512.drv.bz2 8633 @ build-succeeded /tmp/guix-tests/store/mvjaqf8zvagja931134b4j65klybnhaz-origin-sha512.drv - @ build-started /tmp/guix-tests/store/m3pfya1cas36v4yy04p40l18d19xk275-origin-sha3.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/m3//pfya1cas36v4yy04p40l18d19xk275-origin-sha3.drv.bz2 8640 @ build-succeeded /tmp/guix-tests/store/m3pfya1cas36v4yy04p40l18d19xk275-origin-sha3.drv - test-assert + "package-source-derivation, store path" + (let* ((file (add-to-store + %store + "guix.scm" + #t + "sha256" + (search-path %load-path "guix.scm"))) + (package + (package + (inherit (dummy-package "p")) + (source file))) + (source + (package-source-derivation + %store + (package-source package)))) + (string=? file source))) actual-value: #t result: PASS test-name: package-source-derivation, indirect store path location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:533 source: + (test-assert + "package-source-derivation, indirect store path" + (let* ((dir (add-to-store + %store + "guix-build" + #t + "sha256" + (dirname + (search-path %load-path "guix/build/utils.scm")))) + (package + (package + (inherit (dummy-package "p")) + (source (string-append dir "/utils.scm")))) + (source + (package-source-derivation + %store + (package-source package)))) + (and (direct-store-path? source) + (string-suffix? "utils.scm" source)))) actual-value: #t result: PASS test-name: package-source-derivation, local-file location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:544 source: + (test-assert + "package-source-derivation, local-file" + (let* ((file (local-file "../guix/base32.scm")) + (package + (package + (inherit (dummy-package "p")) + (source file))) + (source + (package-source-derivation + %store + (package-source package)))) + (and (store-path? source) + (string-suffix? "base32.scm" source) + (valid-path? %store source) + (equal? + (call-with-input-file source get-bytevector-all) + (call-with-input-file + (search-path %load-path "guix/base32.scm") + get-bytevector-all))))) actual-value: #t result: PASS test-name: package-source-derivation, origin, sha512 location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:558 source: + (test-equal + "package-source-derivation, origin, sha512" + "hello" + (let* ((bash (search-bootstrap-binary + "bash" + (%current-system))) + (builder + (add-text-to-store + %store + "my-fixed-builder.sh" + "echo -n hello > $out" + '())) + (method + (lambda* (url hash-algo hash #:optional name #:rest rest) + (and (eq? hash-algo 'sha512) + (raw-derivation + name + bash + (list builder) + #:sources + (list builder) + #:hash + hash + #:hash-algo + hash-algo)))) + (source + (origin + (method method) + (uri "unused://") + (file-name "origin-sha512") + (hash (content-hash + (gcrypt:bytevector-hash + (string->utf8 "hello") + (gcrypt:lookup-hash-algorithm 'sha512)) + sha512)))) + (drv (package-source-derivation %store source)) + (output (derivation->output-path drv))) + (build-derivations %store (list drv)) + (call-with-input-file output get-string-all))) expected-value: "hello" actual-value: "hello" result: PASS test-name: package-source-derivation, origin, sha3-512 location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:584 source: + (test-equal + "package-source-derivation, origin, sha3-512" + "hello, sha3" + (let* ((bash (search-bootstrap-binary + "bash" + (%current-system))) + (builder + (add-text-to-store + %store + "my-fixed-builder.sh" + "echo -n hello, sha3 > $out" + '())) + (method + (lambda* (url hash-algo hash #:optional name #:rest rest) + (and (eq? hash-algo 'sha3-512) + (raw-derivation + name + bash + (list builder) + #:sources + (list builder) + #:hash + hash + #:hash-algo + hash-algo)))) + (source + (origin + (method method) + (uri "unused://") + (file-name "origin-sha3") + (hash (content-hash + (gcrypt:bytevector-hash + (string->utf8 "hello, sha3") + (gcrypt:lookup-hash-algorithm 'sha3-512)) + sha3-512)))) + (drv (package-source-derivation %store source)) + (output (derivation->output-path drv))) + (build-derivations %store (list drv)) + (call-with-input-file output get-string-all))) expected-value: "hello, sha3" actual-value: "hello, sha3" result: PASS test-name: package-source-derivation, snippet location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:616 source: + (test-equal + "package-source-derivation, snippet" + "OK" + (let* ((source + (bootstrap-origin + (origin + (inherit + (bootstrap-guile-origin (%current-system))) + (patch-inputs + `(("tar" ,%bootstrap-coreutils&co) + ("xz" ,%bootstrap-coreutils&co) + ("patch" ,%bootstrap-coreutils&co))) + (patch-guile %bootstrap-guile) + (modules '((guix build utils))) + (snippet + '(begin + (chmod "." 511) + (symlink "guile" "guile-rocks") + (copy-recursively + "../share/guile/2.0/scripts" + "scripts") + (chmod ".." 511)))))) + (package + (package + (inherit (dummy-package "with-snippet")) + (source source) + (build-system trivial-build-system) + (inputs + `(("tar" + ,(search-bootstrap-binary "tar" (%current-system))) + ("xz" + ,(search-bootstrap-binary "xz" (%current-system))))) + (arguments + `(#:guile + ,%bootstrap-guile + #:modules + ((guix build utils)) + #:builder + (begin + (use-modules (guix build utils)) + (let ((tar (assoc-ref %build-inputs "tar")) + (xz (assoc-ref %build-inputs "xz")) + (source (assoc-ref %build-inputs "source"))) + (invoke + tar + "xvf" + source + "--use-compress-program" + xz) + (unless + (and (string=? "guile" (readlink "bin/guile-rocks")) + (file-exists? "bin/scripts/compile.scm")) + (error "the snippet apparently failed")) + (let ((out (assoc-ref %outputs "out"))) + (call-with-output-file + out + (lambda (p) (display "OK" p)))) + #t)))))) + (drv (package-derivation %store package)) + (out (derivation->output-path drv))) + (and (build-derivations + %store + (list (pk 'snippet-drv drv))) + (call-with-input-file out get-string-all)))) result: SKIP test-name: origin->derivation, single file with snippet (compression: gzip) location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:681 source: + (test-equal + (string-append + "origin->derivation, single file with snippet " + "(compression: " + (if comp comp "None") + ")") + "2 + 2 = 4" + (let*-values + (((name) "maths") + ((compressed-name) + (if comp (string-append name "." ext) name)) + ((file hash) + (test-file %store compressed-name "2 + 2 = 5")) + ((source) + (origin + (method url-fetch) + (uri (string-append "file://" file)) + (file-name compressed-name) + (patch-inputs + `(("tar" ,%bootstrap-coreutils&co) + ("xz" ,%bootstrap-coreutils&co) + ("bzip2" ,%bootstrap-coreutils&co) + ("gzip" ,%bootstrap-coreutils&co))) + (patch-guile %bootstrap-guile) + (modules '((guix build utils))) + (snippet `(substitute* ,name (("5") "4"))) + (hash (content-hash hash)))) + ((drv) + (run-with-store + %store + (origin->derivation source))) + ((out) (derivation->output-path drv))) + (and (build-derivations %store (list drv)) + (if (tarball? out) + (let* ((bin (gexp (string-append + (ungexp-native %bootstrap-coreutils&co) + "/bin"))) + (f (computed-file + name + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules (guix build utils)) + (setenv "PATH" (ungexp-native bin)) + (invoke "tar" "xvf" (ungexp-native out)) + (copy-file + (ungexp-native name) + (ungexp output))))))) + (drv (run-with-store %store (lower-object f))) + (_ (build-derivations %store (list drv)))) + (call-with-input-file + (derivation->output-path drv) + get-string-all)) + (call-with-input-file out get-string-all))))) result: SKIP test-name: origin->derivation, single file with snippet (compression: xz) location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:681 source: + (test-equal + (string-append + "origin->derivation, single file with snippet " + "(compression: " + (if comp comp "None") + ")") + "2 + 2 = 4" + (let*-values + (((name) "maths") + ((compressed-name) + (if comp (string-append name "." ext) name)) + ((file hash) + (test-file %store compressed-name "2 + 2 = 5")) + ((source) + (origin + (method url-fetch) + (uri (string-append "file://" file)) + (file-name compressed-name) + (patch-inputs + `(("tar" ,%bootstrap-coreutils&co) + ("xz" ,%bootstrap-coreutils&co) + ("bzip2" ,%bootstrap-coreutils&co) + ("gzip" ,%bootstrap-coreutils&co))) + (patch-guile %bootstrap-guile) + (modules '((guix build utils))) + (snippet `(substitute* ,name (("5") "4"))) + (hash (content-hash hash)))) + ((drv) + (run-with-store + %store + (origin->derivation source))) + ((out) (derivation->output-path drv))) + (and (build-derivations %store (list drv)) + (if (tarball? out) + (let* ((bin (gexp (string-append + (ungexp-native %bootstrap-coreutils&co) + "/bin"))) + (f (computed-file + name + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules (guix build utils)) + (setenv "PATH" (ungexp-native bin)) + (invoke "tar" "xvf" (ungexp-native out)) + (copy-file + (ungexp-native name) + (ungexp output))))))) + (drv (run-with-store %store (lower-object f))) + (_ (build-derivations %store (list drv)))) + (call-with-input-file + (derivation->output-path drv) + get-string-all)) + (call-with-input-file out get-string-all))))) result: SKIP test-name: origin->derivation, single file with snippet (compression: bzip2) location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:681 source: + (test-equal + (string-append + "origin->derivation, single file with snippet " + "(compression: " + (if comp comp "None") + ")") + "2 + 2 = 4" + (let*-values + (((name) "maths") + ((compressed-name) + (if comp (string-append name "." ext) name)) + ((file hash) + (test-file %store compressed-name "2 + 2 = 5")) + ((source) + (origin + (method url-fetch) + (uri (string-append "file://" file)) + (file-name compressed-name) + (patch-inputs + `(("tar" ,%bootstrap-coreutils&co) + ("xz" ,%bootstrap-coreutils&co) + ("bzip2" ,%bootstrap-coreutils&co) + ("gzip" ,%bootstrap-coreutils&co))) + (patch-guile %bootstrap-guile) + (modules '((guix build utils))) + (snippet `(substitute* ,name (("5") "4"))) + (hash (content-hash hash)))) + ((drv) + (run-with-store + %store + (origin->derivation source))) + ((out) (derivation->output-path drv))) + (and (build-derivations %store (list drv)) + (if (tarball? out) + (let* ((bin (gexp (string-append + (ungexp-native %bootstrap-coreutils&co) + "/bin"))) + (f (computed-file + name + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules (guix build utils)) + (setenv "PATH" (ungexp-native bin)) + (invoke "tar" "xvf" (ungexp-native out)) + (copy-file + (ungexp-native name) + (ungexp output))))))) + (drv (run-with-store %store (lower-object f))) + (_ (build-derivations %store (list drv)))) + (call-with-input-file + (derivation->output-path drv) + get-string-all)) + (call-with-input-file out get-string-all))))) result: SKIP test-name: origin->derivation, single file with snippet (compression: None) location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:681 source: + (test-equal + (string-append + "origin->derivation, single file with snippet " + "(compression: " + (if comp comp "None") + ")") + "2 + 2 = 4" + (let*-values + (((name) "maths") + ((compressed-name) + (if comp (string-append name "." ext) name)) + ((file hash) + (test-file %store compressed-name "2 + 2 = 5")) + ((source) + (origin + (method url-fetch) + (uri (string-append "file://" file)) + (file-name compressed-name) + (patch-inputs + `(("tar" ,%bootstrap-coreutils&co) + ("xz" ,%bootstrap-coreutils&co) + ("bzip2" ,%bootstrap-coreutils&co) + ("gzip" ,%bootstrap-coreutils&co))) + (patch-guile %bootstrap-guile) + (modules '((guix build utils))) + (snippet `(substitute* ,name (("5") "4"))) + (hash (content-hash hash)))) + ((drv) + (run-with-store + %store + (origin->derivation source))) + ((out) (derivation->output-path drv))) + (and (build-derivations %store (list drv)) + (if (tarball? out) + (let* ((bin (gexp (string-append + (ungexp-native %bootstrap-coreutils&co) + "/bin"))) + (f (computed-file + name + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules (guix build utils)) + (setenv "PATH" (ungexp-native bin)) + (invoke "tar" "xvf" (ungexp-native out)) + (copy-file + (ungexp-native name) + (ungexp output))))))) + (drv (run-with-store %store (lower-object f))) + (_ (build-derivations %store (list drv)))) + (call-with-input-file + (derivation->output-path drv) + get-string-all)) + (call-with-input-file out get-string-all))))) result: SKIP test-name: return value location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:727 source: + (test-assert + "return value" + (let ((drv (package-derivation %store (dummy-package "p")))) + (and (derivation? drv) + (file-exists? (derivation-file-name drv))))) actual-value: #t result: PASS test-name: package-derivation, inputs deduplicated location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:732 source: + (test-assert + "package-derivation, inputs deduplicated" + (let* ((dep (dummy-package "dep")) + (p0 (dummy-package "p" (inputs (list dep)))) + (p1 (package + (inherit p0) + (inputs + `(("dep" ,(package (inherit dep))) + ,@(package-inputs p0)))))) + (string=? + (derivation-file-name + (package-derivation %store p0)) + (derivation-file-name + (package-derivation %store p1))))) actual-value: #t result: PASS test-name: package-derivation, different system location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:745 source: + (test-assert + "package-derivation, different system" + (let* ((system + (if (string=? (%current-system) "x86_64-linux") + "aarch64-linux" + "x86_64-linux")) + (drv (package-derivation + %store + (dummy-package "p") + system + #:graft? + #f))) + (define right-system? + (mlambdaq + (drv) + (and (string=? (derivation-system drv) system) + (every (compose + right-system? + derivation-input-derivation) + (derivation-inputs drv))))) + (right-system? drv))) actual-value: #t result: PASS test-name: package-output location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:760 source: + (test-assert + "package-output" + (let* ((package (dummy-package "p")) + (drv (package-derivation %store package))) + (and (derivation? drv) + (string=? + (derivation->output-path drv) + (package-output %store package "out"))))) actual-value: #t result: PASS test-name: patch not found yields a run-time error location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:767 source: + (test-equal + "patch not found yields a run-time error" + '("~a: patch not found\n" "does-not-exist.patch") + (guard (c ((formatted-message? c) + (cons (formatted-message-string c) + (formatted-message-arguments c)))) + (let ((p (package + @ build-started /tmp/guix-tests/store/8395wfdlh920h7g3hb46zh6wrqynh703-trivial-0.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/83//95wfdlh920h7g3hb46zh6wrqynh703-trivial-0.drv.bz2 8647 @ build-succeeded /tmp/guix-tests/store/8395wfdlh920h7g3hb46zh6wrqynh703-trivial-0.drv - @ build-started /tmp/guix-tests/store/912dg9v49f2lldkq5mfdgqnmc74g6gfn-trivial-with-input-file-0.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/91//2dg9v49f2lldkq5mfdgqnmc74g6gfn-trivial-with-input-file-0.drv.bz2 8654 @ build-succeeded /tmp/guix-tests/store/912dg9v49f2lldkq5mfdgqnmc74g6gfn-trivial-with-input-file-0.drv - (inherit (dummy-package "p")) + (source + (origin + (method (const #f)) + (uri "http://whatever") + (patches + (list (search-patch "does-not-exist.patch"))) + (sha256 + (base32 + "0amn0bbwqvsvvsh6drfwz20ydc2czk374lzw5kksbh6bf78k4ks4"))))))) + (package-derivation %store p) + #f))) expected-value: ("~a: patch not found\n" "does-not-exist.patch") actual-value: ("~a: patch not found\n" "does-not-exist.patch") result: PASS test-name: &package-input-error location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:786 source: + (test-equal + "&package-input-error" + (list dummy `("x" ,(current-module))) + (guard (c ((package-input-error? c) + (list (package-error-package c) + (package-error-invalid-input c)))) + (package-derivation %store dummy))) expected-value: (# ("x" #)) actual-value: (# ("x" #)) result: PASS test-name: reference to non-existent output location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:793 source: + (test-assert + "reference to non-existent output" + (parameterize + ((%graft? #f)) + (let* ((dep (dummy-package "dep")) + (p (dummy-package + "p" + (inputs (list `(,dep "non-existent")))))) + (guard (c ((derivation-missing-output-error? c) + (and (string=? + (derivation-missing-output c) + "non-existent") + (equal? + (package-derivation %store dep) + (derivation-error-derivation c))))) + (package-derivation %store p))))) actual-value: #t result: PASS ;;; (drv # /tmp/guix-tests/store/d0lgpaykzb5qgls76w03rad0r8b531xa-trivial-0 41e1a50> "/tmp/guix-tests/store/d0lgpaykzb5qgls76w03rad0r8b531xa-trivial-0") test-name: trivial location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:805 source: + (test-assert + "trivial" + (let* ((p (package + (inherit (dummy-package "trivial")) + (build-system trivial-build-system) + (source #f) + (arguments + `(#:guile + ,%bootstrap-guile + #:builder + (begin + (mkdir %output) + (call-with-output-file + (string-append %output "/test") + (lambda (p) (display '(hello guix) p))) + #t))))) + (d (package-derivation %store p))) + (and (build-derivations %store (list d)) + (let ((p (pk 'drv d (derivation->output-path d)))) + (equal? + '(hello guix) + (call-with-input-file + (string-append p "/test") + read)))))) actual-value: #t result: PASS ;;; (drv # /tmp/guix-tests/store/cqi9na018l4pkv5p0ik9r1rwhbfnndkm-trivial-with-input-file-0 578f320> "/tmp/guix-tests/store/cqi9na018l4pkv5p0ik9r1rwhbfnndkm-trivial-with-input-file-0") test-name: trivial with local file as input location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:824 source: + (test-assert + "trivial with local file as input" + (let* ((i (search-path %load-path "ice-9/boot-9.scm")) + (p (package + (inherit + (dummy-package "trivial-with-input-file"))@ build-started /tmp/guix-tests/store/smwgv7p8wlx7av46zj2c0an6vzz8wrjh-trivial-with-source-0.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/sm//wgv7p8wlx7av46zj2c0an6vzz8wrjh-trivial-with-source-0.drv.bz2 8661 @ build-succeeded /tmp/guix-tests/store/smwgv7p8wlx7av46zj2c0an6vzz8wrjh-trivial-with-source-0.drv - @ build-started /tmp/guix-tests/store/ny5jbq0nq2pwh6izi5hhdyy6957w8h8l-trivial-system-dependent-input-0.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/ny//5jbq0nq2pwh6izi5hhdyy6957w8h8l-trivial-system-dependent-input-0.drv.bz2 8668 @ build-succeeded /tmp/guix-tests/store/ny5jbq0nq2pwh6izi5hhdyy6957w8h8l-trivial-system-dependent-input-0.drv - @ build-started /tmp/guix-tests/store/kvf88c94di8zghwa1f9lj7cf9k6zayng-trivial-0.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/kv//f88c94di8zghwa1f9lj7cf9k6zayng-trivial-0.drv.bz2 8677 output (`/tmp/guix-tests/store/9h4j7riy5yw2gjqaph3allxhmidgd7rd-trivial-0') is not allowed to refer to path `/tmp/guix-tests/store/9h4j7riy5yw2gjqaph3allxhmidgd7rd-trivial-0' @ build-failed /tmp/guix-tests/store/kvf88c94di8zghwa1f9lj7cf9k6zayng-trivial-0.drv - 1 output (`/tmp/guix-tests/store/9h4j7riy5yw2gjqaph3allxhmidgd7rd-trivial-0') is not allowed to refer to path `/tmp/guix-tests/store/9h4j7riy5yw2gjqaph3allxhmidgd7rd-trivial-0' + (build-system trivial-build-system) + (source #f) + (arguments + `(#:guile + ,%bootstrap-guile + #:builder + (begin + (copy-file + (assoc-ref %build-inputs "input") + %output) + #t))) + (inputs `(("input" ,i))))) + (d (package-derivation %store p))) + (and (build-derivations %store (list d)) + (let ((p (pk 'drv d (derivation->output-path d)))) + (equal? + (call-with-input-file p get-bytevector-all) + (call-with-input-file i get-bytevector-all)))))) actual-value: #t result: PASS test-name: trivial with source location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:842 source: + (test-assert + "trivial with source" + (let* ((i (search-path %load-path "ice-9/boot-9.scm")) + (p (package + (inherit (dummy-package "trivial-with-source")) + (build-system trivial-build-system) + (source i) + (arguments + `(#:guile + ,%bootstrap-guile + #:builder + (begin + (copy-file + (assoc-ref %build-inputs "source") + %output) + #t))))) + (d (package-derivation %store p))) + (and (build-derivations %store (list d)) + (let ((p (derivation->output-path d))) + (equal? + (call-with-input-file p get-bytevector-all) + (call-with-input-file i get-bytevector-all)))))) actual-value: #t result: PASS ;;; (drv # /tmp/guix-tests/store/x0mbbd2xp3yyh3skm520xffmdw2713r3-trivial-system-dependent-input-0 509e000> "/tmp/guix-tests/store/x0mbbd2xp3yyh3skm520xffmdw2713r3-trivial-system-dependent-input-0") test-name: trivial with system-dependent input location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:859 source: + (test-assert + "trivial with system-dependent input" + (let* ((p (package + (inherit + (dummy-package "trivial-system-dependent-input")) + (build-system trivial-build-system) + (source #f) + (arguments + `(#:guile + ,%bootstrap-guile + #:modules + ((guix build utils)) + #:builder + (begin + (use-modules (guix build utils)) + (let ((out (assoc-ref %outputs "out")) + (bash (assoc-ref %build-inputs "bash"))) + (invoke + bash + "-c" + (format #f "echo hello > ~a" out)))))) + (inputs + `(("bash" + ,(search-bootstrap-binary + "bash" + (%current-system))))))) + (d (package-derivation %store p))) + (and (build-derivations %store (list d)) + (let ((p (pk 'drv d (derivation->output-path d)))) + (eq? 'hello (call-with-input-file p read)))))) actual-value: #t result: PASS test-name: trivial with #:allowed-references location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:880 source: + (test-assert + "trivial with #:allowed-references" + (let* ((p (package + (inherit (dummy-package "trivial")) + (build-system trivial-build-system) + (arguments + `(#:guile + ,%bootstrap-guile + #:allowed-references + (,%bootstrap-guile) + #:builder + (begin + (mkdir %output) + @ build-started /tmp/guix-tests/store/dzl4zfm7y3f77wbaqlvg08dljpn0mj1q-trivial-0.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/dz//l4zfm7y3f77wbaqlvg08dljpn0mj1q-trivial-0.drv.bz2 8684 @ build-succeeded /tmp/guix-tests/store/dzl4zfm7y3f77wbaqlvg08dljpn0mj1q-trivial-0.drv - (symlink %output (string-append %output "/self")) + #t))))) + (d (package-derivation %store p))) + (guard (c ((store-protocol-error? c) #t)) + (build-derivations %store (list d)) + #f))) actual-value: #t result: PASS test-name: trivial with #:allowed-references + grafts location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:899 source: + (test-assert + "trivial with #:allowed-references + grafts" + (let* ((g (package + (inherit %bootstrap-guile) + (replacement + (package + (inherit %bootstrap-guile) + (version "9.9"))))) + (p (package + (inherit (dummy-package "trivial")) + (build-system trivial-build-system) + (inputs (list g)) + (arguments + `(#:guile + ,g + #:allowed-references + (,g) + #:builder + (mkdir %output))))) + (d0 (package-derivation %store p #:graft? #f)) + (d1 (parameterize + ((%graft? #t)) + (package-derivation %store p #:graft? #t)))) + (string=? + (derivation-file-name d1) + (derivation-file-name d0)))) actual-value: #t result: PASS test-name: search paths location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:921 source: + (test-assert + "search paths" + (let* ((p (make-prompt-tag "return-search-paths")) + (t (make-parameter "guile-0")) + (s (build-system + (name 'raw) + (description + "Raw build system with direct store access") + (lower (lambda* (name + #:key + source + inputs + system + target + #:allow-other-keys) + (bag (name name) + (system system) + (target target) + (build-inputs inputs) + (build (lambda* (name + inputs + #:key + outputs + system + search-paths) + (if (string=? name (t)) + (abort-to-prompt p search-paths) + (gexp->derivation + name + (gexp (mkdir (ungexp + output)))))))))))) + (x (list (search-path-specification + (variable "GUILE_LOAD_PATH") + (files '("share/guile/site/2.0"))) + (search-path-specification + (variable "GUILE_LOAD_COMPILED_PATH") + (files '("share/guile/site/2.0"))))) + (a (package + (inherit (dummy-package "guile")) + (build-system s) + (native-search-paths x))) + (b (package + (inherit (dummy-package "guile-foo")) + (build-system s) + (inputs `(("guile" ,a))))) + (c (package + (inherit (dummy-package "guile-bar")) + (build-system s) + (inputs `(("guile" ,a) ("guile-foo" ,b)))))) + (let-syntax ((collect + (syntax-rules () + ((_ body ...) + (call-with-prompt + p + (lambda () body ...) + (lambda (k search-paths) search-paths)))))) + (and (null? (collect (package-derivation %store a))) + (parameterize + ((t "guile-foo-0")) + (equal? + x + (collect (package-derivation %store b)))) + (parameterize + ((t "guile-bar-0")) + (equal? + x + (collect (package-derivation %store c)))))))) actual-value: #t result: PASS test-name: package-transitive-native-search-paths location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:969 source: + (test-assert + "package-transitive-native-search-paths" + (let* ((sp (lambda (name) + (list (search-path-specification + (variable name) + (files '("foo/bar")))))) + (p0 (dummy-package + "p0" + (native-search-paths (sp "PATH0")))) + (p1 (dummy-package + "p1" + (native-search-paths (sp "PATH1")))) + (p2 (dummy-package + "p2" + (native-search-paths (sp "PATH2")) + (inputs (list p0)) + (propagated-inputs (list p1)))) + (p3 (dummy-package + "p3" + (native-search-paths (sp "PATH3")) + (native-inputs (list p0)) + (propagated-inputs (list p2))))) + (lset= string=? + '("PATH1" "PATH2" "PATH3") + (map search-path-specification-variable + (package-transitive-native-search-paths p3))))) actual-value: #t result: PASS test-name: package-cross-derivation location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:989 source: + (test-assert + "package-cross-derivation" + (let ((drv (package-cross-derivation + %store + (dummy-package "p") + "mips64el-linux-gnu"))) + (and (derivation? drv) + (file-exists? (derivation-file-name drv))))) actual-value: #t result: PASS test-name: package-cross-derivation, trivial-build-system location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:995 source: + (test-assert + "package-cross-derivation, trivial-build-system" + (let ((p (package + (inherit (dummy-package "p")) + (build-system trivial-build-system) + (arguments '(#:builder (exit 1)))))) + (let ((drv (package-cross-derivation + %store + p + "mips64el-linux-gnu"))) + (derivation? drv)))) actual-value: #t result: PASS test-name: package-cross-derivation, no cross builder location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1002 source: + (test-assert + "package-cross-derivation, no cross builder" + (let* ((b (build-system + (inherit trivial-build-system) + (lower (const #f)))) + (p (package + (inherit (dummy-package "p")) + (build-system b)))) + (guard (c ((package-cross-build-system-error? c) + (eq? (package-error-package c) p))) + (package-cross-derivation + %store + p + "mips64el-linux-gnu") + #f))) actual-value: #t result: PASS test-name: package-grafts, indirect grafts location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1030 source: + (test-assert + "package-grafts, indirect grafts" + (let* ((new (dummy-package + "dep" + (arguments '(#:implicit-inputs? #f)))) + (dep (package (inherit new) (version "0.0"))) + (dep* (package (inherit dep) (replacement new))) + (dummy (dummy-package + "dummy" + (arguments '(#:implicit-inputs? #f)) + (inputs (list dep*))))) + (equal? + (package-grafts %store dummy) + (list (graft (origin (package-derivation %store dep)) + (replacement (package-derivation %store new))))))) actual-value: #t result: PASS test-name: @ build-started /tmp/guix-tests/store/4m1glyi50nnrpg9bmd3fvrg1724mqnpr-p1-0.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/4m//1glyi50nnrpg9bmd3fvrg1724mqnpr-p1-0.drv.bz2 8691 @ build-succeeded /tmp/guix-tests/store/4m1glyi50nnrpg9bmd3fvrg1724mqnpr-p1-0.drv - @ build-started /tmp/guix-tests/store/d7dd9a1asy97gr2vppsq8j044h733cg1-P2-0.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/d7//dd9a1asy97gr2vppsq8j044h733cg1-P2-0.drv.bz2 8692 @ build-succeeded /tmp/guix-tests/store/d7dd9a1asy97gr2vppsq8j044h733cg1-P2-0.drv - package-grafts, indirect grafts, propagated inputs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1063 source: + (test-assert + "package-grafts, indirect grafts, propagated inputs" + (let* ((new (dummy-package + "dep" + (arguments '(#:implicit-inputs? #f)))) + (dep (package (inherit new) (version "0.0"))) + (dep* (package (inherit dep) (replacement new))) + (prop (dummy-package + "propagated" + (propagated-inputs (list dep*)) + (arguments '(#:implicit-inputs? #f)))) + (dummy (dummy-package + "dummy" + (arguments '(#:implicit-inputs? #f)) + (inputs (list prop))))) + (equal? + (package-grafts %store dummy) + (list (graft (origin (package-derivation %store dep)) + (replacement (package-derivation %store new))))))) actual-value: #t result: PASS test-name: package-grafts, same replacement twice location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1079 source: + (test-assert + "package-grafts, same replacement twice" + (let* ((new (dummy-package + "dep" + (version "1") + (arguments '(#:implicit-inputs? #f)))) + (dep (package + (inherit new) + (version "0") + (replacement new))) + (p1 (dummy-package + "intermediate1" + (arguments '(#:implicit-inputs? #f)) + (inputs (list dep)))) + (p2 (dummy-package + "intermediate2" + (arguments '(#:implicit-inputs? #f)) + (inputs (list (package (inherit dep)))))) + (p3 (dummy-package + "final" + (arguments '(#:implicit-inputs? #f)) + (inputs (list p1 p2))))) + (equal? + (package-grafts %store p3) + (list (graft (origin + (package-derivation + %store + (package (inherit dep) (replacement #f)))) + (replacement (package-derivation %store new))))))) actual-value: #t result: PASS ;;; ((# /tmp/guix-tests/store/p4cqpmak7haj0m2y40v5x3wpqqgfday1-p0-1.1-lib 375a300> # /tmp/guix-tests/store/1sjcv980g8p9wg4px54s5i908swn7zhf-p0-1.1 375a330>)) test-name: package-grafts, dependency on several outputs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1103 source: + (test-assert + "package-grafts, dependency on several outputs" + (letrec* + ((p0 (dummy-package + "p0" + (version "1.0") + (replacement p0*) + (arguments '(#:implicit-inputs? #f)) + (outputs '("out" "lib")))) + (p0* (package (inherit p0) (version "1.1"))) + (p1 (dummy-package + "p1" + (arguments '(#:implicit-inputs? #f)) + (inputs (list p0 `(,p0 "lib")))))) + (lset= equal? + (pk (package-grafts %store p1)) + (list (graft (origin (package-derivation %store p0)) + (origin-output "out") + (replacement (package-derivation %store p0*)) + (replacement-output "out")) + (graft (origin (package-derivation %store p0)) + (origin-output "lib") + (replacement (package-derivation %store p0*)) + (replacement-output "lib")))))) actual-value: #t result: PASS test-name: replacement also grafted location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1126 source: + (test-assert + "replacement also grafted" + (let* ((p1r (dummy-package + "P1" + (build-system trivial-build-system) + (arguments + `(#:guile + ,%bootstrap-guile + #:builder + (let ((out (assoc-ref %outputs "out"))) + (mkdir out) + (call-with-output-file + (string-append out "/replacement") + (const #t))))))) + (p1 (package + (inherit p1r) + (name "p1") + (replacement p1r) + (arguments + `(#:guile + ,%bootstrap-guile + #:builder + (begin (mkdir (assoc-ref %outputs "out")) #t))))) + (p2r (dummy-package + "P2" + (build-system trivial-build-system) + (inputs (list p1)) + (arguments + `(#:guile + ,%bootstrap-guile + #:builder + (let ((out (assoc-ref %outputs "out"))) + (mkdir out) + (chdir out) + (symlink (assoc-ref %build-inputs "p1") "p1") + (call-with-output-file + (string-append out "/replacement") + (const #t))))))) + (p2 (package + (inherit p2r) + (name "p2") + (replacement p2r) + (arguments + `(#:guile + ,%bootstrap-guile + #:builder + (let ((out (assoc-ref %outputs "out"))) + (mkdir out) + (chdir out) + (symlink (assoc-ref %build-inputs "p1") "p1") + #t))))) + (p3 (dummy-package + "p3" + (build-system trivial-build-system) + (inputs (list p2)) + (arguments + `(#:guile + ,%bootstrap-guile + #:builder + (let ((out (assoc-ref %outputs "out"))) + (mkdir out) + (chdir out) + (symlink (assoc-ref %build-inputs "p2") "p2") + #t)))))) + (lset= equal? + (package-grafts %store p3) + (list (graft (origin + (package-derivation %store p1 #:graft? #f)) + (replacement (package-derivation %store p1r))) + (graft (origin + (package-derivation %store p2 #:graft? #f)) + (replacement + (package-derivation %store p2r #:graft? #t))))))) actual-value: #t result: PASS test-name: package->bag location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1223 source: + (test-equal + "package->bag" + `("foo86-hurd" + #f + (,(package-source gnu-make)) + (,(canonical-package glibc)) + (,(canonical-package coreutils))) + (let ((bag (package->bag gnu-make "foo86-hurd"))) + (list (bag-system bag) + (bag-target bag) + (assoc-ref (bag-build-inputs bag) "source") + (assoc-ref (bag-build-inputs bag) "libc") + (assoc-ref (bag-build-inputs bag) "coreutils")))) expected-value: ("foo86-hurd" #f (# ("/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/gnu/packages/patches/make-impure-dirs.patch") 23161e0>) (#) (#)) actual-value: ("foo86-hurd" #f (# ("/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/gnu/packages/patches/make-impure-dirs.patch") 23161e0>) (#) (#)) result: PASS test-name: package->bag, sensitivity to %current-target-system location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1232 source: + (test-assert + "package->bag, sensitivity to %current-target-system" + (let* ((lower (lambda* (name + #:key + system + target + inputs + native-inputs + #:allow-other-keys) + (and (not target) + (bag (name name) + (system system) + (target target) + (build-inputs native-inputs) + (host-inputs inputs) + (build (lambda* (name + inputs + #:key + system + target + #:allow-other-keys) + (gexp->derivation + "foo" + (gexp (mkdir (ungexp output)))))))))) + (bs (build-system + (name 'build-system-without-cross-compilation) + (description + "Does not support cross compilation.") + (lower lower))) + (dep (dummy-package "dep" (build-system bs))) + (pkg (dummy-package + "example" + (native-inputs (list dep)))) + (do-not-build + (lambda (continue store lst . _) lst))) + (equal? + (with-build-handler + do-not-build + (parameterize + ((%current-target-system "powerpc64le-linux-gnu") + (%graft? #t)) + (package-cross-derivation + %store + pkg + (%current-target-system) + #:graft? + #t))) + (with-build-handler + do-not-build + (package-cross-derivation + %store + (package (inherit pkg)) + "powerpc64le-linux-gnu" + #:graft? + #t))))) actual-value: #t result: PASS test-name: package->bag, cross-compilation location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1265 source: + (test-equal + "package->bag, cross-compilation" + `(,(%current-system) + "foo86-hurd" + (,(package-source gnu-make)) + (,(canonical-package glibc)) + (,(canonical-package coreutils))) + (let ((bag (package->bag + gnu-make + (%current-system) + "foo86-hurd"))) + (list (bag-system bag) + (bag-target bag) + (assoc-ref (bag-build-inputs bag) "source") + (assoc-ref (bag-build-inputs bag) "libc") + (assoc-ref (bag-build-inputs bag) "coreutils")))) expected-value: ("aarch64-linux" "foo86-hurd" (# ("/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/gnu/packages/patches/make-impure-dirs.patch") 23161e0>) (#) (#)) actual-value: ("aarch64-linux" "foo86-hurd" (# ("/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/gnu/packages/patches/make-impure-dirs.patch") 23161e0>) (#) (#)) result: PASS test-name: package->bag, propagated inputs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1275 source: + (test-assert + "package->bag, propagated inputs" + (let* ((dep (dummy-package "dep")) + (prop (dummy-package + "prop" + (propagated-inputs (list dep)))) + (dummy (dummy-package "dummy" (inputs (list prop)))) + (inputs + (bag-transitive-inputs + (package->bag dummy #:graft? #f)))) + (match (assoc "dep" inputs) + (("dep" package) (eq? package dep))))) actual-value: #t result: PASS test-name: package->bag, sensitivity to %current-system location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1286 source: + (test-assert + "package->bag, sensitivity to %current-system" + (let* ((dep (dummy-package + "dep" + (propagated-inputs + (if (string=? (%current-system) "i586-gnu") + `(("libxml2" ,libxml2)) + '())))) + (pkg (dummy-package "foo" (native-inputs (list dep)))) + (bag (package->bag pkg (%current-system) "i586-gnu"))) + (equal? + (parameterize + ((%current-system "x86_64-linux")) + (bag-transitive-inputs bag)) + (parameterize + ((%current-system "i586-gnu")) + (bag-transitive-inputs bag))))) actual-value: #t result: PASS test-name: package->bag, sensitivity to %current-target-system location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1300 source: + (test-assert + "package->bag, sensitivity to %current-target-system" + (let* ((dep (dummy-package + "dep" + (propagated-inputs + (if (%current-target-system) + `(("libxml2" ,libxml2)) + '())))) + (pkg (dummy-package "foo" (native-inputs (list dep)))) + (bag (package->bag pkg (%current-system) "foo86-hurd"))) + (equal? + (parameterize + ((%current-target-system "foo64-gnu")) + (bag-transitive-inputs bag)) + (parameterize + ((%current-target-system #f)) + (bag-transitive-inputs bag))))) actual-value: #t result: PASS test-name: bag->derivation location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1313 source: + (test-assert + "bag->derivation" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (parameterize + ((%graft? #f)) + (let ((bag (package->bag gnu-make)) + (drv (package-derivation %store gnu-make))) + (parameterize + ((%current-system "foox86-hurd")) + (mlet %store-monad + ((bag-drv (bag->derivation bag))) + (return (equal? drv bag-drv)))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: bag->derivation, cross-compilation location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1321 source: + (test-assert + "bag->derivation, cross-compilation" + (parameterize + ((%graft? #f)) + (let* ((target "mips64el-linux-gnu") + (bag (package->bag gnu-make (%current-system) target)) + (drv (package-cross-derivation %store gnu-make target))) + (parameterize + ((%current-system "foox86-hurd") + (%current-target-system "foo64-linux-gnu")) + (mlet %store-monad + ((bag-drv (bag->derivation bag))) + (return (equal? drv bag-drv))))))) actual-value: # result: PASS test-name: GNU Make, bootstrap location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1333 source: + (test-assert + "GNU Make, bootstrap" + (let ((gnu-make gnu-make-for-tests)) + (and (package? gnu-make) + (or (location? (package-location gnu-make)) + (not (package-location gnu-make))) + (let* ((drv (package-derivation %store gnu-make)) + (out (derivation->output-path drv))) + (and (build-derivations %store (list drv)) + (file-exists? (string-append out "/bin/make"))))))) result: SKIP test-name: package-mapping location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1345 source: + (test-equal + "package-mapping" + 42 + (let* ((dep (dummy-package + "chbouib" + (native-inputs `(("x" ,grep))))) + (p0 (dummy-package + "example" + (source 77) + (inputs + `(("foo" ,coreutils) ("bar" ,grep) ("baz" ,dep))))) + (transform + (lambda (p) (package (inherit p) (source 42)))) + (rewrite (package-mapping transform)) + (p1 (rewrite p0)) + (bag0 (package->bag p0)) + (bag1 (package->bag p1))) + (and (eq? p1 (rewrite p0)) + (eqv? 42 (package-source p1)) + (equal? + (drop (bag-direct-inputs bag0) 4) + (drop (bag-direct-inputs bag1) 4)) + (match (package-inputs p1) + ((("foo" dep1) ("bar" dep2) ("baz" dep3)) + (and (eq? dep1 (rewrite coreutils)) + (eq? dep2 (rewrite grep)) + (eq? dep3 (rewrite dep)) + (eqv? 42 + (package-source dep1) + (package-source dep2) + (package-source dep3)) + (match (package-native-inputs dep3) + ((("x" dep)) + (and (eq? dep (rewrite grep)) + (package-source dep)))))))))) expected-value: 42 actual-value: 42 result: PASS test-name: package-mapping, deep location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1381 source: + (test-equal + "package-mapping, deep" + '(42) + (let* ((p0 (dummy-package + "example" + (inputs `(("foo" ,coreutils) ("bar" ,grep))))) + (transform + (lambda (p) (package (inherit p) (source 42)))) + (rewrite (package-mapping transform #:deep? #t)) + (p1 (rewrite p0)) + (bag (package->bag p1))) + (and (eq? p1 (rewrite p0)) + (match (bag-direct-inputs bag) + ((("source" 42) + ("foo" dep1) + ("bar" dep2) + rest + ..1) + (and (eq? dep1 (rewrite coreutils)) + (eq? dep2 (rewrite grep)) + (= 42 (package-source dep1)) + (= 42 (package-source dep2)) + (delete-duplicates + (map (match-lambda + ((_ package . _) (package-source package))) + rest)))))))) expected-value: (42) actual-value: (42) result: PASS test-name: package-input-rewriting location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1406 source: + (test-assert + "package-input-rewriting" + (let* ((dep (dummy-package + "chbouib" + (native-inputs `(("x" ,grep))))) + (p0 (dummy-package + "example" + (inputs + `(("foo" ,coreutils) ("bar" ,grep) ("baz" ,dep))))) + (rewrite + (package-input-rewriting + `((,coreutils unquote sed) + (,grep unquote findutils)) + (cut string-append "r-" <>) + #:deep? + #f)) + (p1 (rewrite p0)) + (p2 (rewrite p0))) + (and (not (eq? p1 p0)) + (eq? p1 p2) + (string=? "r-example" (package-name p1)) + (match (package-inputs p1) + ((("foo" dep1) ("bar" dep2) ("baz" dep3)) + (and (eq? dep1 sed) + (eq? dep2 findutils) + (string=? (package-name dep3) "r-chbouib") + (eq? dep3 (rewrite dep)) + (match (package-native-inputs dep3) + ((("x" dep)) (eq? dep findutils)))))) + (equal? + (drop (bag-direct-inputs (package->bag p1)) 3) + (drop (bag-direct-inputs (package->bag p0)) 3))))) actual-value: #t result: PASS test-name: package-input-rewriting, deep location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1436 source: + (test-eq + "package-input-rewriting, deep" + (derivation-file-name + (package-derivation %store sed)) + (let* ((p0 (dummy-package + "chbouib" + (build-system python-build-system) + (arguments `(#:python ,python)))) + (rewrite + (package-input-rewriting + `((,python unquote sed)))) + (p1 (rewrite p0))) + (match (bag-direct-inputs (package->bag p1)) + ((("python" python) _ ...) + (derivation-file-name + (package-derivation %store python)))))) expected-value: "/tmp/guix-tests/store/pil4h0njnpq18aav1qidghbz4fgzk0d8-sed-4.8.drv" actual-value: "/tmp/guix-tests/store/pil4h0njnpq18aav1qidghbz4fgzk0d8-sed-4.8.drv" result: PASS test-name: package-input-rewriting/spec location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1447 source: + (test-assert + "package-input-rewriting/spec" + (let* ((dep (dummy-package + "chbouib" + (native-inputs `(("x" ,grep))))) + (p0 (dummy-package + "example" + (inputs + `(("foo" ,coreutils) ("bar" ,grep) ("baz" ,dep))))) + (rewrite + (package-input-rewriting/spec + `(("coreutils" unquote (const sed)) + ("grep" unquote (const findutils))) + #:deep? + #f)) + (p1 (rewrite p0)) + (p2 (rewrite p0))) + (and (not (eq? p1 p0)) + (eq? p1 p2) + (string=? "example" (package-name p1)) + (match (package-inputs p1) + ((("foo" dep1) ("bar" dep2) ("baz" dep3)) + (and (string=? + (package-full-name dep1) + (package-full-name sed)) + (string=? + (package-full-name dep2) + (package-full-name findutils)) + (string=? (package-name dep3) "chbouib") + (eq? dep3 (rewrite dep)) + (match (package-native-inputs dep3) + ((("x" dep)) + (string=? + (package-full-name dep) + (package-full-name findutils))))))) + (equal? + (drop (bag-direct-inputs (package->bag p1)) 3) + (drop (bag-direct-inputs (package->bag p0)) 3))))) actual-value: #t result: PASS test-name: package-input-rewriting/spec, partial match location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1480 source: + (test-assert + "package-input-rewriting/spec, partial match" + (let* ((dep (dummy-package + "chbouib" + (version "1") + (native-inputs `(("x" ,grep))))) + (p0 (dummy-package + "example" + (inputs `(("foo" ,coreutils) ("bar" ,dep))))) + (rewrite + (package-input-rewriting/spec + `(("chbouib@123" unquote (const sed)) + ("grep" unquote (const findutils))) + #:deep? + #f)) + (p1 (rewrite p0))) + (and (not (eq? p1 p0)) + (string=? "example" (package-name p1)) + (match (package-inputs p1) + ((("foo" dep1) ("bar" dep2)) + (and (string=? + (package-full-name dep1) + (package-full-name coreutils)) + (eq? dep2 (rewrite dep)) + (match (package-native-inputs dep2) + ((("x" dep)) + (string=? + (package-full-name dep) + (package-full-name findutils)))))))))) actual-value: #t result: PASS test-name: package-input-rewriting/spec, deep location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1504 source: + (test-assert + "package-input-rewriting/spec, deep" + (let* ((dep (dummy-package "chbouib")) + (p0 (dummy-package + "example" + (build-system gnu-build-system) + (inputs `(("dep" ,dep))))) + (rewrite + (package-input-rewriting/spec + `(("tar" unquote (const sed)) + ("gzip" unquote (const findutils))))) + (p1 (rewrite p0)) + (p2 (rewrite p0))) + (and (not (eq? p1 p0)) + (eq? p1 p2) + (string=? "example" (package-name p1)) + (match (package-inputs p1) + ((("dep" dep1)) + (and (string=? + (package-full-name dep1) + (package-full-name dep)) + (eq? dep1 (rewrite dep))))) + (match (bag-direct-inputs (package->bag p1)) + ((("dep" dep1) ("tar" tar) ("gzip" gzip) _ ...) + (and (eq? dep1 (rewrite dep)) + (string=? + (package-full-name tar) + (package-full-name sed)) + (string=? + (package-full-name gzip) + (package-full-name findutils)))))))) actual-value: #t result: PASS test-name: package-input-rewriting/spec, no duplicates location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1532 source: + (test-assert + "package-input-rewriting/spec, no duplicates" + (let* ((dep0 (dummy-package + "dep0" + (build-system trivial-build-system) + (propagated-inputs `(("python" ,python))))) + (p0 (dummy-package + "chbouib" + (build-system python-build-system) + (arguments `(#:python ,python)) + (inputs `(("dep0" ,dep0))))) + (rewrite + (package-input-rewriting/spec '() #:deep? #t)) + (p1 (rewrite p0)) + (bag1 (package->bag p1)) + (pythons + (filter-map + (match-lambda (("python" python) python) (_ #f)) + (bag-transitive-inputs bag1)))) + (match (delete-duplicates pythons eq?) + ((p) (eq? p (rewrite python)))))) actual-value: #t result: PASS test-name: package-input-rewriting/spec, graft location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1556 source: + (test-equal + "package-input-rewriting/spec, graft" + (derivation-file-name + (package-derivation %store sed)) + (let* ((dep0 (dummy-package + "dep" + (version "1") + (build-system trivial-build-system) + (inputs `(("coreutils" ,coreutils))))) + (dep1 (dummy-package + "dep" + (version "0") + (build-system trivial-build-system) + (replacement dep0))) + (p0 (dummy-package + "p" + (build-system trivial-build-system) + (inputs `(("dep" ,dep1))))) + (rewrite + (package-input-rewriting/spec + `(("coreutils" unquote (const sed))))) + (p1 (rewrite p0))) + (match (package-inputs p1) + ((("dep" dep)) + (match (package-inputs (package-replacement dep)) + ((("coreutils" coreutils)) + (derivation-file-name + (package-derivation %store coreutils)))))))) expected-value: "/tmp/guix-tests/store/pil4h0njnpq18aav1qidghbz4fgzk0d8-sed-4.8.drv" actual-value: "/tmp/guix-tests/store/pil4h0njnpq18aav1qidghbz4fgzk0d8-sed-4.8.drv" result: PASS test-name: package-with-c-toolchain location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1583 source: + (test-assert + "package-with-c-toolchain" + (let* ((dep (dummy-package + "chbouib" + (build-system gnu-build-system) + (native-inputs `(("x" ,grep))))) + (p0 (dummy-package + "thingie" + (build-system gnu-build-system) + (inputs `(("foo" ,grep) ("bar" ,dep))))) + (tc (dummy-package "my-toolchain")) + (p1 (package-with-c-toolchain + p0 + `(("toolchain" ,tc))))) + (define toolchain-packages + '("gcc" "binutils" "glibc" "ld-wrapper")) + (match (bag-build-inputs (package->bag p1)) + ((("foo" foo) + ("bar" bar) + (_ (= package-name packages) . _) + ...) + (and (not (any (cut member <> packages) toolchain-packages)) + (member "my-toolchain" packages) + (eq? foo grep) + (eq? bar dep)))))) actual-value: #t result: PASS test-name: package-input-rewriting/spec, identity location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1603 source: + (test-assert + "package-input-rewriting/spec, identity" + (let* ((libffi + (dummy-package + "libffi" + (build-system trivial-build-system))) + (glib (dummy-package + "glib" + (build-system trivial-build-system) + (propagated-inputs (list libffi)))) + (gobject + (dummy-package + "gobject-introspection" + (build-system trivial-build-system) + (inputs (list glib)) + (propagated-inputs (list libffi)))) + (rewrite + (package-input-rewriting/spec + `(("glib" unquote identity))))) + (and (= (length (package-transitive-inputs gobject)) + (length + (package-transitive-inputs (rewrite gobject)))) + (string=? + (derivation-file-name + (package-derivation %store (rewrite gobject))) + (derivation-file-name + (package-derivation %store gobject)))))) actual-value: #t result: PASS test-name: package-input-rewriting, identity location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1626 source: + (test-assert + "package-input-rewriting, identity" + (let* ((libffi + (dummy-package + "libffi" + (build-system trivial-build-system))) + (glib (dummy-package + "glib" + (build-system trivial-build-system) + (propagated-inputs (list libffi)))) + (gobject + (dummy-package + "gobject-introspection" + (build-system trivial-build-system) + (inputs (list glib)) + (propagated-inputs (list libffi)))) + (rewrite + (package-input-rewriting `((,glib unquote glib))))) + (and (= (length (package-transitive-inputs gobject)) + (length + (package-transitive-inputs (rewrite gobject)))) + (string=? + (derivation-file-name + (package-derivation %store (rewrite gobject))) + (derivation-file-name + (package-derivation %store gobject)))))) actual-value: #t result: PASS test-name: package-patched-vulnerabilities location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1646 source: + (test-equal + "package-patched-vulnerabilities" + '(("CVE-2015-1234") + ("CVE-2016-1234" "CVE-2018-4567") + ()) + (let ((p1 (dummy-package + "pi" + (source + (dummy-origin + (patches (list "/a/b/pi-CVE-2015-1234.patch")))))) + (p2 (dummy-package + "pi" + (source + (dummy-origin + (patches + (list "/a/b/pi-CVE-2016-1234-CVE-2018-4567.patch")))))) + (p3 (dummy-package "pi" (source (dummy-origin))))) + (map package-patched-vulnerabilities + (list p1 p2 p3)))) expected-value: (("CVE-2015-1234") ("CVE-2016-1234" "CVE-2018-4567") ()) actual-value: (("CVE-2015-1234") ("CVE-2016-1234" "CVE-2018-4567") ()) result: PASS test-name: fold-packages location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1661 source: + (test-eq + "fold-packages" + hello + (fold-packages + (lambda (p r) + (if (string=? (package-name p) "hello") p r)) + #f)) expected-value: # actual-value: # result: PASS test-name: fold-packages, hidden package location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1668 source: + (test-assert + "fold-packages, hidden package" + (match (fold-packages + (lambda (p r) + (if (and (string=? (package-name p) "guile") + (string-prefix? "2.0" (package-version p))) + (cons p r) + r)) + '()) + ((one) (eq? one guile-2.0)))) actual-value: #t result: PASS test-name: fold-available-packages with/without cache location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1682 source: + (test-assert + "fold-available-packages with/without cache" + (let () + (define no-cache + (fold-available-packages + (lambda* (name version result #:rest rest) + (cons (cons* name version rest) result)) + '())) + (define from-cache + (call-with-temporary-directory + (lambda (cache) + (generate-package-cache cache) + (mock ((guix describe) current-profile (const cache)) + (mock ((gnu packages) + cache-is-authoritative? + (const #t)) + (fold-available-packages + (lambda* (name version result #:rest rest) + (cons (cons* name version rest) result)) + '())))))) + (define (list->set* lst) + (let loop ((lst lst) (duplicates '()) (seen (set))) + (match lst + (() (values seen duplicates)) + ((head . tail) + (if (set-contains? seen head) + (loop tail (cons head duplicates) seen) + (loop tail duplicates (set-insert head seen))))))) + (let ((set1 duplicates1 (list->set* from-cache)) + (set2 duplicates2 (list->set* no-cache))) + (and (null? duplicates1) + (null? duplicates2) + (every (cut set-contains? set1 <>) no-cache) + (every (cut set-contains? set2 <>) from-cache))))) actual-value: #t result: PASS test-name: find-packages-by-name location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1724 source: + (test-assert + "find-packages-by-name" + (match (find-packages-by-name "hello") + (((? (cut eq? hello <>))) #t) + (wrong (pk 'find-packages-by-name wrong #f)))) actual-value: #t result: PASS test-name: find-packages-by-name with version location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1729 source: + (test-assert + "find-packages-by-name with version" + (match (find-packages-by-name + "hello" + (package-version hello)) + (((? (cut eq? hello <>))) #t) + (wrong (pk 'find-packages-by-name wrong #f)))) actual-value: #t result: PASS test-name: find-packages-by-name with cache location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1734 source: + (test-equal @ build-started /tmp/guix-tests/store/vlggky3vbknbxqji8hk12mfxhpk9jz3n-foo-0.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/vl//ggky3vbknbxqji8hk12mfxhpk9jz3n-foo-0.drv.bz2 8700 @ build-succeeded /tmp/guix-tests/store/vlggky3vbknbxqji8hk12mfxhpk9jz3n-foo-0.drv - @ build-started /tmp/guix-tests/store/bj1x794pv1l0j1fgpqviyjjws4cihg88-libxml2-0.0.0.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/bj//1x794pv1l0j1fgpqviyjjws4cihg88-libxml2-0.0.0.drv.bz2 8701 @ build-succeeded /tmp/guix-tests/store/bj1x794pv1l0j1fgpqviyjjws4cihg88-libxml2-0.0.0.drv - @ build-started /tmp/guix-tests/store/1bwllbv551pf3y0y08rx39r1pcwhzr1i-module-import-compiled.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/1b//wllbv551pf3y0y08rx39r1pcwhzr1i-module-import-compiled.drv.bz2 8702 [ 1/10] Loading './guix/build/profiles.scm'... [ 2/10] Loading './guix/build/union.scm'... [ 3/10] Loading './guix/build/utils.scm'... [ 4/10] Loading './guix/records.scm'... [ 5/10] Loading './guix/search-paths.scm'... [ 6/10] Compiling './guix/build/profiles.scm'... [ 7/10] Compiling './guix/build/union.scm'... [ 8/10] Compiling './guix/build/utils.scm'... [ 9/10] Compiling './guix/records.scm'... [10/10] Compiling './guix/search-paths.scm'... @ build-succeeded /tmp/guix-tests/store/1bwllbv551pf3y0y08rx39r1pcwhzr1i-module-import-compiled.drv - @ build-started /tmp/guix-tests/store/0frr6vfa6hwbzc6bvaxvkhqkpw5d5igv-profile.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/0f//rr6vfa6hwbzc6bvaxvkhqkpw5d5igv-profile.drv.bz2 8703 @ build-succeeded /tmp/guix-tests/store/0frr6vfa6hwbzc6bvaxvkhqkpw5d5igv-profile.drv - + "find-packages-by-name with cache" + (find-packages-by-name "guile") + (call-with-temporary-directory + (lambda (cache) + (generate-package-cache cache) + (mock ((guix describe) current-profile (const cache)) + (mock ((gnu packages) + cache-is-authoritative? + (const #t)) + (find-packages-by-name "guile")))))) expected-value: (# # # # #) actual-value: (# # # # #) result: PASS test-name: find-packages-by-name + version, with cache location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1743 source: + (test-equal + "find-packages-by-name + version, with cache" + (find-packages-by-name "guile" "2") + (call-with-temporary-directory + (lambda (cache) + (generate-package-cache cache) + (mock ((guix describe) current-profile (const cache)) + (mock ((gnu packages) + cache-is-authoritative? + (const #t)) + (find-packages-by-name "guile" "2")))))) expected-value: (# # #) actual-value: (# # #) result: PASS test-name: --search-paths with pattern location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1752 source: + (test-assert + "--search-paths with pattern" + (let* ((p1 (package + (name "foo") + (version "0") + (source #f) + (build-system trivial-build-system) + (arguments + `(#:guile + ,%bootstrap-guile + #:modules + ((guix build utils)) + #:builder + (begin + (use-modules (guix build utils)) + (let ((out (assoc-ref %outputs "out"))) + (mkdir-p (string-append out "/xml/bar/baz")) + (call-with-output-file + (string-append out "/xml/bar/baz/catalog.xml") + (lambda (port) (display "xml? wat?!" port))) + #t)))) + (synopsis #f) + (description #f) + (home-page #f) + (license #f))) + (p2 (package + (name "libxml2") + (version "0.0.0") + (source #f) + (build-system trivial-build-system) + (arguments + `(#:guile + ,%bootstrap-guile + #:builder + (begin (mkdir (assoc-ref %outputs "out")) #t))) + (native-search-paths + (package-native-search-paths libxml2)) + (synopsis #f) + (description #f) + (home-page #f) + (license #f))) + (prof (run-with-store + %store + (profile-derivation + (manifest + (map package->manifest-entry (list p1 p2))) + #:hooks + '() + #:locales? + #f) + #:guile-for-build + @ build-started /tmp/guix-tests/store/fk6m6spd8iiw2vqiqxyrar63dzy67f9w-bar-0.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/fk//6m6spd8iiw2vqiqxyrar63dzy67f9w-bar-0.drv.bz2 8710 @ build-succeeded /tmp/guix-tests/store/fk6m6spd8iiw2vqiqxyrar63dzy67f9w-bar-0.drv - @ build-started /tmp/guix-tests/store/8921a6sr6vxwk7jmq3chx77z1vc5ky5y-foo-0.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/89//21a6sr6vxwk7jmq3chx77z1vc5ky5y-foo-0.drv.bz2 8711 @ build-succeeded /tmp/guix-tests/store/8921a6sr6vxwk7jmq3chx77z1vc5ky5y-foo-0.drv - @ build-started /tmp/guix-tests/store/l22jzbr8wvxnjsl0xfvsl0vy62bng3y4-git-0.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/l2//2jzbr8wvxnjsl0xfvsl0vy62bng3y4-git-0.drv.bz2 8712 @ build-succeeded /tmp/guix-tests/store/l22jzbr8wvxnjsl0xfvsl0vy62bng3y4-git-0.drv - @ build-started /tmp/guix-tests/store/8whgz1nm9y1cwcw2c5m6maashdwh7ih2-profile.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/8w//hgz1nm9y1cwcw2c5m6maashdwh7ih2-profile.drv.bz2 8713 @ build-succeeded /tmp/guix-tests/store/8whgz1nm9y1cwcw2c5m6maashdwh7ih2-profile.drv - @ build-started /tmp/guix-tests/store/nwip7s1rvkcc2hdd1lljic8nqlhxml89-profile.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/nw//ip7s1rvkcc2hdd1lljic8nqlhxml89-profile.drv.bz2 8714 @ build-succeeded /tmp/guix-tests/store/nwip7s1rvkcc2hdd1lljic8nqlhxml89-profile.drv - (%guile-for-build)))) + (build-derivations %store (list prof)) + (string-match + (format + #f + "^export XML_CATALOG_FILES=\"~a/xml/+bar/baz/catalog\\.xml\"\n" + (regexp-quote (derivation->output-path prof))) + (with-output-to-string + (lambda () + (guix-package + "-p" + (derivation->output-path prof) + "--search-paths")))))) actual-value: #("export XML_CATALOG_FILES=\"/tmp/guix-tests/store/776ss8lqjp2yb3gvfpaa5j22yrnr6gm4-profile/xml/bar/baz/catalog.xml\"\n" (0 . 114)) result: PASS test-name: --search-paths with single-item search path location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1803 source: + (test-assert + "--search-paths with single-item search path" + (let* ((p1 (dummy-package + "foo" + (build-system trivial-build-system) + (arguments + `(#:guile + ,%bootstrap-guile + #:modules + ((guix build utils)) + #:builder + (begin + (use-modules (guix build utils)) + (let ((out (assoc-ref %outputs "out"))) + (mkdir-p (string-append out "/etc/ssl/certs")) + (call-with-output-file + (string-append + out + "/etc/ssl/certs/ca-certificates.crt") + (const #t)))))))) + (p2 (package (inherit p1) (name "bar"))) + (p3 (dummy-package + "git" + (build-system trivial-build-system) + (arguments + `(#:guile + ,%bootstrap-guile + #:builder + (begin (mkdir (assoc-ref %outputs "out")) #t))) + (native-search-paths + (package-native-search-paths git)))) + (prof1 (run-with-store + %store + (profile-derivation + (packages->manifest (list p1 p3)) + #:hooks + '() + #:locales? + #f) + #:guile-for-build + (%guile-for-build))) + (prof2 (run-with-store + %store + (profile-derivation + (packages->manifest (list p2 p3)) + #:hooks + '() + #:locales? + #f) + #:guile-for-build + (%guile-for-build)))) + (build-derivations %store (list prof1 prof2)) + (string-match + (format + #f + "^export GIT_SSL_CAINFO=\"~a/etc/ssl/certs/ca-certificates.crt" + (regexp-quote (derivation->output-path prof1))) + (with-output-to-string + (lambda () + (guix-package + "-p" + (derivation->output-path prof1) + "-p" + (derivation->output-path prof2) + "--search-paths")))))) actual-value: #("export GIT_SSL_CAINFO=\"/tmp/guix-tests/store/ah0g1936wf1mx7q3wh97dr0q11v66dgb-profile/etc/ssl/certs/ca-certificates.crt\"\n" (0 . 119)) result: PASS test-name: specification->package when not found location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1851 source: + (test-equal + "specification->package when not found" + 'quit + (catch 'quit + (lambda () + (specification->package + "this-package-does-not-exist")) + (lambda (key . args) key))) expected-value: quit actual-value: quit result: PASS test-name: specification->package+output location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1860 source: + (test-equal + "specification->package+output" + `((,coreutils "out") (,coreutils "debug")) + (list (call-with-values + (lambda () + (specification->package+output "coreutils")) + list) + (call-with-values + (lambda () + (specification->package+output "coreutils:debug")) + list))) expected-value: ((# "out") (# "debug")) actual-value: ((# "out") (# "debug")) result: PASS test-name: specification->package+output invalid output location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1869 source: + (test-equal + "specification->package+output invalid output" + 'error + (catch 'quit + (lambda () + (specification->package+output + "coreutils:does-not-exist")) + (lambda _ 'error))) expected-value: error actual-value: error result: PASS test-name: specification->package+output no default output location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1877 source: + (test-equal + "specification->package+output no default output" + `(,coreutils #f) + (call-with-values + (lambda () + (specification->package+output "coreutils" #f)) + list)) expected-value: (# #f) actual-value: (# #f) result: PASS test-name: specification->package+output invalid output, no default location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1884 source: + (test-equal + "specification->package+output invalid output, no default" + 'error + (catch 'quit + (lambda () + (specification->package+output + "coreutils:does-not-exist" + #f)) + (lambda _ 'error))) expected-value: error actual-value: error result: PASS test-name: find-package-locations location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1892 source: + (test-equal + "find-package-locations" + (map (lambda (package) + (cons (package-version package) + (package-location package))) + (find-packages-by-name "guile")) + (find-package-locations "guile")) expected-value: (("3.0.7" . #< file: "gnu/packages/guile.scm" line: 306 column: 2>) ("2.2.7" . #< file: "gnu/packages/guile.scm" line: 247 column: 2>) ("2.2.4" . #< file: "gnu/packages/guile.scm" line: 293 column: 2>) ("2.0.14" . #< file: "gnu/packages/guile.scm" line: 147 column: 2>) ("1.8.8" . #< file: "gnu/packages/guile.scm" line: 76 column: 2>)) actual-value: (("3.0.7" . #< file: "gnu/packages/guile.scm" line: 306 column: 2>) ("2.2.7" . #< file: "gnu/packages/guile.scm" line: 247 column: 2>) ("2.2.4" . #< file: "gnu/packages/guile.scm" line: 293 column: 2>) ("2.0.14" . #< file: "gnu/packages/guile.scm" line: 147 column: 2>) ("1.8.8" . #< file: "gnu/packages/guile.scm" line: 76 column: 2>)) result: PASS test-name: find-package-locations with cache location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1899 source: + (test-equal + "find-package-locations with cache" + (map (lambda (package) + (cons (package-version package) + (package-location package))) + (find-packages-by-name "guile")) + (call-with-temporary-directory + (lambda (cache) + (generate-package-cache cache) + (mock ((guix describe) current-profile (const cache)) + (mock ((gnu packages) + cache-is-authoritative? + (const #t)) + (find-package-locations "guile")))))) expected-value: (("3.0.7" . #< file: "gnu/packages/guile.scm" line: 306 column: 2>) ("2.2.7" . #< file: "gnu/packages/guile.scm" line: 247 column: 2>) ("2.2.4" . #< file: "gnu/packages/guile.scm" line: 293 column: 2>) ("2.0.14" . #< file: "gnu/packages/guile.scm" line: 147 column: 2>) ("1.8.8" . #< file: "gnu/packages/guile.scm" line: 76 column: 2>)) actual-value: (("3.0.7" . #< file: "gnu/packages/guile.scm" line: 306 column: 2>) ("2.2.7" . #< file: "gnu/packages/guile.scm" line: 247 column: 2>) ("2.2.4" . #< file: "gnu/packages/guile.scm" line: 293 column: 2>) ("2.0.14" . #< file: "gnu/packages/guile.scm" line: 147 column: 2>) ("1.8.8" . #< file: "gnu/packages/guile.scm" line: 76 column: 2>)) result: PASS test-name: specification->location location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1911 source: + (test-equal + "specification->location" + (package-location + (specification->package "guile@2")) + (specification->location "guile@2")) expected-value: #< file: "gnu/packages/guile.scm" line: 247 column: 2> actual-value: #< file: "gnu/packages/guile.scm" line: 247 column: 2> result: PASS test-name: this-package-input, exists location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1915 source: + (test-eq + "this-package-input, exists" + hello + (package-arguments + (dummy-package + "a" + (inputs `(("hello" ,hello))) + (arguments (this-package-input "hello"))))) expected-value: # actual-value: # result: PASS test-name: this-package-input, exists in propagated-inputs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1922 source: + (test-eq + "this-package-input, exists in propagated-inputs" + hello + (package-arguments + (dummy-package + "a" + (propagated-inputs `(("hello" ,hello))) + (arguments (this-package-input "hello"))))) expected-value: # actual-value: # result: PASS test-name: this-package-input, does not exist location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1929 source: + (test-eq + "this-package-input, does not exist" + #f + (package-arguments + (dummy-package + "a" + (arguments (this-package-input "hello"))))) expected-value: #f actual-value: #f result: PASS test-name: this-package-native-input, exists location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1935 source: + (test-eq + "this-package-native-input, exists" + hello + (package-arguments + (dummy-package + "a" + (native-inputs `(("hello" ,hello))) + (arguments (this-package-native-input "hello"))))) expected-value: # actual-value: # result: PASS test-name: this-package-native-input, does not exists location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/packages.scm:1942 source: + (test-eq + "this-package-native-input, does not exists" + #f + (package-arguments + (dummy-package + "a" + (arguments (this-package-native-input "hello"))))) expected-value: #f actual-value: #f result: PASS error: this-package-does-not-exist: unknown package error: package `coreutils@8.32' lacks output `does-not-exist' error: package `coreutils@8.32' lacks output `does-not-exist' warning: ambiguous package specification `guile@2' warning: choosing guile@2.2.7 from gnu/packages/guile.scm:247:2 SKIP: tests/pack ================ test-name: self-contained-tarball location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pack.scm:67 source: + (test-assert + "self-contained-tarball" + (let ((guile (package-derivation %store %bootstrap-guile))) + (run-with-store + %store + (mlet* %store-monad + ((profile + -> + (profile + (content + (packages->manifest (list %bootstrap-guile))) + (hooks '()) + (locales? #f))) + (tarball + (self-contained-tarball + "pack" + profile + #:symlinks + '(("/bin/Guile" -> "bin/guile")) + #:compressor + %gzip-compressor + #:archiver + %tar-bootstrap)) + (check (gexp->derivation + "check-tarball" + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules + (guix build utils) + (srfi srfi-1)) + (define store + (string-append + "." + (%store-directory) + "/")) + (define (canonical? file) + (let ((st (lstat file))) + (or (not (string-prefix? store file)) + (eq? 'symlink (stat:type st)) + (and (= 1 (stat:mtime st)) + (zero? (logand + 146 + (stat:mode st))))))) + (define bin + (string-append + "." + (ungexp profile) + "/bin")) + (setenv + "PATH" + (string-append + (ungexp %tar-bootstrap) + "/bin")) + (system* "tar" "xvf" (ungexp tarball)) + (mkdir (ungexp output)) + (exit (and (file-exists? + (string-append bin "/guile")) + (file-exists? store) + (every canonical? + (find-files + "." + (const #t) + #:directories? + #t)) + (string=? + (string-append + (ungexp %bootstrap-guile) + "/bin") + (readlink bin)) + (string=? + (string-append + ".." + (ungexp profile) + "/bin/guile") + (readlink "bin/Guile")))))))))) + (built-derivations (list check))) + #:guile-for-build + guile))) result: SKIP test-name: self-contained-tarball + localstatedir location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pack.scm:126 source: + (test-assert + "self-contained-tarball + localstatedir" + (let ((guile (package-derivation store %bootstrap-guile))) + (run-with-store + store + (mlet* %store-monad + ((guile (set-guile-for-build (default-guile))) + (profile + (profile-derivation + (packages->manifest (list %bootstrap-guile)) + #:hooks + '() + #:locales? + #f)) + (tarball + (self-contained-tarball + "tar-pack" + profile + #:localstatedir? + #t)) + (check (gexp->derivation + "check-tarball" + (gexp (let ((bin (string-append + "." + (ungexp profile) + "/bin"))) + (setenv + "PATH" + (string-append + (ungexp %tar-bootstrap) + "/bin")) + (system* "tar" "xvf" (ungexp tarball)) + (mkdir (ungexp output)) + (exit (and (file-exists? + "var/guix/db/db.sqlite") + (string=? + (string-append + (ungexp %bootstrap-guile) + "/bin") + (readlink bin))))))))) + (built-derivations (list check))) + #:guile-for-build + guile))) result: SKIP test-name: self-contained-tarball + localstatedir, UTF-8 file names location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pack.scm:149 source: + (test-assert + "self-contained-tarball + localstatedir, UTF-8 file names" + (let ((guile (package-derivation store %bootstrap-guile))) + (run-with-store + store + (mlet* %store-monad + ((guile (set-guile-for-build (default-guile))) + (tree (interned-file-tree + `("directory-with-utf8-file-names" + directory + ("?" regular (data "alpha")) + ("?" regular (data "lambda"))))) + (tarball + (self-contained-tarball + "tar-pack" + tree + #:localstatedir? + #t)) + (check (gexp->derivation + "check-tarball" + (with-extensions + (list guile-sqlite3 guile-gcrypt) + (with-imported-modules + (source-module-closure '((guix store database))) + (gexp (begin + (use-modules + (guix store database) + (rnrs io ports) + (srfi srfi-1)) + (define (valid-file? basename data) + (define file + (string-append + "./" + (ungexp tree) + "/" + basename)) + (string=? + (call-with-input-file + (pk 'file file) + get-string-all) + data)) + (setenv + "PATH" + (string-append + (ungexp %tar-bootstrap) + "/bin")) + (system* "tar" "xvf" (ungexp tarball)) + (sql-schema + (ungexp + (local-file + (search-path + %load-path + "guix/store/schema.sql")))) + (with-database + "var/guix/db/db.sqlite" + db + (setenv + "GUIX_LOCPATH" + (ungexp-native + (file-append + glibc-utf8-locales + "/lib/locale"))) + (setlocale LC_ALL "en_US.utf8") + (mkdir (ungexp output)) + (exit (and (every valid-file? + '("?" "?") + '("alpha" "lambda")) + (integer? + (path-id + db + (ungexp tree))))))))))))) + (built-derivations (list check))) + #:guile-for-build + guile))) result: SKIP test-name: docker-image + localstatedir location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pack.scm:200 source: + (test-assert + "docker-image + localstatedir" + (let ((guile (package-derivation store %bootstrap-guile))) + (run-with-store + store + (mlet* %store-monad + ((guile (set-guile-for-build (default-guile))) + (profile + (profile-derivation + (packages->manifest (list %bootstrap-guile)) + #:hooks + '() + #:locales? + #f)) + (tarball + (docker-image + "docker-pack" + profile + #:symlinks + '(("/bin/Guile" -> "bin/guile")) + #:localstatedir? + #t)) + (check (gexp->derivation + "check-tarball" + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules + (guix build utils) + (ice-9 match)) + (define bin + (string-append + "." + (ungexp profile) + "/bin")) + (setenv + "PATH" + (string-append + (ungexp %tar-bootstrap) + "/bin")) + (mkdir "base") + (with-directory-excursion + "base" + (invoke "tar" "xvf" (ungexp tarball))) + (match (find-files "base" "layer.tar") + ((layer) (invoke "tar" "xvf" layer))) + (when (and (file-exists? + (string-append bin "/guile")) + (file-exists? + "var/guix/db/db.sqlite") + (file-is-directory? "tmp") + (string=? + (string-append + (ungexp %bootstrap-guile) + "/bin") + (pk 'binlink (readlink bin))) + (string=? + (string-append + (ungexp profile) + "/bin/guile") + (pk 'guilelink + (readlink "bin/Guile")))) + (mkdir (ungexp output))))))))) + (built-derivations (list check))) + #:guile-for-build + guile))) result: SKIP test-name: squashfs-image + localstatedir location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pack.scm:241 source: + (test-assert + "squashfs-image + localstatedir" + (let ((guile (package-derivation store %bootstrap-guile))) + (run-with-store + store + (mlet* %store-monad + ((guile (set-guile-for-build (default-guile))) + (profile + (profile-derivation + (packages->manifest (list %bootstrap-guile)) + #:hooks + '() + #:locales? + #f)) + (image (squashfs-image + "squashfs-pack" + profile + #:symlinks + '(("/bin" -> "bin")) + #:localstatedir? + #t)) + (check (gexp->derivation + "check-tarball" + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules + (guix build utils) + (ice-9 match)) + (define bin + (string-append + "." + (ungexp profile) + "/bin")) + (setenv + "PATH" + (string-append + (ungexp squashfs-tools) + "/bin")) + (invoke "unsquashfs" (ungexp image)) + (with-directory-excursion + "squashfs-root" + (when (and (file-exists? + (string-append bin "/guile")) + (file-exists? + "var/guix/db/db.sqlite") + (string=? + (string-append + (ungexp %bootstrap-guile) + "/bin") + (pk 'binlink (readlink bin))) + (string=? + (string-drop + (string-append + (ungexp profile) + "/bin") + 1) + (pk 'guilelink + (readlink "bin")))) + (mkdir (ungexp output)))))))))) + (built-derivations (list check))) + #:guile-for-build + guile))) result: SKIP test-name: deb archive with symlinks and control files location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pack.scm:280 source: + (test-assert + "deb archive with symlinks and control files" + (let ((guile (package-derivation store %bootstrap-guile))) + (run-with-store + store + (mlet* %store-monad + ((guile (set-guile-for-build (default-guile))) + (profile + (profile-derivation + (packages->manifest (list %bootstrap-guile)) + #:hooks + '() + #:locales? + #f)) + (deb (debian-archive + "deb-pack" + profile + #:compressor + %gzip-compressor + #:symlinks + '(("/opt/gnu/bin" -> "bin")) + #:archiver + %tar-bootstrap + #:extra-options + (list #:triggers-file + (plain-file + "triggers" + "activate-noawait /usr/share/icons/hicolor\n") + #:postinst-file + (plain-file + "postinst" + "echo running configure script\n")))) + (check (gexp->derivation + "check-deb-pack" + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules + (guix build utils) + (ice-9 match) + (ice-9 popen) + (ice-9 rdelim) + (ice-9 textual-ports) + (rnrs base)) + (setenv + "PATH" + (string-join + (list (string-append + (ungexp-native %tar-bootstrap) + "/bin") + (string-append + (ungexp-native dpkg) + "/bin") + (string-append + (ungexp-native %ar-bootstrap) + "/bin")) + ":")) + (let* ((port (open-pipe* + OPEN_READ + "dpkg" + "--info" + (ungexp deb))) + (info (get-string-all port)) + (exit-val + (status:exit-val + (close-pipe port)))) + (assert (zero? exit-val)) + (assert + (string-contains + info + (string-append + "Package: " + (ungexp-native + (package-name + %bootstrap-guile))))) + (assert + (string-contains + info + (string-append + "Version: " + (ungexp-native + (package-version + %bootstrap-guile)))))) + (invoke "ar" "-xv" (ungexp deb)) + (assert (file-exists? "debian-binary")) + (assert (file-exists? "data.tar.gz")) + (assert (file-exists? "control.tar.gz")) + (define hard-links + (let ((port (open-pipe* + OPEN_READ + "tar" + "-tvf" + "data.tar.gz"))) + (let loop ((hard-links '())) + (match (read-line port) + ((? eof-object?) + (assert + (zero? (status:exit-val + (close-pipe + port)))) + hard-links) + (line (if (string-prefix? + "u" + line) + (loop (cons line + hard-links)) + (loop hard-links))))))) + (unless + (null? hard-links) + (error "hard links found in data.tar.gz" + hard-links)) + (invoke "tar" "-xf" "control.tar.gz") + (assert (file-exists? "control")) + (assert + (and (file-exists? "postinst") + (= 73 + (logand + 73 + (stat:perms + (stat "postinst")))))) + (assert (file-exists? "triggers")) + (mkdir (ungexp output)))))))) + (built-derivations (list check))) + #:guile-for-build + guile))) result: SKIP SKIP: tests/profiles ==================== test-name: manifest-installed? location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:80 source: + (test-assert + "manifest-installed?" + (let ((m (manifest (list guile-2.0.9 guile-2.0.9:debug)))) + (and (manifest-installed? + m + (manifest-pattern (name "guile"))) + (manifest-installed? + m + (manifest-pattern + (name "guile") + (output "debug"))) + (manifest-installed? + m + (manifest-pattern + (name "guile") + (output "out") + (version "2.0.9"))) + (not (manifest-installed? + m + (manifest-pattern + (name "guile") + (version "1.8.8")))) + (not (manifest-installed? + m + (manifest-pattern + (name "guile") + (output "foobar"))))))) actual-value: #t result: PASS test-name: manifest-matching-entries location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:93 source: + (test-assert + "manifest-matching-entries" + (let* ((e (list guile-2.0.9 guile-2.0.9:debug)) + (m (manifest e))) + (and (equal? + e + (manifest-matching-entries + m + (list (manifest-pattern (name "guile") (output #f))))) + (equal? + (list guile-2.0.9) + (manifest-matching-entries + m + (list (manifest-pattern + (name "guile") + (version "2.0.9")))))))) actual-value: #t result: PASS test-name: manifest-matching-entries, no match location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:107 source: + (test-assert + "manifest-matching-entries, no match" + (let ((m (manifest (list guile-2.0.9))) + (p (manifest-pattern (name "python")))) + (guard (c ((unmatched-pattern-error? c) + (and (eq? p (unmatched-pattern-error-pattern c)) + (eq? m (unmatched-pattern-error-manifest c))))) + (manifest-matching-entries m (list p)) + #f))) actual-value: #t result: PASS test-name: concatenate-manifests location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:116 source: + (test-equal + "concatenate-manifests" + (manifest (list guile-2.0.9 glibc)) + (concatenate-manifests + (list (manifest (list guile-2.0.9)) + (manifest (list glibc))))) expected-value: #< entries: (#< name: "guile" version: "2.0.9" output: "out" item: "/gnu/store/..." dependencies: () search-paths: () parent: #> properties: ()> #< name: "glibc" version: "2.19" output: "out" item: "/gnu/store/..." dependencies: () search-paths: () parent: #> properties: ()>)> actual-value: #< entries: (#< name: "guile" version: "2.0.9" output: "out" item: "/gnu/store/..." dependencies: () search-paths: () parent: #> properties: ()> #< name: "glibc" version: "2.19" output: "out" item: "/gnu/store/..." dependencies: () search-paths: () parent: #> properties: ()>)> result: PASS test-name: manifest-remove location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:121 source: + (test-assert + "manifest-remove" + (let* ((m0 (manifest (list guile-2.0.9 guile-2.0.9:debug))) + (m1 (manifest-remove + m0 + (list (manifest-pattern (name "guile"))))) + (m2 (manifest-remove + m1 + (list (manifest-pattern (name "guile"))))) + (m3 (manifest-remove + m2 + (list (manifest-pattern + (name "guile") + (output "debug"))))) + (m4 (manifest-remove + m3 + (list (manifest-pattern (name "guile")))))) + (match (manifest-entries m2) + ((($ "guile" "2.0.9" "debug")) + (and (equal? m1 m2) + (null? (manifest-entries m3)) + (null? (manifest-entries m4))))))) actual-value: #t result: PASS test-name: manifest-add location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:138 source: + (test-assert + "manifest-add" + (let* ((m0 (manifest '())) + (m1 (manifest-add m0 (list guile-1.8.8))) + (m2 (manifest-add m1 (list guile-2.0.9))) + (m3 (manifest-add m2 (list guile-2.0.9:debug))) + (m4 (manifest-add m3 (list guile-2.0.9:debug)))) + (and (match (manifest-entries m1) + ((($ "guile" "1.8.8" "out")) #t) + (_ #f)) + (match (manifest-entries m2) + ((($ "guile" "2.0.9" "out")) #t) + (_ #f)) + (equal? m3 m4)))) actual-value: #t result: PASS test-name: manifest-add removes duplicates location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:152 source: + (test-equal + "manifest-add removes duplicates" + (list guile-2.0.9) + (manifest-entries + (manifest-add + (manifest '()) + (list guile-2.0.9 guile-2.0.9)))) expected-value: (#< name: "guile" version: "2.0.9" output: "out" item: "/gnu/store/..." dependencies: () search-paths: () parent: #> properties: ()>) actual-value: (#< name: "guile" version: "2.0.9" output: "out" item: "/gnu/store/..." dependencies: () search-paths: () parent: #> properties: ()>) result: PASS test-name: manifest->code, simple location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:157 source: + (test-equal + "manifest->code, simple" + '(begin + (specifications->manifest + (list "guile" "guile:debug" "glibc"))) + (manifest->code + (manifest + (list guile-2.0.9 guile-2.0.9:debug glibc)))) expected-value: (begin (specifications->manifest (list "guile" "guile:debug" "glibc"))) actual-value: (begin (specifications->manifest (list "guile" "guile:debug" "glibc"))) result: PASS test-name: manifest->code, simple, versions location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:162 source: + (test-equal + "manifest->code, simple, versions" + '(begin + (specifications->manifest + (list "guile@2.0.9" + "guile@2.0.9:debug" + "glibc@2.19"))) + (manifest->code + (manifest + (list guile-2.0.9 guile-2.0.9:debug glibc)) + #:entry-package-version + manifest-entry-version)) expected-value: (begin (specifications->manifest (list "guile@2.0.9" "guile@2.0.9:debug" "glibc@2.19"))) actual-value: (begin (specifications->manifest (list "guile@2.0.9" "guile@2.0.9:debug" "glibc@2.19"))) result: PASS test-name: manifest->code, transformations location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:169 source: + (test-equal + "manifest->code, transformations" + '(begin + (use-modules (guix transformations)) + (define transform1 + (options->transformation '((foo . "bar")))) + (packages->manifest + (list (transform1 (specification->package "guile")) + (specification->package "glibc")))) + (manifest->code + (manifest + (list (manifest-entry + (inherit guile-2.0.9) + (properties `((transformations (foo . "bar"))))) + glibc)))) expected-value: (begin (use-modules (guix transformations)) (define transform1 (options->transformation (quote ((foo . "bar"))))) (packages->manifest (list (transform1 (specification->package "guile")) (specification->package "glibc")))) actual-value: (begin (use-modules (guix transformations)) (define transform1 (options->transformation (quote ((foo . "bar"))))) (packages->manifest (list (transform1 (specification->package "guile")) (specification->package "glibc")))) result: PASS test-name: manifest-perform-transaction location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:185 source: + (test-assert + "manifest-perform-transaction" + (let* ((m0 (manifest (list guile-2.0.9 guile-2.0.9:debug))) + (t1 (manifest-transaction + (install (list guile-1.8.8)) + (remove + (list (manifest-pattern + (name "guile") + (output "debug")))))) + (t2 (manifest-transaction + (remove + (list (manifest-pattern + (name "guile") + (version "2.0.9") + (output #f)))))) + (m1 (manifest-perform-transaction m0 t1)) + (m2 (manifest-perform-transaction m1 t2)) + (m3 (manifest-perform-transaction m0 t2))) + (and (match (manifest-entries m1) + ((($ "guile" "1.8.8" "out")) #t) + (_ #f)) + (equal? m1 m2) + (null? (manifest-entries m3))))) actual-value: #t result: PASS test-name: manifest-transaction-effects location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:204 source: + (test-assert + "manifest-transaction-effects" + (let* ((m0 (manifest (list guile-1.8.8))) + (t (manifest-transaction + (install (list guile-2.0.9 glibc))))) + (let-values + (((remove install upgrade downgrade) + (manifest-transaction-effects m0 t))) + (and (null? remove) + (null? downgrade) + (equal? (list glibc) install) + (equal? + (list (cons guile-1.8.8 guile-2.0.9)) + upgrade))))) actual-value: #t result: PASS test-name: manifest-transaction-effects no double install or upgrades location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:214 source: + (test-assert + "manifest-transaction-effects no double install or upgrades" + (let* ((m0 (manifest (list guile-1.8.8))) + (t (manifest-transaction + (install (list guile-2.0.9 glibc glibc))))) + (let-values + (((remove install upgrade downgrade) + (manifest-transaction-effects m0 t))) + (and (null? remove) + (null? downgrade) + (equal? (list glibc) install) + (equal? + (list (cons guile-1.8.8 guile-2.0.9)) + upgrade))))) actual-value: #t result: PASS test-name: manifest-transaction-effects and downgrades location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:224 source: + (test-assert + "manifest-transaction-effects and downgrades" + (let* ((m0 (manifest (list guile-2.0.9))) + (t (manifest-transaction + (install (list guile-1.8.8))))) + (let-values + (((remove install upgrade downgrade) + (manifest-transaction-effects m0 t))) + (and (null? remove) + (null? install) + (null? upgrade) + (equal? + (list (cons guile-2.0.9 guile-1.8.8)) + downgrade))))) actual-value: #t result: PASS test-name: manifest-transaction-effects no double downgrade location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:232 source: + (test-assert + "manifest-transaction-effects no double downgrade" + (let* ((m0 (manifest (list guile-2.0.9))) + (t (manifest-transaction + (install (list guile-1.8.8 guile-1.8.8))))) + (let-values + (((remove install upgrade downgrade) + (manifest-transaction-effects m0 t))) + (and (null? remove) + (null? install) + (null? upgrade) + (equal? + (list (cons guile-2.0.9 guile-1.8.8)) + downgrade))))) @ build-started /tmp/guix-tests/store/rgabdmvh1yw8y7acxbz5sy8c6ii0bqfd-profile.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/rg//abdmvh1yw8y7acxbz5sy8c6ii0bqfd-profile.drv.bz2 8902 @ build-succeeded /tmp/guix-tests/store/rgabdmvh1yw8y7acxbz5sy8c6ii0bqfd-profile.drv - actual-value: #t result: PASS test-name: manifest-transaction-effects and pseudo-upgrades location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:240 source: + (test-assert + "manifest-transaction-effects and pseudo-upgrades" + (let* ((m0 (manifest (list guile-2.0.9))) + (t (manifest-transaction + (install (list guile-2.0.9))))) + (let-values + (((remove install upgrade downgrade) + (manifest-transaction-effects m0 t))) + (and (null? remove) + (null? install) + (null? downgrade) + (equal? + (list (cons guile-2.0.9 guile-2.0.9)) + upgrade))))) actual-value: #t result: PASS test-name: manifest-transaction-null? location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:248 source: + (test-assert + "manifest-transaction-null?" + (manifest-transaction-null? + (manifest-transaction))) actual-value: #t result: PASS test-name: manifest-transaction-removal-candidate? location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:251 source: + (test-assert + "manifest-transaction-removal-candidate?" + (let ((m (manifest (list guile-2.0.9))) + (t (manifest-transaction + (remove (list (manifest-pattern (name "guile"))))))) + (and (manifest-transaction-removal-candidate? + guile-2.0.9 + t) + (not (manifest-transaction-removal-candidate? glibc t))))) actual-value: #t result: PASS test-name: manifest-transaction-effects no double removal location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:258 source: + (test-assert + "manifest-transaction-effects no double removal" + (let* ((m0 (manifest (list guile-2.0.9))) + (t (manifest-transaction + (remove (list (manifest-pattern (name "guile"))))))) + (let-values + (((remove install upgrade downgrade) + (manifest-transaction-effects m0 t))) + (and (= 1 (length remove)) + (manifest-transaction-removal-candidate? + guile-2.0.9 + t) + (null? install) + (null? downgrade) + (null? upgrade))))) actual-value: #t result: PASS test-name: package->development-manifest location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:268 source: + (test-assert + "package->development-manifest" + (let ((manifest + (package->development-manifest packages:hello))) + (every (lambda (name) + (manifest-installed? + manifest + (manifest-pattern (name name)))) + '("gcc" + "binutils" + "glibc" + "coreutils" + "grep" + "sed")))) actual-value: #t result: PASS test-name: profile-derivation location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:275 source: + (test-assert + "profile-derivation" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((entry -> + (package->manifest-entry %bootstrap-guile)) + (guile (package->derivation %bootstrap-guile)) + (drv (profile-derivation + (manifest (list entry)) + #:hooks + '() + #:locales? + #f)) + (profile -> (derivation->output-path drv)) + (bindir -> (string-append profile "/bin")) + (_ (built-derivations (list drv)))) + (return + (and (file-exists? (string-append bindir "/guile")) + (string=? + (dirname (readlink bindir)) + (derivation->output-path guile))))) + #:guile-for-build + (%guile-for-build))) + @ build-started /tmp/guix-tests/store/48j0cn8l560yqsivgz6nsfc8zjqhxa49-fake-guile.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/48//j0cn8l560yqsivgz6nsfc8zjqhxa49-fake-guile.drv.bz2 8904 @ build-succeeded /tmp/guix-tests/store/48j0cn8l560yqsivgz6nsfc8zjqhxa49-fake-guile.drv - @ build-started /tmp/guix-tests/store/dpf58rmikh9zbrp285vyffp056hvq3mi-profile.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/dp//f58rmikh9zbrp285vyffp056hvq3mi-profile.drv.bz2 8905 warning: collision encountered: /tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/bin/guile /tmp/guix-tests/store/v8nawfmc266ac3asxpgjmq8gjdkvzfs6-fake-guile/bin/guile warning: choosing /tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/bin/guile @ build-succeeded /tmp/guix-tests/store/dpf58rmikh9zbrp285vyffp056hvq3mi-profile.drv - (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: profile-derivation, ordering & collisions location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:289 source: + (test-assert + "profile-derivation, ordering & collisions" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((entry1 + -> + (package->manifest-entry %bootstrap-guile)) + (entry2 + -> + (manifest-entry + (name "fake-guile") + (version "0") + (item (computed-file + "fake-guile" + (gexp (begin + (mkdir (ungexp output)) + (mkdir (string-append + (ungexp output) + "/bin")) + (call-with-output-file + (string-append + (ungexp output) + "/bin/guile") + (lambda (port) + (display "Fake!\n" port))))))))) + (guile (package->derivation %bootstrap-guile)) + (drv (profile-derivation + (manifest (list entry1 entry2)) + #:hooks + '() + #:locales? + #f)) + (profile -> (derivation->output-path drv)) + (bindir -> (string-append profile "/bin")) + (file -> (string-append bindir "/guile")) + (_ (built-derivations (list drv)))) + (return + (string=? + (readlink file) + (string-append + (derivation->output-path guile) + "/bin/guile")))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: load-profile location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:319 source: + (test-assert + "load-profile" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((entry -> + (package->manifest-entry %bootstrap-guile)) + (guile (package->derivation %bootstrap-guile)) + (drv (profile-derivation + (manifest (list entry)) + #:hooks + '() + #:locales? + #f)) + (profile -> (derivation->output-path drv)) + (bindir -> (string-append profile "/bin")) + (_ (built-derivations (list drv)))) + (define-syntax-rule + (with-environment-excursion exp ...) + (let ((env (environ))) + (dynamic-wind + (const #t) + (lambda () exp ...) + (lambda () (environ env))))) + (return + (and (with-environment-excursion + (load-profile profile) + (and (string-prefix? + (string-append bindir ":") + (getenv "PATH")) + (getenv "GUILE_LOAD_PATH"))) + (with-environment-excursion + @ build-started /tmp/guix-tests/store/wl28j47kjvnsvdv8q3670h15hm5aqn4b-profile.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/wl//28j47kjvnsvdv8q3670h15hm5aqn4b-profile.drv.bz2 8909 @ build-succeeded /tmp/guix-tests/store/wl28j47kjvnsvdv8q3670h15hm5aqn4b-profile.drv - (load-profile + profile + #:pure? + #t + #:white-list + '()) + (equal? + (list (string-append "PATH=" bindir)) + (environ)))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:346 source: + (test-assert + "" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((entry -> + (package->manifest-entry %bootstrap-guile)) + (profile + -> + (profile + (hooks '()) + (locales? #f) + (content (manifest (list entry))))) + (drv (lower-object profile)) + (profile -> (derivation->output-path drv)) + (bindir -> (string-append profile "/bin")) + (_ (built-derivations (list drv)))) + (return + (file-exists? (string-append bindir "/guile")))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: profile-derivation relative symlinks, one entry location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:357 source: + (test-assert + "profile-derivation relative symlinks, one entry" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((entry -> + (package->manifest-entry %bootstrap-guile)) + (guile (package->derivation %bootstrap-guile)) + (drv (profile-derivation + (manifest (list entry)) + #:relative-symlinks? + #t + #:hooks + '() + #:locales? + #f)) + (profile -> (derivation->output-path drv)) + (bindir -> (string-append profile "/bin")) + (_ (built-derivations (list drv)))) + (return + (and (file-exists? (string-append bindir "/guile")) + (string=? + (readlink bindir) + (string-append + "../" + (basename (derivation->output-path guile)) + "/bin"))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: profile-derivation relative symlinks, two entries location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:376 source: + (test-assert + "profile-derivation relative symlinks, two entries" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((manifest + -> + (packages->manifest + (list %bootstrap-guile gnu-make-for-tests))) + (guile (package->derivation %bootstrap-guile)) + (make (package->derivation gnu-make-for-tests)) + (drv (profile-derivation + manifest + #:relative-symlinks? + #t + #:hooks + '() + #:locales? + #f)) + (profile -> (derivation->output-path drv)) + (bindir -> (string-append profile "/bin")) + (_ (built-derivations (list drv)))) + (return + (and (file-exists? (string-append bindir "/guile")) + (file-exists? (string-append bindir "/make")) + (string=? + (readlink (string-append bindir "/guile")) + (string-append + "../../" + (basename (derivation->output-path guile)) + "/bin/guile")) + (string=? + (readlink (string-append bindir "/make")) + (string-append + "../../" + (basename (derivation->output-path make)) + "/bin/make"))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) result: SKIP test-name: profile-derivation, inputs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:402 source: + (test-assert + "profile-derivation, inputs" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((entry -> + (package->manifest-entry packages:glibc "debug")) + (drv (profile-derivation + (manifest (list entry)) + #:hooks + '() + #:locales? + #f))) + (return (derivation-inputs drv))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: (#< drv: # /tmp/guix-tests/store/w5j8g4z3arznq4rbkjh24arw5cpnpaa6-module-import-compiled 3baebe0> sub-derivations: ("out")> #< drv: # /tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0 234d910> sub-derivations: ("out")> #< drv: # /tmp/guix-tests/store/fc62nnj9rx3bs3gkrqrqkvlfv00qbkzp-glibc-2.33-debug /tmp/guix-tests/store/4k60smjhal184hd4d4c4llhp739gzchi-glibc-2.33 /tmp/guix-tests/store/8c8vcdfdmniz6znnk4ckrnwny7miv42g-glibc-2.33-static 4672a00> sub-derivations: ("debug")> #< drv: # /tmp/guix-tests/store/bfjg74lwf9jp4m1xhj962idgw9sl2iya-linux-libre-headers-5.10.35 4847230> sub-derivations: ("out")>) result: PASS test-name: profile-derivation, cross-compilation location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:410 source: + (test-assert + "profile-derivation, cross-compilation" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((manifest + -> + (packages->manifest + (list packages:sed packages:grep))) + (target -> "arm-linux-gnueabihf") + (grep (package->cross-derivation packages:grep target)) + (sed (package->cross-derivation packages:sed target)) + (locales + (package->derivation packages:glibc-utf8-locales)) + (drv (profile-derivation + manifest + @ build-started /tmp/guix-tests/store/9k4jxlgb47ap31rs1ncclbsxcni5mbrv-profile.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/9k//4jxlgb47ap31rs1ncclbsxcni5mbrv-profile.drv.bz2 8913 @ build-succeeded /tmp/guix-tests/store/9k4jxlgb47ap31rs1ncclbsxcni5mbrv-profile.drv - #:hooks + '() + #:locales? + #t + #:target + target))) + (define (find-input package) + (let ((name (string-append + (package-full-name package "-") + ".drv"))) + (any (lambda (input) + (let ((input (derivation-input-path input))) + (and (string-suffix? name input) input))) + (derivation-inputs drv)))) + (return + (and (string=? + (derivation-system drv) + (%current-system)) + (string=? + (find-input packages:grep) + (derivation-file-name grep)) + (string=? + (find-input packages:sed) + (derivation-file-name sed)) + (string=? + (find-input packages:glibc-utf8-locales) + (derivation-file-name locales))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: package->manifest-entry defaults to "out" location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:438 source: + (test-assert + "package->manifest-entry defaults to \"out\"" + (let ((outputs (package-outputs packages:glibc))) + (equal? + (manifest-entry-output + (package->manifest-entry + (package + (inherit packages:glibc) + (outputs (reverse outputs))))) + (manifest-entry-output + (package->manifest-entry packages:glibc)) + "out"))) actual-value: #t result: PASS test-name: profile-manifest, search-paths location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:448 source: + (test-assert + "profile-manifest, search-paths" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((guile -> + (package + (inherit %bootstrap-guile) + (native-search-paths + (package-native-search-paths + packages:guile-2.0)))) + (entry -> (package->manifest-entry guile)) + (drv (profile-derivation + (manifest (list entry)) + #:hooks + '() + #:locales? + #f)) + (profile -> (derivation->output-path drv))) + (mbegin + %store-monad + (built-derivations (list drv)) + (let ((manifest (profile-manifest profile))) + (match (manifest-entries manifest) + ((result) + (return + (equal? + (manifest-entry-search-paths result) + (manifest-entry-search-paths entry) + (package-native-search-paths + packages:guile-2.0)))))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: package->manifest-entry, search paths location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:471 source: + (test-assert + "package->manifest-entry, search paths" + (let ((mpl (@ (gnu packages python-xyz) python2-matplotlib))) + (lset= eq? + (package-transitive-native-search-paths mpl) + (manifest-entry-search-paths + (package->manifest-entry mpl))))) actual-value: #t result: PASS test-name: packages->manifest, no duplicates location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:479 source: + (test-assert + "packages->manifest, no duplicates" + (let ((expected + (manifest + (list (package->manifest-entry packages:guile-2.2)))) + (manifest + (packages->manifest + (list packages:guile-2.2 packages:guile-2.2)))) + (every manifest-entry=? + (manifest-entries expected) + (manifest-entries manifest)))) actual-value: #t result: PASS test-name: packages->manifest, propagated inputs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:489 source: + (test-equal + "packages->manifest, propagated inputs" + (map (match-lambda + ((label package) + (list (package-name package) + (package-version package) + package))) + (package-propagated-inputs packages:guile-2.2)) + (map (lambda (entry) + (list (manifest-entry-name entry) + (manifest-entry-version entry) + (manifest-entry-item entry))) + (manifest-entry-dependencies + (package->manifest-entry packages:guile-2.2)))) expected-value: (("libunistring" "0.9.10" #) ("libltdl" "2.4.6" #) ("libgc" "8.0.4" #) ("gmp" "6.2.1" #)) actual-value: (("libunistring" "0.9.10" #) ("libltdl" "2.4.6" #) ("libgc" "8.0.4" #) ("gmp" "6.2.1" #)) result: PASS test-name: manifest-entry-parent location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:502 source: + (test-assert + "manifest-entry-parent" + (let ((entry (package->manifest-entry packages:guile-2.2))) + (match (manifest-entry-dependencies entry) + ((dependencies ..1) + (and (every (lambda (parent) (eq? entry (force parent))) + (map manifest-entry-parent dependencies)) + (not (force (manifest-entry-parent entry)))))))) actual-value: #t result: PASS test-name: read-manifest location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:511 source: + (test-assert + "read-manifest" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((manifest + -> + (packages->manifest + (list (package + (inherit %bootstrap-guile) + (native-search-paths + (package-native-search-paths + packages:guile-2.0)))))) + (drv (profile-derivation + manifest + #:hooks + '() + #:locales? + #f)) + (out -> (derivation->output-path drv))) + (define (entry->sexp entry) + (list (manifest-entry-name entry) + (manifest-entry-version entry) + (manifest-entry-search-paths entry) + (manifest-entry-dependencies entry) + (force (manifest-entry-parent entry)))) + (mbegin + %store-monad + (built-derivations (list drv)) + (let ((manifest2 (profile-manifest out))) + (return + (equal? + (map entry->sexp (manifest-entries manifest)) + (map entry->sexp (manifest-entries manifest2))))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: collision location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:535 source: + (test-equal + "collision" + '(("guile-bootstrap" "2.0") + ("guile-bootstrap" "42")) + (guard (c ((profile-collision-error? c) + (let ((entry1 (profile-collision-error-entry c)) + (entry2 (profile-collision-error-conflict c))) + (list (list (manifest-entry-name entry1) + (manifest-entry-version entry1)) + (list (manifest-entry-name entry2) + (manifest-entry-version entry2)))))) + (run-with-store + %store + (mlet* %store-monad + ((p0 -> + (package + (inherit %bootstrap-guile) + (version "42"))) + (p1 -> + (dummy-package + "p1" + (propagated-inputs `(("p0" ,p0))))) + (manifest + -> + (packages->manifest (list %bootstrap-guile p1))) + (drv (profile-derivation + manifest + #:hooks + '() + #:locales? + #f))) + (return #f))))) expected-value: (("guile-bootstrap" "2.0") ("guile-bootstrap" "42")) actual-value: (("guile-bootstrap" "2.0") ("guile-bootstrap" "42")) result: PASS test-name: collision of propagated inputs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:557 source: + (test-equal + "collision of propagated inputs" + '(("guile-bootstrap" "2.0") + ("guile-bootstrap" "42")) + (guard (c ((profile-collision-error? c) + (let ((entry1 (profile-collision-error-entry c)) + (entry2 (profile-collision-error-conflict c))) + (list (list (manifest-entry-name entry1) + (manifest-entry-version entry1)) + (list (manifest-entry-name entry2) + (manifest-entry-version entry2)))))) + (run-with-store + %store + (mlet* %store-monad + ((p0 -> + (package + (inherit %bootstrap-guile) + (version "42"))) + (p1 -> + (dummy-package + "p1" + (propagated-inputs + `(("guile" ,%bootstrap-guile))))) + (p2 -> + (dummy-package + "p2" + (propagated-inputs `(("guile" ,p0))))) + (manifest -> (packages->manifest (list p1 p2))) + (drv (profile-derivation + manifest + #:hooks + '() + #:locales? + #f))) + (return #f))))) expected-value: (("guile-bootstrap" "2.0") ("guile-bootstrap" "42")) actual-value: (("guile-bootstrap" "2.0") ("guile-bootstrap" "42")) result: PASS test-name: no collision location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:582 source: + (test-assert + "no collision" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + @ build-started /tmp/guix-tests/store/yimmk97l389i9h18da70paj308fznsri-dummy-0.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/yi//mmk97l389i9h18da70paj308fznsri-dummy-0.drv.bz2 8925 @ build-succeeded /tmp/guix-tests/store/yimmk97l389i9h18da70paj308fznsri-dummy-0.drv - @ build-started /tmp/guix-tests/store/nqdynqzzvllpp4rm231xqcn0k6591km3-profile.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/nq//dynqzzvllpp4rm231xqcn0k6591km3-profile.drv.bz2 8926 @ build-succeeded /tmp/guix-tests/store/nqdynqzzvllpp4rm231xqcn0k6591km3-profile.drv - (mlet* %store-monad + ((p -> + (dummy-package + "p" + (propagated-inputs + `(("guile" ,%bootstrap-guile))))) + (guile (package->derivation %bootstrap-guile)) + (entry -> + (manifest-entry + (inherit + (package->manifest-entry %bootstrap-guile)) + (item (derivation->output-path guile)))) + (manifest + -> + (manifest + (list entry (package->manifest-entry p)))) + (drv (profile-derivation manifest))) + (return (->bool drv))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: etc/profile location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:600 source: + (test-assert + "etc/profile" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((guile -> + (package + (inherit %bootstrap-guile) + (native-search-paths + (package-native-search-paths + packages:guile-2.0)))) + (entry -> (package->manifest-entry guile)) + (drv (profile-derivation + (manifest (list entry)) + #:hooks + '() + #:locales? + #f)) + (profile -> (derivation->output-path drv))) + (mbegin + %store-monad + (built-derivations (list drv)) + (let* ((pipe (open-input-pipe + (string-append + "unset GUIX_PROFILE; " + ". " + profile + "/etc/profile; " + "echo $PATH"))) + (path (get-string-all pipe))) + (return + (and (zero? (close-pipe pipe)) + (string-contains + path + (string-append profile "/bin"))))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: 0 result: PASS test-name: etc/profile when etc/ already exists location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:626 source: + (test-assert + "etc/profile when etc/ already exists" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((thing -> + (dummy-package + "dummy" + (build-system trivial-build-system) + (arguments + `(#:guile + ,%bootstrap-guile + #:builder + (let ((out (assoc-ref %outputs "out"))) + (mkdir out) + (mkdir (string-append out "/etc")) + (call-with-output-file + (string-append out "/etc/foo") + (lambda (port) (display "foo!" port))) + #t))))) + (entry -> (package->manifest-entry thing)) + (drv (@ build-started /tmp/guix-tests/store/58fq63xfsp71zvv1qc0cz5gp42f1m4rb-dummy-0.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/58//fq63xfsp71zvv1qc0cz5gp42f1m4rb-dummy-0.drv.bz2 8934 @ build-succeeded /tmp/guix-tests/store/58fq63xfsp71zvv1qc0cz5gp42f1m4rb-dummy-0.drv - @ build-started /tmp/guix-tests/store/3wj8rcgw953a9abssnyf60k78rdw0925-profile.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/3w//j8rcgw953a9abssnyf60k78rdw0925-profile.drv.bz2 8935 @ build-succeeded /tmp/guix-tests/store/3wj8rcgw953a9abssnyf60k78rdw0925-profile.drv - @ build-started /tmp/guix-tests/store/fjd6l8h33l3f5qbyg0lh3hlxfxgi0g24-etc.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/fj//d6l8h33l3f5qbyg0lh3hlxfxgi0g24-etc.drv.bz2 8943 @ build-succeeded /tmp/guix-tests/store/fjd6l8h33l3f5qbyg0lh3hlxfxgi0g24-etc.drv - @ build-started /tmp/guix-tests/store/mn8qips3wrcaqb4g9qdbzz0kq4dw0ajj-dummy-0.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/mn//8qips3wrcaqb4g9qdbzz0kq4dw0ajj-dummy-0.drv.bz2 8944 @ build-succeeded /tmp/guix-tests/store/mn8qips3wrcaqb4g9qdbzz0kq4dw0ajj-dummy-0.drv - @ build-started /tmp/guix-tests/store/4vgkjcymhk9kxab6yq63gmk33s74kv03-profile.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/4v//gkjcymhk9kxab6yq63gmk33s74kv03-profile.drv.bz2 8945 @ build-succeeded /tmp/guix-tests/store/4vgkjcymhk9kxab6yq63gmk33s74kv03-profile.drv - profile-derivation + (manifest (list entry)) + #:hooks + '() + #:locales? + #f)) + (profile -> (derivation->output-path drv))) + (mbegin + %store-monad + (built-derivations (list drv)) + (return + (and (file-exists? + (string-append profile "/etc/profile")) + (string=? + (call-with-input-file + (string-append profile "/etc/foo") + get-string-all) + "foo!"))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: etc/profile when etc/ is a symlink location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:656 source: + (test-assert + "etc/profile when etc/ is a symlink" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((thing -> + (dummy-package + "dummy" + (build-system trivial-build-system) + (arguments + `(#:guile + ,%bootstrap-guile + #:builder + (let ((out (assoc-ref %outputs "out"))) + (mkdir out) + (mkdir (string-append out "/foo")) + (symlink "foo" (string-append out "/etc")) + (call-with-output-file + (string-append out "/etc/bar") + (lambda (port) (display "foo!" port))) + #t))))) + (entry -> (package->manifest-entry thing)) + (drv (profile-derivation + (manifest (list entry)) + #:hooks + '() + #:locales? + #f)) + (profile -> (derivation->output-path drv))) + (mbegin + %store-monad + (built-derivations (list drv)) + (return + (and (file-exists? + (string-append profile "/etc/profile")) + (string=? + (call-with-input-file + (string-append profile "/etc/bar") + get-string-all) + "foo!"))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: profile-derivation when etc/ is a relative symlink location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:686 source: + (test-assert + "profile-derivation when etc/ is a relative symlink" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((etc (gexp->derivation + "etc" + (gexp (begin + (mkdir (ungexp output)) + (call-with-output-file + (string-append (ungexp output) "/foo") + (lambda (port) + (display "Heya!" port))))))) + (thing -> + (dummy-package + "dummy"substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable substitute: guix substitute: warning: authentication and authorization of substitutes disabled! substitute: guix substitute: warning: authentication and authorization of substitutes disabled! building path(s) `/tmp/guix-tests/store/1amahhjkj9b8lk11521jalhazq8bycps-dummy-0' building path(s) `/tmp/guix-tests/store/g2r90gb7kjjkczbwy08a0hcv89mpsj7h-dummy2-0' building path(s) `/tmp/guix-tests/store/jc688219h7jn1k6k27b3fsc0z3jab78j-profile' warning: collision encountered: /tmp/guix-tests/store/1amahhjkj9b8lk11521jalhazq8bycps-dummy-0/dangling /tmp/guix-tests/store/g2r90gb7kjjkczbwy08a0hcv89mpsj7h-dummy2-0/dangling warning: choosing /tmp/guix-tests/store/1amahhjkj9b8lk11521jalhazq8bycps-dummy-0/dangling building path(s) `/tmp/guix-tests/store/fqr4dnakkc3sisz0n0xdbbcjilj84lb1-profile' + (build-system trivial-build-system) + (inputs `(("etc" ,etc))) + (arguments + `(#:guile + ,%bootstrap-guile + #:builder + (let ((out (assoc-ref %outputs "out")) + (etc (assoc-ref %build-inputs "etc"))) + (mkdir out) + (symlink etc (string-append out "/etc")) + #t))))) + (entry -> (package->manifest-entry thing)) + (drv (profile-derivation + (manifest (list entry)) + #:relative-symlinks? + #t + #:hooks + '() + #:locales? + #f)) + (profile -> (derivation->output-path drv))) + (mbegin + %store-monad + (built-derivations (list drv)) + (return + (string=? + (call-with-input-file + (string-append profile "/etc/foo") + get-string-all) + "Heya!")))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: union vs. dangling symlink location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:721 source: + (test-equal + "union vs. dangling symlink" + "does-not-exist" + (with-store + store + (run-with-store + store + (mlet* %store-monad + ((thing1 + -> + (dummy-package + "dummy" + (build-system trivial-build-system) + (arguments + `(#:guile + ,%bootstrap-guile + #:builder + (let ((out (assoc-ref %outputs "out"))) + (mkdir out) + (symlink + "does-not-exist" + (string-append out "/dangling")) + #t))))) + (thing2 + -> + (package (inherit thing1) (name "dummy2"))) + (drv (profile-derivation + (packages->manifest (list thing1 thing2)) + #:hooks + '() + #:locales? + #f)) + (profile -> (derivation->output-path drv))) + (mbegin + %store-monad + (built-derivations (list drv)) + (return + (readlink + (readlink (string-append profile "/dangling")))))) + #:guile-for-build + (%guile-for-build)))) expected-value: "does-not-exist" actual-value: "does-not-exist" result: PASS test-name: profile in profile location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/profiles.scm:744 source: + (test-equal + "profile in profile" + '("foo" "0") + (with-store + store + (run-with-store + store + (mlet* %store-monad + ((prof0 (profile-derivation + (manifest + (list (package->manifest-entry %bootstrap-guile))) + #:hooks + '() + #:locales? + #f)) + (prof1 (profile-derivation + (manifest + (list (manifest-entry + (name "foo") + (version "0") + (item prof0)))) + #:hooks + '() + #:locales? + #f))) + (mbegin + %store-monad + (built-derivations (list prof1)) + (let ((out (derivation->output-path prof1))) + (return + (and (file-exists? (string-append out "/bin/guile")) + (let ((manifest (profile-manifest out))) + (match (manifest-entries manifest) + ((entry) + (list (manifest-entry-name entry) + (manifest-entry-version + entry)))))))))) + #:guile-for-build + (%guile-for-build)))) expected-value: ("foo" "0") actual-value: ("foo" "0") result: PASS FAIL: tests/pypi ================ test-name: guix-package->pypi-name, old URL style location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pypi.scm:154 source: + (test-equal + "guix-package->pypi-name, old URL style" + "psutil" + (guix-package->pypi-name + (dummy-package + "foo" + (source + (dummy-origin + (uri "https://pypi.org/packages/source/p/psutil/psutil-4.3.0.tar.gz")))))) expected-value: "psutil" actual-value: "psutil" result: PASS test-name: guix-package->pypi-name, new URL style location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pypi.scm:162 source: + (test-equal + "guix-package->pypi-name, new URL style" + "certbot" + (guix-package->pypi-name + (dummy-package + "foo" + (source + (dummy-origin + (uri "https://pypi.org/packages/a2/3b/4756e6a0ceb14e084042a2a65c615d68d25621c6fd446d0fc10d14c4ce7d/certbot-0.8.1.tar.gz")))))) expected-value: "certbot" actual-value: "certbot" result: PASS test-name: guix-package->pypi-name, several URLs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pypi.scm:170 source: + (test-equal + "guix-package->pypi-name, several URLs" + "cram" + (guix-package->pypi-name + (dummy-package + "foo" + (source + (dummy-origin + (uri (list "https://bitheap.org/cram/cram-0.7.tar.gz" + (pypi-uri "cram" "0.7")))))))) expected-value: "cram" actual-value: "cram" result: PASS test-name: guix-package->pypi-name, honor 'upstream-name' location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pypi.scm:179 source: + (test-equal + "guix-package->pypi-name, honor 'upstream-name'" + "bar-3" + (guix-package->pypi-name + (dummy-package + "foo" + (properties '((upstream-name . "bar-3")))))) expected-value: "bar-3" actual-value: "bar-3" result: PASS test-name: specification->requirement-name location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pypi.scm:186 source: + (test-equal + "specification->requirement-name" + '("Fizzy" + "PickyThing" + "SomethingWithMarker" + "requests" + "pip") + (map specification->requirement-name + test-specifications)) expected-value: ("Fizzy" "PickyThing" "SomethingWithMarker" "requests" "pip") actual-value: ("Fizzy" "PickyThing" "SomethingWithMarker" "requests" "pip") result: PASS test-name: parse-requires.txt location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pypi.scm:190 source: + (test-equal + "parse-requires.txt" + (list '("foo" "bar") '("pytest")) + (mock ((ice-9 ports) + call-with-input-file + call-with-input-string) + (parse-requires.txt test-requires.txt))) expected-value: (("foo" "bar") ("pytest")) actual-value: (("foo" "bar") ("pytest")) result: PASS test-name: parse-requires.txt - Beaker location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pypi.scm:196 source: + (test-equal + "parse-requires.txt - Beaker" + (list '() '("Mock" "coverage")) + (mock ((ice-9 ports) + call-with-input-file + call-with-input-string) + (parse-requires.txt test-requires.txt-beaker))) expected-value: (() ("Mock" "coverage")) actual-value: (() ("Mock" "coverage")) result: PASS test-name: parse-wheel-metadata, with extras location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pypi.scm:202 source: + (test-equal + "parse-wheel-metadata, with extras" + (list '("wrapt" "bar") '("tox" "bumpversion")) + (mock ((ice-9 ports) + call-with-input-file + call-with-input-string) + (parse-wheel-metadata test-metadata-with-extras))) expected-value: (("wrapt" "bar") ("tox" "bumpversion")) actual-value: (("wrapt" "bar") ("tox" "bumpversion")) result: PASS test-name: parse-wheel-metadata, with extras - Jedi location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pypi.scm:208 source: + (test-equal + "parse-wheel-metadata, with extras - Jedi" + (list '("parso") '("pytest")) + (mock ((ice-9 ports) + call-with-input-file + call-with-input-string) + (parse-wheel-metadata + test-metadata-with-extras-jedi))) expected-value: (("parso") ("pytest")) actual-value: (("parso") ("pytest")) result: PASS test-name: pypi->guix-package, no wheel location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pypi.scm:214 source: + (test-assert + "pypi->guix-package, no wheel" + (mock ((guix import utils) + url-fetch + (lambda (url file-name) + (match url + ("https://example.com/foo-1.0.0.tar.gz" + (begin + (mkdir-p "foo-1.0.0/src/bizarre.egg-info") + (with-output-to-file + "foo-1.0.0/src/bizarre.egg-info/requires.txt" + (lambda () (display test-requires.txt))) + (parameterize + ((current-output-port (%make-void-port "rw+"))) + (system* "tar" "czvf" file-name "foo-1.0.0/")) + (delete-file-recursively "foo-1.0.0") + (set! test-source-hash + (call-with-input-file file-name port-sha256)))) + ("https://example.com/foo-1.0.0-py2.py3-none-any.whl" + #f) + (_ (error "Unexpected URL: " url))))) + (mock ((guix http-client) + http-fetch + (lambda (url . rest) + (match url + ("https://pypi.org/pypi/foo/json" + (values + (open-input-string test-json-1) + (string-length test-json-1))) + ("https://example.com/foo-1.0.0-py2.py3-none-any.whl" + #f) + (_ (error "Unexpected URL: " url))))) + (match (pypi->guix-package "foo") + (('package + ('name "python-foo") + ('version "1.0.0") + ('source + ('origin + ('method 'url-fetch) + ('uri ('pypi-uri "foo" 'version)) + ('sha256 ('base32 (? string? hash))))) + ('build-system 'python-build-system) + ('propagated-inputs + ('list 'python-bar 'python-foo)) + ('native-inputs ('list 'python-pytest)) + ('home-page "http://example.com") + ('synopsis "summary") + ('description "summary") + ('license 'license:lgpl2.0)) + (and (string=? + (bytevector->nix-base32-string test-source-hash) + hash) + (equal? + (pypi->guix-package "foo" #:version "1.0.0") + (pypi->guix-package "foo")) + (catch 'quit + (lambda () + (pypi->guix-package + "foo" + #:version + "42")) + (const #t)))) + (x (pk 'fail x #f)))))) actual-value: #f result: FAIL test-name: pypi->guix-package, wheels location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pypi.scm:271 source: + (test-assert + "pypi->guix-package, wheels" + (mock ((guix import utils) + url-fetch + (lambda (url file-name) + (match url + ("https://example.com/foo-1.0.0.tar.gz" + (begin + (mkdir-p "foo-1.0.0/foo.egg-info/") + (with-output-to-file + "foo-1.0.0/foo.egg-info/requires.txt" + (lambda () + (display + "wrong data to make sure we're testing wheels "))) + (parameterize + ((current-output-port (%make-void-port "rw+"))) + (system* "tar" "czvf" file-name "foo-1.0.0/")) + (delete-file-recursively "foo-1.0.0") + (set! test-source-hash + (call-with-input-file file-name port-sha256)))) + ("https://example.com/foo-1.0.0-py2.py3-none-any.whl" + (begin + (mkdir "foo-1.0.0.dist-info") + (with-output-to-file + "foo-1.0.0.dist-info/METADATA" + (lambda () (display test-metadata))) + (let ((zip-file (string-append file-name ".zip"))) + (system* + "zip" + "-q" + zip-file + "foo-1.0.0.dist-info/METADATA") + (rename-file zip-file file-name)) + (delete-file-recursively "foo-1.0.0.dist-info"))) + (_ (error "Unexpected URL: " url))))) + (mock ((guix http-client) + http-fetch + (lambda (url . rest) + (match url + ("https://pypi.org/pypi/foo/json" + (values + (open-input-string test-json-1) + (string-length test-json-1))) + ("https://example.com/foo-1.0.0-py2.py3-none-any.whl" + #f) + (_ (error "Unexpected URL: " url))))) + (invalidate-memoization! pypi->guix-package) + (match (pypi->guix-package "foo") + (('package + ('name "python-foo") + ('version "1.0.0") + ('source + ('origin + ('method 'url-fetch) + ('uri ('pypi-uri "foo" 'version)) + ('sha256 ('base32 (? string? hash))))) + ('build-system 'python-build-system) + ('propagated-inputs + ('list 'python-bar 'python-baz)) + ('native-inputs ('list 'python-pytest)) + ('home-page "http://example.com") + ('synopsis "summary") + ('description "summary") + ('license 'license:lgpl2.0)) + (string=? + (bytevector->nix-base32-string test-source-hash) + hash)) + (x (pk 'fail x #f)))))) result: SKIP test-name: pypi->guix-package, no usable requirement file. location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pypi.scm:334 source: + (test-assert + "pypi->guix-package, no usable requirement file." + (mock ((guix import utils) + url-fetch + (lambda (url file-name) + (match url + ("https://example.com/foo-1.0.0.tar.gz" + (mkdir-p "foo-1.0.0/foo.egg-info/") + (parameterize + ((current-output-port (%make-void-port "rw+"))) + (system* "tar" "czvf" file-name "foo-1.0.0/")) + (delete-file-recursively "foo-1.0.0") + (set! test-source-hash + (call-with-input-file file-name port-sha256))) + ("https://example.com/foo-1.0.0-py2.py3-none-any.whl" + #f) + (_ (error "Unexpected URL: " url))))) + (mock ((guix http-client) + http-fetch + (lambda (url . rest) + (match url + ("https://pypi.org/pypi/foo/json" + (values + (open-input-string test-json-1) + (string-length test-json-1))) + ("https://example.com/foo-1.0.0-py2.py3-none-any.whl" + #f) + (_ (error "Unexpected URL: " url))))) + (invalidate-memoization! pypi->guix-package) + (match (pypi->guix-package "foo") + (('package + ('name "python-foo") + ('version "1.0.0") + ('source + ('origin + ('method 'url-fetch) + ('uri ('pypi-uri "foo" 'version)) + ('sha256 ('base32 (? string? hash))))) + ('build-system 'python-build-system) + ('home-page "http://example.com") + ('synopsis "summary") + ('description "summary") + ('license 'license:lgpl2.0)) + (string=? + (bytevector->nix-base32-string test-source-hash) + hash)) + (x (pk 'fail x #f)))))) actual-value: #t result: PASS test-name: pypi->guix-package, package name contains "-" followed by digits location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/pypi.scm:380 source: + (test-assert + "pypi->guix-package, package name contains \"-\" followed by digits" + (mock ((guix import utils) + url-fetch + (lambda (url file-name) + (match url + ("https://example.com/foo-99-1.0.0.tar.gz" + (begin + (mkdir-p "foo-99-1.0.0/src/bizarre.egg-info") + (with-output-to-file + "foo-99-1.0.0/src/bizarre.egg-info/requires.txt" + (lambda () (display test-requires.txt))) + (parameterize + ((current-output-port (%make-void-port "rw+"))) + (system* "tar" "czvf" file-name "foo-99-1.0.0/")) + (delete-file-recursively "foo-99-1.0.0") + (set! test-source-hash + (call-with-input-file file-name port-sha256)))) + ("https://example.com/foo-99-1.0.0-py2.py3-none-any.whl" + #f) + (_ (error "Unexpected URL: " url))))) + (mock ((guix http-client) + http-fetch + (lambda (url . rest) + (match url + ("https://pypi.org/pypi/foo-99/json" + (values + (open-input-string test-json-2) + (string-length test-json-2))) + ("https://example.com/foo-99-1.0.0-py2.py3-none-any.whl" + #f) + (_ (error "Unexpected URL: " url))))) + (match (pypi->guix-package "foo-99") + (('package + ('name "python-foo-99") + ('version "1.0.0") + ('source + ('origin + ('method 'url-fetch) + ('uri ('pypi-uri "foo-99" 'version)) + ('sha256 ('base32 (? string? hash))))) + ('properties + ('quote (("upstream-name" . "foo-99")))) + ('build-system 'python-build-system) + ('propagated-inputs + ('list 'python-bar 'python-foo)) + ('native-inputs ('list 'python-pytest)) + ('home-page "http://example.com") + ('synopsis "summary") + ('description "summary") + ('license 'license:lgpl2.0)) + (string=? + (bytevector->nix-base32-string test-source-hash) + hash)) + (x (pk 'fail x #f)))))) actual-value: #t result: PASS warning: Cannot guess requirements from source archive: no requires.txt file found. RUN: tests/services/configuration ================================= test-name: default value, no serialization location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/services/configuration.scm:39 source: + (test-equal + "default value, no serialization" + 80 + (port-configuration-port (port-configuration))) expected-value: 80 actual-value: 80 result: PASS test-name: default value, custom serializer location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/services/configuration.scm:46 source: + (test-equal + "default value, custom serializer" + 80 + (port-configuration-cs-port + (port-configuration-cs))) expected-value: 80 actual-value: 80 result: PASS test-name: no default value, provided location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/services/configuration.scm:54 source: + (test-equal + "no default value, provided" + 55 + (port-configuration-ndv-port + (port-configuration-ndv (port 55)))) expected-value: 55 actual-value: 55 result: PASS test-name: no default value, not provided location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/services/configuration.scm:59 source: + (test-assert + "no default value, not provided" + (guard (c ((configuration-error? c) #t)) + (port-configuration-ndv-port + (port-configuration-ndv)))) actual-value: #t result: PASS test-name: serialize-configuration location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/services/configuration.scm:70 source: + (test-assert + "serialize-configuration" + (gexp? (let ((config (serializable-configuration))) + (serialize-configuration + config + serializable-configuration-fields)))) actual-value: #t result: PASS test-name: serialize-configuration with no-serialization location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/services/configuration.scm:79 source: + (test-assert + "serialize-configuration with no-serialization" + (not (false-if-exception + (let ((config (serializable-configuration))) + (serialize-configuration + config + serializable-configuration-fields))))) actual-value: #t result: PASS test-name: serialize-configuration with prefix location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/services/configuration.scm:92 source: + (test-assert + "serialize-configuration with prefix" + (gexp? (let ((config (configuration-with-prefix))) + (serialize-configuration + config + configuration-with-prefix-fields)))) actual-value: #t result: PASS test-name: maybe value serialization location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/services/configuration.scm:109 source: + (test-equal + "maybe value serialization" + "port=80" + (serialize-maybe-number "port" 80)) expected-value: "port=80" actual-value: "port=80" result: PASS test-name: maybe value without serialization no procedure bound location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/services/configuration.scm:119 source: + (test-assert + "maybe value without serialization no procedure bound" + (not (defined? 'serialize-maybe-string))) actual-value: #t result: PASS SKIP: tests/syscalls ==================== test-name: mount, ENOENT location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:43 source: + (test-equal + "mount, ENOENT" + ENOENT + (catch 'system-error + (lambda () + (mount "/dev/null" "/does-not-exist" "ext2") + #f) + (compose system-error-errno list))) expected-value: 2 actual-value: 2 result: PASS test-name: umount, ENOENT/EPERM location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:51 source: + (test-assert + "umount, ENOENT/EPERM" + (catch 'system-error + (lambda () (umount "/does-not-exist") #f) + (lambda args + (memv (system-error-errno args) + (list EPERM ENOENT))))) actual-value: (2) result: PASS test-name: mounts location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:60 source: + (test-assert + "mounts" + (let ((mounts (mounts))) + (any (match-lambda + ((point . type) + (let ((mount (find (lambda (mount) + (string=? (mount-point mount) point)) + mounts))) + (and mount (string=? (mount-type mount) type))))) + '(("/proc" . "proc") + ("/sys" . "sysfs") + ("/dev/shm" . "tmpfs"))))) actual-value: #t result: PASS test-name: mount-points location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:74 source: + (test-assert + "mount-points" + (any (cute member <> (mount-points)) + '("/" "/proc" "/sys" "/dev"))) actual-value: ("/" "/dev/full" "/dev/null" "/dev/random" "/dev/tty" "/dev/urandom" "/dev/zero" "/gnu/store/06jl2arnnax7s5rj12d4mwbk60ick0lw-libgpg-error-1.42" "/gnu/store/0phibcqzvpa3yq7sciv7m95xwyzyy35l-p11-kit-0.23.22" "/gnu/store/0xx8vjlgsj9nbxhz57z1ppwlygr0lnq8-readline-8.1.1" "/gnu/store/0z61bjvc27dibl84d56hm4gxl6jy2bzv-libxrender-0.9.10" "/gnu/store/1czhx0hgrnm0dg8vvslfkd1wn4x07ydh-fontconfig-minimal-2.13.94" "/gnu/store/1f00pxx38wfn13g0hqgd6zn3af4f3hlk-nettle-3.7.3" "/gnu/store/1gkpbfxjx2sbchjhf19yjm4a8vkir0nm-libgc-8.0.4" "/gnu/store/1pr29z0w7k5wnrfva8cnn9jnr7jcw838-libxmu-1.1.3" "/gnu/store/2lgly1h8xr23s6vj4j969i0i9ivvvil4-libffi-3.3" "/gnu/store/2mvffg3isy144py579g5ajwyjh04xbmp-diffutils-3.8" "/gnu/store/3sg1zz9czs5g3kzaxzy8zm66wm8a9y32-gts-0.7.6" "/gnu/store/42s919l9a2zmiih1fnq7za8f51h7zjm8-ncurses-6.2.20210619" "/gnu/store/47snyrq6pq6896m9dysp2s5vx53m6x08-gcc-10.3.0-lib" "/gnu/store/4k552fq1p6q73mr9ww7g5y3m77p7cfbm-libunistring-0.9.10" "/gnu/store/569pbx4w00w2ryfyvbzb65d48154w4rk-file-5.39" "/gnu/store/5gnr3qikzgdwpciwrjpj6if5rnxajhzi-pcre-8.45" "/gnu/store/5lvdabvwgn5m1s6i8kwrmw773chp0xxs-gnutls-3.7.2" "/gnu/store/5mizjr000dzg6mkazl1ydp5wdf5iw80k-guile-git-0.5.2" "/gnu/store/5w6p5amcwvcp69sw0rnqlsryh0rs1maq-bash-static-5.1.8" "/gnu/store/61b8q6rgdfgd2ffdnyqk6gq2ckrnm007-file-5.39" "/gnu/store/61s3amfc8pip7npa1v8xr77cisqk7267-http-parser-2.9.4-1.ec8b5ee" "/gnu/store/66nrq0ra6d3jnsc24cms9lgzbyb9spr8-glibc-2.33-static" "/gnu/store/67573mfpsws961dk3rgcxkai3v9lkgd6-pixman-0.40.0" "/gnu/store/6ascvgl36zxymlpldh8x8igv7pkizi5s-gzip-1.10" "/gnu/store/6g4w5fj714blp022llkdmycpy0bgv93f-libx11-1.7.2" "/gnu/store/6j2amh5dhgwkfn61qc3id66hqsvj3fcb-util-linux-2.37.1-lib" "/gnu/store/7avhaxgw42al1z8wj737jqakdcv2fizm-libgcrypt-1.8.8" "/gnu/store/7npwsymmqsb6qcn268cbdnd5558byfy2-bash-minimal-5.1.8" "/gnu/store/7vdd11kfqk19f0z0lsib2ybzy8p62nv6-perl-gettext-1.07" "/gnu/store/7wglq4l9mwz3im6wq6kizqf320i8jsld-m4-1.4.18" "/gnu/store/85f80y94pn6fm2wv4mqcb5awsw90djn7-libevent-2.1.12" "/gnu/store/88qb5mrsg4af43sbrpwkp44hg4ij1y6n-libdaemon-0.14" "/gnu/store/8v88l7x1z3w9394fw5z84s12ai7va7q4-pkg-config-0.29.2" "/gnu/store/98jvn7i78fcb3jf4xvvl2262f2ap7h8b-gzip-1.10" "/gnu/store/ag4k4s7p57jglpwqhz60q8dp5cwyk2rs-bash-minimal-5.1.8" "/gnu/store/aix4wh80v9bcgpj0fn7663vqgkbczn9q-expat-2.4.1" "/gnu/store/anaahsw6nqagn3s7d7mhcwzxhzwa7c3f-libgc-8.0.4" "/gnu/store/b16z4xk0sa81z9vfmhfkz9cyi61ry9mq-gmp-6.2.1" "/gnu/store/b34jl32gsdw4rvm78a82m4q50i6p1d7l-patch-2.7.6" "/gnu/store/b78i56xi0pc5knf94a21jgn39690dkqv-guile-lib-0.2.7" "/gnu/store/bk99r7by6k2kqxa6m6m60cjncbg49fii-guile-zstd-0.1.1" "/gnu/store/bxinas3ld86g9v414ynym98l6c6h8jnn-openssl-1.1.1l" "/gnu/store/bxzsjbjrisdq0lsqrp4b4jfanm1wx8c8-perl-pod-parser-1.63" "/gnu/store/byzmvyjgdnrnibfz10gwc2ghkb885cbn-guile-bytestructures-1.0.10" "/gnu/store/c28x11b4igs807mj0rgwlp22sr548djc-disarchive-0.4.0" "/gnu/store/c76m36jwq6rgaimis2k4pyw5kip050pa-pkg-config-0.29.2" "/gnu/store/cdlq8ksy27d0wv1al2wx7hag6gya0pyx-dbus-1.12.20" "/gnu/store/cyi7kgavbw65b8gagg8bqy7r78yd3chq-gettext-minimal-0.21" "/gnu/store/cysczxnsd9n08m23qi2l99b3gb0gzag9-zstd-1.5.0-lib" "/gnu/store/d8ki9xm1fyn25zss14za6ay0ihkyyg80-xz-5.2.5" "/gnu/store/d8kx7i62bzcd8ladkzwrchcrd60f7bfj-tar-1.34" "/gnu/store/dc2gn6yp1906k0vir9dhvcb8f9f6165q-zlib-1.2.11" "/gnu/store/dfvswq5amki391a28fqy2asx0lravglk-module-import-compiled" "/gnu/store/dkiwzd0sgw6ip8ylis05pakyfiqb3rzd-libthai-0.1.28" "/gnu/store/dmca74p8b9ik05mrsnvbviflbxrz9qaw-bzip2-1.0.8" "/gnu/store/dr2nxh9c087grfy4zbi182rs2dl39zl0-libsm-1.2.3" "/gnu/store/dyb33xiaxarp0clvhbdfj422xaghmgps-libxt-1.2.1" "/gnu/store/f8r0spjrcxa048n8j36187vlwfqv903w-guile-lzlib-0.0.2" "/gnu/store/fij9rbncvpdlm1m3scj1v3ffapy1ix0p-libxaw-1.0.14" "/gnu/store/firkqph0zalxwjv5g4cdjm4zh3kl3fax-coreutils-8.32" "/gnu/store/g2g9kqjp155adm2jdl40dfgb2gpk9qa0-help2man-1.48.3" "/gnu/store/g36xy73417gn62pabhrnyhjvqcr3di3d-libssh-0.9.6" "/gnu/store/g82wz79lvn5pm1gdm6xsfir6pa9p1lp3-libxft-2.3.3" "/gnu/store/g9f6phnp6a8l15rqwn3wf9ahvfa1f1qd-libidn2-2.3.1" "/gnu/store/h38403a8viyv0pfjrv2i9v15ys9rlxyc-module-import" "/gnu/store/h4lz81bmmbqpxwbal80kmizvld0bxp5c-freetype-2.10.4" "/gnu/store/h8052068pq3a6rc903982ad2dd5ssxgk-binutils-2.37" "/gnu/store/hdgbh3h3skl0g7vfv3240s6l7nhbnj2i-bzip2-1.0.8" "/gnu/store/hgyg152xx038rdh7pmv52s6yddycafry-libunistring-0.9.10" "/gnu/store/hii8vfc898aha0x3qdss12dk9gzimnsj-guile-3.0.7" "/gnu/store/hjf09vgpv4kl8ks9aqzgzyqkibaspsz2-guile-zlib-0.1.0" "/gnu/store/hjirgm7pwmc2biqz6d0fc1ajr3ha4v14-libffi-3.3" "/gnu/store/hs3ffyfai6i8d5cy29g6g6wvhvby2981-coreutils-minimal-8.32" "/gnu/store/hycbwzbcimhs7zkmh4ngqqbj4nw1dvpm-texinfo-6.7" "/gnu/store/hz2gq1g5shbqw8gzyn7ab2fx65xlc5na-libxext-1.3.4" "/gnu/store/ilv57lvblkqjll1frcg7am500j94divk-libxcb-1.14" "/gnu/store/immc9yavhfj6f162k6hh7990syhmdwgs-font-dejavu-2.37" "/gnu/store/irbvbmhg3az7riz1yq97mq639aqi7jiq-guile-gcrypt-0.3.0" "/gnu/store/isxqamcjjlx7whc195c9npm4nv1sbia9-glib-2.70.0" "/gnu/store/k0mrs61m8cf31xg2sf6zbak59gmn85kl-automake-1.16.3" "/gnu/store/k9fyjbfsz8gg8ygl90xnyljpvmxb783i-fribidi-1.0.9" "/gnu/store/kdbfn1yviv41b7iwxxzcl0z4mwll393s-libxml2-2.9.12" "/gnu/store/kdm9ry72fwfb62k4j24j0b8c7kb34jwg-libjpeg-turbo-2.0.5" "/gnu/store/kr2kaw0asfbl4ky2jjf6sy7zns1qs631-libssh2-1.9.0" "/gnu/store/ky9xbrj6slwvgwa4536xbs5lradbqfk5-gcc-10.3.0" "/gnu/store/lvl6xb4h0wx2nypnq7lg8azschfls4mx-guix-1.3.0-17.2a49ddb-checkout" "/gnu/store/m0mvm01wcmgy7ggbcfl7c7jjy3d9alyz-sqlite-3.36.0" "/gnu/store/mmm03yhgxwrml7cln4z5bf6y3pliw822-cairo-1.16.0" "/gnu/store/mnxbr2w45qrfi4bi7khl2yj56rjz9vbi-glibc-utf8-locales-2.33" "/gnu/store/mp8jbpqy9250wikic1yb5c7kiyff2lwc-autoconf-2.69" "/gnu/store/n4z63g40dkabhij03sl5837g0kc24waa-glibc-utf8-locales-2.33" "/gnu/store/nfwj046dd2l3b3vzfl1qypq6qi04wczp-icu4c-69.1" "/gnu/store/nhd8q9vkpw3z5vgxh8z7m070nvqw4j2n-libsigsegv-2.13" "/gnu/store/ns39r49j3xiylxjigd9qv99348l86m38-libcap-2.51" "/gnu/store/pq514hgyv910jd5sapsjybqjcsbj4k0l-gdbm-1.20" "/gnu/store/pqw0c33k2h8n2snpchnyvx7w617kk31s-guile-3.0.7" "/gnu/store/pri7zcp9lbsh06andky2gk5qdvqxkpaa-libpng-1.6.37" "/gnu/store/q03fkv0x30j19p6pkc4siqncd1v9wgmf-avahi-0.8" "/gnu/store/q5n10kjqjw0b4ywary28gnnxrxc4c6p9-ed-1.17" "/gnu/store/qfy1ylr8iklq74iah8qhgb10fw2ag7vx-pcre2-10.37" "/gnu/store/r7k2c08y4xdh265plcn6p295wyj6n40n-libice-1.0.10" "/gnu/store/r8dkn0vr6cazw4z89ljgdg4mv36s6as9-libgit2-1.3.0" "/gnu/store/rhrxyws0zzq02zpk6y9hhcbiibwag5ls-zlib-1.2.11" "/gnu/store/rxxjsyah0kqrm0h1fv7vsrn06cry5a58-libdatrie-0.2.13" "/gnu/store/s3577mn5iz2gjgkrava2sm914bgbnkd8-xz-5.2.5" "/gnu/store/sb75h0di8w5mhpn4wfhk7za6c7x3c97c-gawk-5.1.0" "/gnu/store/skfhr2f8b7jnnpiarrrcjn6qx0xzfw00-glibc-2.33" "/gnu/store/skrsx5h5h011al604grc3rqa2dhqp2wc-sed-4.8" "/gnu/store/sq0qmlp17pmbdfhm9q21wddasisyliw7-libxau-1.0.9" "/gnu/store/swpaxgk7xzgs4lkmw450wiak8iy8snsm-linux-libre-headers-5.10.35" "/gnu/store/szfn46j12ab2av4shn55v8skvja2zjk6-gd-2.3.2" "/gnu/store/v26gmmw0xakfw4g46bc437srbj70hl0b-perl-5.34.0" "/gnu/store/v81g85vncib9m6pz4p2dva8cl7aqf9w9-mit-krb5-1.19.2" "/gnu/store/vaslkf3q039fzkrpd4kfsfni3qy7fhkd-lzlib-1.12" "/gnu/store/vd65jrc7a97xfr40nkscgqy7n7a5yb7q-guile-avahi-0.4.0-1.6d43caf" "/gnu/store/vl9pxlycbk5ff0i7jbgyrh0rb2dl07lx-grep-3.6" "/gnu/store/w374348icmm798mibnj5b3gyn8lw83br-guile-sqlite3-0.1.2" "/gnu/store/wmvdpbf3rzdrpsw9ybpj7rghndkr9fvh-po4a-0.63" "/gnu/store/wyhnrrx8vrxk3rkdwlfidnzfi0gkcv6d-libbsd-0.10.0" "/gnu/store/x164vc1kj48rpqshz2pis99mll79bz79-libxpm-3.5.13" "/gnu/store/x4sxy2rwfl5ln4z57ghgki6zn9ivvgcw-graphviz-2.49.0" "/gnu/store/xafk8xg2fr5x6iynam1vzhd5nzbnq83s-guile-ssh-0.13.1" "/gnu/store/xjq3vfcskv4pzwmvyildc1jkvx0j1xdc-libtasn1-4.17.0" "/gnu/store/xklpgg966kb54pm7vqwb195rzy6jl9s1-graphite2-1.3.13" "/gnu/store/xrsm556lxh0ld2x8bskx6zba7wzq6jbm-libxdmcp-1.1.3" "/gnu/store/y0mb1753jx0s9j15zcgs8151qj6y02lc-guile-json-4.5.2" "/gnu/store/y5ih85a17axy7hjn8gxsr56bj814s82i-pango-1.48.10" "/gnu/store/yfp8z5cri9kdzn33arp6ag183khgjh46-harfbuzz-2.8.2" "/gnu/store/yvpq2z131c1j4580q97ql6x2b7miwn2v-util-linux-2.37.1" "/gnu/store/zca305yizn2wah7bj6z8x2ihcqg6qiz2-guile-lzma-0.1.1" "/gnu/store/zhpqig154gpqkgc964wmdnf6b889jfsq-ld-wrapper-0" "/gnu/store/zi0zl1ma9zyy7623rmsncyacy33x1mfd-libltdl-2.4.6" "/gnu/store/zjhq95bn5kmlhiqdsvcyy1nhyphxi8yb-make-4.3" "/gnu/store/zxaz9cg2b7x6c1z545x861zqllj8vz6h-findutils-4.8.0" "/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0" "/proc" "/dev/shm" "/dev/pts") result: PASS test-name: utime with AT_SYMLINK_NOFOLLOW location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:81 source: + (test-equal + "utime with AT_SYMLINK_NOFOLLOW" + '(0 0) + (begin + (symlink "/nowhere" temp-file) + (utime temp-file 0 0 0 0 AT_SYMLINK_NOFOLLOW) + (let ((st (lstat temp-file))) + (delete-file temp-file) + (list (stat:mtime st) (stat:atime st))))) expected-value: (0 0) actual-value: (0 0) result: PASS test-name: swapon, ENOSYS/ENOENT/EPERM location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:93 source: + (test-assert + "swapon, ENOSYS/ENOENT/EPERM" + (catch 'system-error + (lambda () (swapon "/does-not-exist") #f) + (lambda args + (memv (system-error-errno args) + (list EPERM ENOENT ENOSYS))))) actual-value: (1 2 38) result: PASS test-name: swapoff, ENOSYS/ENOENT/EINVAL/EPERM location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:101 source: + (test-assert + "swapoff, ENOSYS/ENOENT/EINVAL/EPERM" + (catch 'system-error + (lambda () (swapoff "/does-not-exist") #f) + (lambda args + (memv (system-error-errno args) + (list EPERM EINVAL ENOENT ENOSYS))))) actual-value: (1 22 2 38) result: PASS test-name: mkdtemp! location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:109 source: + (test-assert + "mkdtemp!" + (let* ((tmp (or (getenv "TMPDIR") "/tmp")) + (dir (mkdtemp! + (string-append tmp "/guix-test-XXXXXX")))) + (and (file-exists? dir) (begin (rmdir dir) #t)))) actual-value: #t result: PASS test-name: statfs, ENOENT location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:117 source: + (test-equal + "statfs, ENOENT" + ENOENT + (catch 'system-error + (lambda () (statfs "/does-not-exist")) + (compose system-error-errno list))) expected-value: 2 actual-value: 2 result: PASS test-name: statfs location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:124 source: + (test-assert + "statfs" + (let ((fs (statfs "/"))) + (and (file-system? fs) + (> (file-system-block-size fs) 0) + (>= (file-system-blocks-available fs) 0) + (>= (file-system-blocks-free fs) + (file-system-blocks-available fs))))) actual-value: #t result: PASS test-name: clone location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:142 source: + (test-assert + "clone" + (match (clone (logior CLONE_NEWUSER SIGCHLD)) + (0 (primitive-exit 42)) + (pid (and (not (equal? + (readlink (user-namespace pid)) + (readlink (user-namespace (getpid))))) + (match (waitpid pid) + ((_ . status) (= 42 (status:exit-val status)))))))) result: SKIP test-name: setns location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:156 source: + (test-assert + "setns" + (match (clone (logior CLONE_NEWUSER SIGCHLD)) + (0 (primitive-exit 0)) + (clone-pid + (match (pipe) + ((in . out) + (match (primitive-fork) + (0 + (close in) + (call-with-input-file + (user-namespace clone-pid) + (lambda (port) (setns (port->fdes port) 0))) + (write 'done out) + (close out) + (primitive-exit 0)) + (fork-pid + (close out) + (read in) + (let ((result + (and (equal? + (readlink + (user-namespace clone-pid)) + (readlink + (user-namespace fork-pid)))))) + (waitpid clone-pid) + (waitpid fork-pid) + result)))))))) result: SKIP test-name: pivot-root location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:186 source: + (test-equal + "pivot-root" + 'success! + (match (socketpair AF_UNIX SOCK_STREAM 0) + ((parent . child) + (match (clone (logior CLONE_NEWUSER CLONE_NEWNS SIGCHLD)) + (0 + (dynamic-wind + (const #t) + (lambda () + (close parent) + (call-with-temporary-directory + (lambda (root) + (display "ready\n" child) + (read child) + (let ((put-old (string-append root "/real-root"))) + (mount "none" root "tmpfs") + (mkdir put-old) + (call-with-output-file + (string-append root "/test") + (lambda (port) (display "testing\n" port))) + (pivot-root root put-old) + (write (and (file-exists? "/test") 'success!) + child) + (close child))))) + (lambda () (primitive-exit 0)))) + (pid (close child) + (match (read parent) + ('ready + (call-with-output-file + (format #f "/proc/~d/setgroups" pid) + (lambda (port) (display "deny" port))) + (call-with-output-file + (format #f "/proc/~d/uid_map" pid) + (lambda (port) + (format port "0 ~d 1" (getuid)))) + (call-with-output-file + (format #f "/proc/~d/gid_map" pid) + (lambda (port) + (format port "0 ~d 1" (getgid)))) + (display "go!\n" parent) + (let ((result (read parent))) + (close parent) + (and (zero? (match (waitpid pid) + ((_ . status) + (status:exit-val + status)))) + result))))))))) result: SKIP test-name: scandir*, ENOENT location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:235 source: + (test-equal + "scandir*, ENOENT" + ENOENT + (catch 'system-error + (lambda () (scandir* "/does/not/exist")) + (lambda args (system-error-errno args)))) expected-value: 2 actual-value: 2 result: PASS test-name: scandir*, ASCII file names location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:243 source: + (test-equal + "scandir*, ASCII file names" + (scandir + (dirname + (search-path %load-path "guix/base32.scm")) + (const #t) + stringprocedure + int + (dynamic-func "creat" (dynamic-link)) + (list '* int)))) + (creat (string->pointer + (string-append directory "/?") + "UTF-8") + 420) + (creat (string->pointer + (string-append directory "/?") + "UTF-8") + 420) + (let ((locale (setlocale LC_ALL))) + (dynamic-wind + (lambda () (setlocale LC_ALL "C")) + (lambda () + (match (scandir* directory) + (((names . properties) ...) names))) + (lambda () (setlocale LC_ALL locale)))))))) expected-value: ("." ".." "?" "?") actual-value: ("." ".." "?" "?") result: PASS test-name: scandir*, properties location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:277 source: + (test-assert + "scandir*, properties" + (let ((directory + (dirname + (search-path %load-path "guix/base32.scm")))) + (every (lambda (entry name) + (match entry + ((name2 . properties) + (and (string=? name2 name) + (let* ((full (string-append directory "/" name)) + (stat (lstat full)) + (inode (assoc-ref properties 'inode)) + (type (assoc-ref properties 'type))) + (and (= inode (stat:ino stat)) + (or (eq? type 'unknown) + (eq? type (stat:type stat))))))))) + (scandir* directory) + (scandir directory (const #t) string (termios-input-speed termios) 0) + (> (termios-output-speed termios) 0)))) result: SKIP test-name: tcsetattr location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:563 source: + (test-assert + "tcsetattr" + (let ((first (tcgetattr 0))) + (tcsetattr 0 (tcsetattr-action TCSANOW) first) + (equal? first (tcgetattr 0)))) result: SKIP test-name: terminal-window-size ENOTTY location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:568 source: + (test-assert + "terminal-window-size ENOTTY" + (call-with-input-file + "/dev/null" + (lambda (port) + (catch 'system-error + (lambda () (terminal-window-size port)) + (lambda args + (memv (system-error-errno args) + (list ENOTTY EINVAL))))))) actual-value: (25 22) result: PASS test-name: terminal-columns location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:579 source: + (test-assert + "terminal-columns" + (> (terminal-columns) 0)) actual-value: #t result: PASS test-name: terminal-columns non-file port location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:582 source: + (test-assert + "terminal-columns non-file port" + (> (terminal-columns + (open-input-string + "Join us now, share the software!")) + 0)) actual-value: #t result: PASS test-name: terminal-rows location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:586 source: + (test-assert + "terminal-rows" + (> (terminal-rows) 0)) actual-value: #t result: PASS test-name: openpty location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:589 source: + (test-assert + "openpty" + (let ((head inferior (openpty))) + (and (integer? head) + (integer? inferior) + (let ((port (fdopen inferior "r+0"))) + (and (isatty? port) + (begin (close-port port) (close-fdes head) #t)))))) actual-value: #t result: PASS test-name: openpty + login-tty location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:599 source: + (test-equal + "openpty + login-tty" + '(hello world) + (let ((head inferior (openpty))) + (match (primitive-fork) + (0 + (dynamic-wind + (const #t) + (lambda () + (setvbuf (current-input-port) 'none) + (close-fdes head) + (login-tty inferior) + (write (read)) + (read)) + (lambda () (primitive-_exit 42)))) + (pid (close-fdes inferior) + (let ((head (fdopen head "r+0"))) + (write '(hello world) head) + (let ((result (read head))) + (close-port head) + (waitpid pid) + result)))))) expected-value: (hello world) actual-value: (hello world) result: PASS test-name: utmpx-entries location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:623 source: + (test-assert + "utmpx-entries" + (match (utmpx-entries) + (((? utmpx? entries) ...) + (every (lambda (entry) + (match (utmpx-user entry) + ((? string?) + (or (not (memv (utmpx-login-type entry) + (list (login-type INIT_PROCESS) + (login-type LOGIN_PROCESS) + (login-type USER_PROCESS)))) + (> (utmpx-pid entry) 0))) + (#f #t))) + entries)))) actual-value: #t result: PASS test-name: read-utmpx, EOF location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:640 source: + (test-assert + "read-utmpx, EOF" + (eof-object? (read-utmpx (%make-void-port "r")))) actual-value: #t result: PASS test-name: read-utmpx location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:645 source: + (test-assert + "read-utmpx" + (let ((result + (call-with-input-file + "/var/run/utmpx" + read-utmpx))) + (or (utmpx? result) (eof-object? result)))) result: SKIP test-name: add-to-entropy-count location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/syscalls.scm:651 source: + (test-equal + "add-to-entropy-count" + EPERM + (call-with-output-file + "/dev/urandom" + (lambda (port) + (catch 'system-error + (lambda () (add-to-entropy-count port 77) #f) + (lambda args (system-error-errno args)))))) expected-value: 1 actual-value: 1 result: PASS SKIP: tests/union ================= /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/union.scm:47:18: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/union.scm:56:18: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/union.scm:74:10: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead @ build-started /tmp/guix-tests/store/b6pdh7anj0rq9z10ziiy22psnqlhqbs4-module-import-compiled.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/b6//pdh7anj0rq9z10ziiy22psnqlhqbs4-module-import-compiled.drv.bz2 10526 @ build-succeeded /tmp/guix-tests/store/b6pdh7anj0rq9z10ziiy22psnqlhqbs4-module-import-compiled.drv - @ build-started /tmp/guix-tests/store/v6bzp62l53jf3zrbc496spxr1y6xdb2s-one.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/v6//bzp62l53jf3zrbc496spxr1y6xdb2s-one.drv.bz2 10533 @ build-succeeded /tmp/guix-tests/store/v6bzp62l53jf3zrbc496spxr1y6xdb2s-one.drv - @ build-started /tmp/guix-tests/store/4l5vy9a1fzjhz4jn4pywjr6pxhqyzl2a-two.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/4l//5vy9a1fzjhz4jn4pywjr6pxhqyzl2a-two.drv.bz2 10534 @ build-succeeded /tmp/guix-tests/store/4l5vy9a1fzjhz4jn4pywjr6pxhqyzl2a-two.drv - @ build-started /tmp/guix-tests/store/ycgsy8n1x42qicj2zrcpwpchp0pig1jd-union-collision-symlink.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/yc//gsy8n1x42qicj2zrcpwpchp0pig1jd-union-collision-symlink.drv.bz2 10535 `/tmp/guix-tests/store/l1268lcjc5kjy85i0pp3a8270ycpxb0c-two/bar' ~> `/tmp/guix-tests/store/3c9k4lqfdgmvqgnzs9ia5c1gmvjda5lb-union-collision-symlink/bar' `/tmp/guix-tests/store/l1268lcjc5kjy85i0pp3a8270ycpxb0c-two/foo/two' ~> `/tmp/guix-tests/store/3c9k4lqfdgmvqgnzs9ia5c1gmvjda5lb-union-collision-symlink/foo/two' `/tmp/guix-tests/store/gn198ac3dxvldp59bd7db4xh6r7m23fk-one/foo/one' ~> `/tmp/guix-tests/store/3c9k4lqfdgmvqgnzs9ia5c1gmvjda5lb-union-collision-symlink/foo/one' @ build-succeeded /tmp/guix-tests/store/ycgsy8n1x42qicj2zrcpwpchp0pig1jd-union-collision-symlink.drv - ;;; ("/tmp/guix-tests/store/3c9k4lqfdgmvqgnzs9ia5c1gmvjda5lb-union-collision-symlink") test-name: union-build with symlink to directory location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/union.scm:43 source: + (test-assert + "union-build with symlink to directory" + (let* ((one (build-expression->derivation + %store + "one" + '(begin + (use-modules (guix build utils) (srfi srfi-26)) + (let ((foo (string-append %output "/foo"))) + (mkdir-p foo) + (call-with-output-file + (string-append foo "/one") + (cut display "one" <>)))) + #:modules + '((guix build utils)))) + (two (build-expression->derivation + %store + "two" + '(begin + (use-modules (guix build utils) (srfi srfi-26)) + (let ((foo (string-append %output "/foo")) + (bar (string-append %output "/bar"))) + (mkdir-p bar) + (call-with-output-file + (string-append bar "/two") + (cut display "two" <>)) + (symlink "bar" foo))) + #:modules + '((guix build utils)))) + (builder + '(begin + (use-modules (guix build union)) + (union-build + (assoc-ref %outputs "out") + (list (assoc-ref %build-inputs "one") + (assoc-ref %build-inputs "two"))))) + (drv (build-expression->derivation + %store + "union-collision-symlink" + builder + #:inputs + `(("one" ,one) ("two" ,two)) + #:modules + '((guix build union))))) + (and (build-derivations %store (list drv)) + (with-directory-excursion + (pk (derivation->output-path drv)) + (and (string=? + "one" + (call-with-input-file "foo/one" get-string-all)) + (string=? + "two" + (call-with-input-file "foo/two" get-string-all)) + (string=? + "two" + (call-with-input-file "bar/two" get-string-all)) + (not (file-exists? "bar/one"))))))) actual-value: #t result: PASS test-name: union-build location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/union.scm:92 source: + (test-assert + "union-build" + (let* ((inputs + (map (match-lambda + ((name package) + `(,name ,(package-derivation %store package)))) + (filter + (compose package? cadr) + (append + %bootstrap-inputs-for-tests + (take %bootstrap-inputs-for-tests 3))))) + (builder + `(begin + (use-modules (guix build union)) + (union-build + (assoc-ref %outputs "out") + (map cdr %build-inputs)))) + (drv (build-expression->derivation + %store + "union-test" + builder + #:inputs + inputs + #:modules + '((guix build union))))) + (and (build-derivations %store (list (pk 'drv drv))) + (with-directory-excursion + (derivation->output-path drv) + (and (file-exists? "bin/touch") + (file-exists? "bin/gcc") + (file-exists? "bin/ld") + (file-exists? "lib/libc.so") + (directory-exists? "lib/gcc") + (file-exists? "include/unistd.h") + (eq? 'symlink (stat:type (lstat "include/c++"))) + (eq? 'directory (stat:type (lstat "bin")))))))) result: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/union.scm:106:10: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/union.scm:131:18: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/union.scm:148:10: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/union.scm:154:10: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead @ build-started /tmp/guix-tests/store/zda6pwr2dbfzvsd6hapz0k6jy60ppsnk-fake-guile.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/zd//a6pwr2dbfzvsd6hapz0k6jy60ppsnk-fake-guile.drv.bz2 10542 @ build-succeeded /tmp/guix-tests/store/zda6pwr2dbfzvsd6hapz0k6jy60ppsnk-fake-guile.drv - @ build-started /tmp/guix-tests/store/pj9z4fj8vrjj3x78xcmhjg7f6fg64spg-union-first.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/pj//9z4fj8vrjj3x78xcmhjg7f6fg64spg-union-first.drv.bz2 10543 `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share' ~> `/tmp/guix-tests/store/xm1aqhq3xnkn2xzmgkc7fp9q7zbvak8l-union-first/share' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/bin/.guile-real' ~> `/tmp/guix-tests/store/xm1aqhq3xnkn2xzmgkc7fp9q7zbvak8l-union-first/bin/.guile-real' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/bin/guile' ~> `/tmp/guix-tests/store/xm1aqhq3xnkn2xzmgkc7fp9q7zbvak8l-union-first/bin/guile' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib' ~> `/tmp/guix-tests/store/xm1aqhq3xnkn2xzmgkc7fp9q7zbvak8l-union-first/lib' @ build-succeeded /tmp/guix-tests/store/pj9z4fj8vrjj3x78xcmhjg7f6fg64spg-union-first.drv - @ build-started /tmp/guix-tests/store/mnh2vcwsald7c469bz7617sk8pp119d2-union-last.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/mn//h2vcwsald7c469bz7617sk8pp119d2-union-last.drv.bz2 10544 `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share' ~> `/tmp/guix-tests/store/lm631diywqkdjj5fv11q79dwp0dbm82j-union-last/share' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/bin/.guile-real' ~> `/tmp/guix-tests/store/lm631diywqkdjj5fv11q79dwp0dbm82j-union-last/bin/.guile-real' `/tmp/guix-tests/store/xil9jy30r1c7q6c5dbzx47q6y3bda09h-fake-guile/bin/guile' ~> `/tmp/guix-tests/store/lm631diywqkdjj5fv11q79dwp0dbm82j-union-last/bin/guile' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib' ~> `/tmp/guix-tests/store/lm631diywqkdjj5fv11q79dwp0dbm82j-union-last/lib' @ build-succeeded /tmp/guix-tests/store/mnh2vcwsald7c469bz7617sk8pp119d2-union-last.drv - /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/union.scm:176:17: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead @ build-started /tmp/guix-tests/store/kjnga2idfmqycblri49751ycgjj7zhi5-union-test-all-dirs.drv - aarch64-linux /tmp/guix-tests/var/log/guix/drvs/kj//nga2idfmqycblri49751ycgjj7zhi5-union-test-all-dirs.drv.bz2 10551 `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/oop/goops.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/oop/goops.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/oop/goops/dispatch.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/oop/goops/dispatch.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/oop/goops/accessors.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/oop/goops/accessors.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/oop/goops/composite-slot.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/oop/goops/composite-slot.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/oop/goops/util.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/oop/goops/util.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/oop/goops/describe.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/oop/goops/describe.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/oop/goops/save.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/oop/goops/save.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/oop/goops/internal.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/oop/goops/internal.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/oop/goops/compile.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/oop/goops/compile.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/oop/goops/simple.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/oop/goops/simple.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/oop/goops/stklos.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/oop/goops/stklos.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/oop/goops/active-slot.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/oop/goops/active-slot.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/base/ck.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/base/ck.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/base/pmatch.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/base/pmatch.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/base/lalr.upstream.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/base/lalr.upstream.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/base/message.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/base/message.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/base/target.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/base/target.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/base/lalr.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/base/lalr.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/base/compile.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/base/compile.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/base/syntax.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/base/syntax.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/base/language.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/base/language.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/base/types.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/base/types.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/vm/trap-state.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/vm/trap-state.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/vm/trace.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/vm/trace.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/vm/program.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/vm/program.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/vm/objcode.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/vm/objcode.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/vm/frame.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/vm/frame.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/vm/traps.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/vm/traps.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/vm/vm.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/vm/vm.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/vm/instruction.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/vm/instruction.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/vm/coverage.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/vm/coverage.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/vm/inspect.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/vm/inspect.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/xref.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/xref.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/repl/repl.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/repl/repl.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/repl/error-handling.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/repl/error-handling.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/repl/describe.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/repl/describe.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/repl/coop-server.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/repl/coop-server.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/repl/command.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/repl/command.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/repl/debug.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/repl/debug.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/repl/server.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/repl/server.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/repl/common.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/repl/common.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/system/foreign.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/system/foreign.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/sxml/xpath.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/sxml/xpath.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/sxml/upstream/SXPath-old.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/sxml/upstream/SXPath-old.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/sxml/upstream/input-parse.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/sxml/upstream/input-parse.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/sxml/upstream/assert.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/sxml/upstream/assert.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/sxml/upstream/SXML-tree-trans.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/sxml/upstream/SXML-tree-trans.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/sxml/upstream/SSAX.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/sxml/upstream/SSAX.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/sxml/fold.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/sxml/fold.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/sxml/transform.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/sxml/transform.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/sxml/ssax/input-parse.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/sxml/ssax/input-parse.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/sxml/simple.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/sxml/simple.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/sxml/sxml-match.ss' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/sxml/sxml-match.ss' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/sxml/match.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/sxml/match.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/sxml/apply-templates.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/sxml/apply-templates.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/sxml/ssax.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/sxml/ssax.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/texinfo.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/texinfo.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/scm-style-repl.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/scm-style-repl.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/control.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/control.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/poll.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/poll.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/and-let-star.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/and-let-star.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/channel.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/channel.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/save-stack.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/save-stack.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/string-fun.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/string-fun.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/calling.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/calling.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/threads.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/threads.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/r4rs.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/r4rs.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/rdelim.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/rdelim.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/lineio.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/lineio.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/readline.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/readline.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/list.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/list.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/quasisyntax.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/quasisyntax.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/weak-vector.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/weak-vector.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/top-repl.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/top-repl.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/getopt-long.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/getopt-long.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/eval.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/eval.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/futures.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/futures.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/streams.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/streams.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/networking.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/networking.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/r6rs-libraries.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/r6rs-libraries.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/poe.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/poe.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/mapping.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/mapping.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/boot-9.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/boot-9.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/optargs.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/optargs.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/receive.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/receive.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/common-list.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/common-list.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/q.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/q.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/deprecated.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/deprecated.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/safe.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/safe.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/i18n.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/i18n.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/hash-table.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/hash-table.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/format.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/format.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/gap-buffer.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/gap-buffer.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/serialize.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/serialize.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/ftw.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/ftw.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/session.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/session.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/hcons.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/hcons.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/runq.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/runq.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/pretty-print.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/pretty-print.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/r5rs.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/r5rs.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/curried-definitions.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/curried-definitions.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/posix.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/posix.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/psyntax-pp.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/psyntax-pp.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/unicode.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/unicode.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/match.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/match.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/buffered-input.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/buffered-input.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/psyntax.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/psyntax.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/match.upstream.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/match.upstream.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/time.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/time.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/binary-ports.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/binary-ports.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/regex.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/regex.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/ls.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/ls.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/rw.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/rw.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/documentation.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/documentation.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/local-eval.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/local-eval.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/iconv.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/iconv.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/history.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/history.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/expect.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/expect.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/command-line.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/command-line.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/syncase.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/syncase.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/slib.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/slib.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/stack-catch.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/stack-catch.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/occam-channel.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/occam-channel.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/null.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/null.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/debug.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/debug.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/vlist.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/vlist.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/safe-r5rs.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/safe-r5rs.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/eval-string.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/eval-string.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/ice-9/popen.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/ice-9/popen.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/tree-il.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/tree-il.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/glil.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/glil.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/value/spec.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/value/spec.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/assembly/spec.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/assembly/spec.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/assembly/compile-bytecode.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/assembly/compile-bytecode.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/assembly/decompile-bytecode.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/assembly/decompile-bytecode.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/assembly/disassemble.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/assembly/disassemble.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/scheme/decompile-tree-il.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/scheme/decompile-tree-il.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/scheme/spec.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/scheme/spec.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/scheme/compile-tree-il.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/scheme/compile-tree-il.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/objcode/spec.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/objcode/spec.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/canonicalize.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/tree-il/canonicalize.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/optimize.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/tree-il/optimize.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/inline.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/tree-il/inline.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/effects.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/tree-il/effects.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/spec.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/tree-il/spec.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/primitives.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/tree-il/primitives.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/fix-letrec.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/tree-il/fix-letrec.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/peval.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/tree-il/peval.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/analyze.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/tree-il/analyze.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/debug.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/tree-il/debug.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/cse.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/tree-il/cse.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/compile-glil.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/tree-il/compile-glil.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/elisp/runtime/subrs.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/elisp/runtime/subrs.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/elisp/runtime/macros.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/elisp/runtime/macros.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/elisp/runtime/function-slot.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/elisp/runtime/function-slot.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/elisp/runtime/value-slot.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/elisp/runtime/value-slot.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/elisp/spec.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/elisp/spec.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/elisp/parser.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/elisp/parser.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/elisp/bindings.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/elisp/bindings.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/elisp/lexer.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/elisp/lexer.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/elisp/runtime.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/elisp/runtime.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/elisp/compile-tree-il.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/elisp/compile-tree-il.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/assembly.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/assembly.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/glil/spec.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/glil/spec.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/glil/compile-assembly.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/glil/compile-assembly.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/array.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/ecmascript/array.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/spec.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/ecmascript/spec.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/parse.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/ecmascript/parse.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/function.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/ecmascript/function.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/tokenize.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/ecmascript/tokenize.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/impl.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/ecmascript/impl.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/base.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/ecmascript/base.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/compile-tree-il.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/ecmascript/compile-tree-il.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/bytecode/spec.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/bytecode/spec.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/brainfuck/spec.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/brainfuck/spec.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/brainfuck/parse.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/brainfuck/parse.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/brainfuck/compile-scheme.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/brainfuck/compile-scheme.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/language/brainfuck/compile-tree-il.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/language/brainfuck/compile-tree-il.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/statprof.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/statprof.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/list.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/list.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/help.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/help.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/read-rfc822.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/read-rfc822.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/use2dot.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/use2dot.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/snarf-guile-m4-docs.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/snarf-guile-m4-docs.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/frisk.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/frisk.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/read-text-outline.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/read-text-outline.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/autofrisk.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/autofrisk.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/snarf-check-and-output-texi.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/snarf-check-and-output-texi.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/scan-api.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/scan-api.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/read-scheme-source.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/read-scheme-source.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/compile.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/compile.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/doc-snarf.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/doc-snarf.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/punify.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/punify.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/lint.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/lint.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/generate-autoload.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/generate-autoload.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/api-diff.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/api-diff.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/disassemble.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/disassemble.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/display-commentary.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/display-commentary.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/scripts/summarize-guile-TODO.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/scripts/summarize-guile-TODO.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-67/compare.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-67/compare.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-41.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-41.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-67.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-67.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-19.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-19.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-18.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-18.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-17.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-17.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-9.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-9.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-4/gnu.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-4/gnu.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-64.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-64.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-16.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-16.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-8.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-8.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-9/gnu.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-9/gnu.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-28.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-28.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-14.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-14.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-6.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-6.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-27.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-27.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-13.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-13.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-88.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-88.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-26.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-26.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-60.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-60.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-39.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-39.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-4.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-4.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-11.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-11.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-38.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-38.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-10.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-10.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-2.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-2.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-37.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-37.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-98.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-98.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-1.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-1.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-35.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-35.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-34.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-34.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-42/ec.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-42/ec.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-45.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-45.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-31.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-31.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-43.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-43.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-64/testing.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-64/testing.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-42.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-42.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-111.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-111.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-69.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/srfi/srfi-69.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/guile-procedures.txt' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/guile-procedures.txt' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/mutable-strings.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/mutable-strings.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/control.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/control.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/records/procedural.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/records/procedural.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/records/syntactic.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/records/syntactic.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/records/inspection.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/records/inspection.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/lists.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/lists.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/enums.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/enums.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/conditions.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/conditions.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/hashtables.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/hashtables.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/arithmetic/fixnums.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/arithmetic/fixnums.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/arithmetic/bitwise.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/arithmetic/bitwise.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/arithmetic/flonums.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/arithmetic/flonums.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/sorting.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/sorting.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/files.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/files.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/programs.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/programs.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/mutable-pairs.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/mutable-pairs.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/bytevectors.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/bytevectors.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/unicode.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/unicode.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/eval.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/eval.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/base.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/base.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/syntax-case.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/syntax-case.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/r5rs.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/r5rs.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/io/ports.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/io/ports.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/io/simple.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/io/simple.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/rnrs/exceptions.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/rnrs/exceptions.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/web/http.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/web/http.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/web/client.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/web/client.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/web/server/http.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/web/server/http.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/web/request.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/web/request.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/web/response.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/web/response.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/web/uri.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/web/uri.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/web/server.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/web/server.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/texinfo/indexing.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/texinfo/indexing.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/texinfo/plain-text.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/texinfo/plain-text.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/texinfo/html.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/texinfo/html.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/texinfo/reflection.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/texinfo/reflection.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/texinfo/string-utils.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/texinfo/string-utils.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/texinfo/docbook.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/texinfo/docbook.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/share/guile/2.0/texinfo/serialize.scm' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/share/guile/2.0/texinfo/serialize.scm' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/bin/.guile-real' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/bin/.guile-real' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/bin/guile' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/bin/guile' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/oop/goops.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/internal.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/oop/goops/internal.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/simple.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/oop/goops/simple.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/util.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/oop/goops/util.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/compile.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/oop/goops/compile.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/dispatch.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/oop/goops/dispatch.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/active-slot.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/oop/goops/active-slot.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/accessors.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/oop/goops/accessors.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/describe.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/oop/goops/describe.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/stklos.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/oop/goops/stklos.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/composite-slot.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/oop/goops/composite-slot.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/save.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/oop/goops/save.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/texinfo.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/pmatch.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/base/pmatch.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/syntax.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/base/syntax.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/target.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/base/target.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/lalr.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/base/lalr.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/compile.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/base/compile.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/ck.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/base/ck.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/language.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/base/language.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/message.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/base/message.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/types.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/base/types.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/trace.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/vm/trace.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/traps.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/vm/traps.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/trap-state.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/vm/trap-state.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/objcode.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/vm/objcode.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/frame.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/vm/frame.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/vm.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/vm/vm.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/coverage.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/vm/coverage.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/program.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/vm/program.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/instruction.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/vm/instruction.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/inspect.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/vm/inspect.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/foreign.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/foreign.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/xref.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/xref.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/command.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/repl/command.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/repl.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/repl/repl.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/common.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/repl/common.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/server.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/repl/server.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/error-handling.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/repl/error-handling.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/debug.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/repl/debug.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/coop-server.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/system/repl/coop-server.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/apply-templates.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/sxml/apply-templates.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/simple.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/sxml/simple.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/fold.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/sxml/fold.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/xpath.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/sxml/xpath.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/transform.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/sxml/transform.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/ssax.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/sxml/ssax.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/ssax/input-parse.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/sxml/ssax/input-parse.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/match.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/sxml/match.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/q.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/q.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/receive.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/receive.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/boot-9.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/boot-9.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/rw.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/rw.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/ls.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/ls.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/networking.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/networking.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/save-stack.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/save-stack.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/channel.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/channel.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/mapping.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/mapping.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/string-fun.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/string-fun.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/control.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/control.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/hash-table.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/hash-table.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/poll.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/poll.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/streams.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/streams.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/eval-string.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/eval-string.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/psyntax-pp.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/psyntax-pp.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/eval.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/eval.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/match.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/match.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/documentation.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/documentation.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/weak-vector.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/weak-vector.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/debug.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/debug.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/occam-channel.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/occam-channel.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/posix.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/posix.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/common-list.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/common-list.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/null.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/null.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/top-repl.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/top-repl.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/r5rs.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/r5rs.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/runq.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/runq.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/local-eval.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/local-eval.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/ftw.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/ftw.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/serialize.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/serialize.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/slib.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/slib.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/pretty-print.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/pretty-print.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/lineio.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/lineio.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/history.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/history.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/readline.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/readline.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/threads.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/threads.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/calling.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/calling.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/optargs.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/optargs.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/gap-buffer.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/gap-buffer.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/deprecated.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/deprecated.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/regex.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/regex.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/time.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/time.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/binary-ports.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/binary-ports.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/poe.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/poe.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/and-let-star.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/and-let-star.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/futures.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/futures.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/popen.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/popen.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/unicode.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/unicode.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/curried-definitions.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/curried-definitions.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/vlist.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/vlist.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/safe-r5rs.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/safe-r5rs.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/scm-style-repl.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/scm-style-repl.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/stack-catch.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/stack-catch.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/session.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/session.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/hcons.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/hcons.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/buffered-input.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/buffered-input.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/list.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/list.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/getopt-long.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/getopt-long.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/syncase.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/syncase.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/i18n.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/i18n.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/format.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/format.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/expect.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/expect.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/rdelim.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/rdelim.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/r4rs.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/r4rs.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/iconv.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/iconv.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/command-line.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/command-line.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/safe.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/ice-9/safe.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/glil.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/glil.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/tree-il.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/value/spec.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/value/spec.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/assembly.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/assembly.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/assembly/disassemble.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/assembly/disassemble.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/assembly/spec.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/assembly/spec.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/assembly/compile-bytecode.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/assembly/compile-bytecode.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/assembly/decompile-bytecode.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/assembly/decompile-bytecode.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/scheme/decompile-tree-il.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/scheme/decompile-tree-il.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/scheme/compile-tree-il.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/scheme/compile-tree-il.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/scheme/spec.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/scheme/spec.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/objcode/spec.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/objcode/spec.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/effects.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/tree-il/effects.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/fix-letrec.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/tree-il/fix-letrec.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/inline.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/tree-il/inline.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/canonicalize.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/tree-il/canonicalize.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/compile-glil.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/tree-il/compile-glil.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/analyze.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/tree-il/analyze.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/cse.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/tree-il/cse.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/peval.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/tree-il/peval.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/optimize.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/tree-il/optimize.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/primitives.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/tree-il/primitives.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/debug.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/tree-il/debug.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/spec.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/tree-il/spec.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/runtime/value-slot.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/elisp/runtime/value-slot.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/runtime/subrs.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/elisp/runtime/subrs.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/runtime/function-slot.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/elisp/runtime/function-slot.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/runtime/macros.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/elisp/runtime/macros.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/lexer.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/elisp/lexer.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/parser.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/elisp/parser.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/bindings.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/elisp/bindings.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/compile-tree-il.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/elisp/compile-tree-il.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/spec.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/elisp/spec.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/runtime.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/elisp/runtime.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/glil/compile-assembly.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/glil/compile-assembly.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/glil/spec.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/glil/spec.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/function.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/ecmascript/function.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/array.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/ecmascript/array.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/tokenize.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/ecmascript/tokenize.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/impl.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/ecmascript/impl.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/compile-tree-il.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/ecmascript/compile-tree-il.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/spec.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/ecmascript/spec.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/parse.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/ecmascript/parse.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/base.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/ecmascript/base.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/bytecode/spec.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/bytecode/spec.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/brainfuck/compile-scheme.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/brainfuck/compile-scheme.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/brainfuck/compile-tree-il.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/brainfuck/compile-tree-il.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/brainfuck/spec.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/brainfuck/spec.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/brainfuck/parse.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/language/brainfuck/parse.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/statprof.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/statprof.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/summarize-guile-TODO.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/summarize-guile-TODO.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/snarf-check-and-output-texi.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/snarf-check-and-output-texi.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/scan-api.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/scan-api.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/doc-snarf.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/doc-snarf.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/snarf-guile-m4-docs.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/snarf-guile-m4-docs.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/compile.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/compile.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/read-scheme-source.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/read-scheme-source.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/disassemble.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/disassemble.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/lint.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/lint.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/api-diff.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/api-diff.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/list.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/list.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/help.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/help.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/use2dot.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/use2dot.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/display-commentary.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/display-commentary.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/autofrisk.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/autofrisk.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/punify.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/punify.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/frisk.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/frisk.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/read-text-outline.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/read-text-outline.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/read-rfc822.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/read-rfc822.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/generate-autoload.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/scripts/generate-autoload.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-45.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-45.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-60.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-60.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-35.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-35.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-8.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-8.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-38.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-38.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-4/gnu.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-4/gnu.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-28.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-28.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-43.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-43.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-10.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-10.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-18.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-18.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-9/gnu.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-9/gnu.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-6.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-6.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-13.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-13.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-69.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-69.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-1.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-1.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-9.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-9.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-26.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-26.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-41.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-41.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-64.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-64.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-111.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-111.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-16.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-16.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-31.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-31.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-39.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-39.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-4.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-4.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-11.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-11.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-67.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-67.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-19.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-19.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-34.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-34.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-14.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-14.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-37.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-37.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-2.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-2.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-27.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-27.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-42.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-42.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-98.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-98.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-17.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-17.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-88.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/srfi/srfi-88.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/mutable-pairs.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/mutable-pairs.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/conditions.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/conditions.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/records/procedural.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/records/procedural.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/records/inspection.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/records/inspection.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/records/syntactic.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/records/syntactic.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/r5rs.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/r5rs.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/exceptions.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/exceptions.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/control.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/control.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/enums.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/enums.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/sorting.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/sorting.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/hashtables.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/hashtables.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/files.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/files.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/arithmetic/flonums.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/arithmetic/flonums.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/arithmetic/bitwise.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/arithmetic/bitwise.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/arithmetic/fixnums.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/arithmetic/fixnums.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/lists.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/lists.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/programs.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/programs.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/syntax-case.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/syntax-case.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/bytevectors.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/bytevectors.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/mutable-strings.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/mutable-strings.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/unicode.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/unicode.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/io/simple.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/io/simple.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/io/ports.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/io/ports.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/eval.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/eval.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/base.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/rnrs/base.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/response.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/web/response.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/server.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/web/server.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/server/http.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/web/server/http.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/http.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/web/http.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/uri.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/web/uri.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/client.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/web/client.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/request.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/web/request.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/html.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/texinfo/html.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/serialize.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/texinfo/serialize.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/indexing.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/texinfo/indexing.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/docbook.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/texinfo/docbook.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/reflection.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/texinfo/reflection.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/string-utils.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/texinfo/string-utils.go' `/tmp/guix-tests/store/8y8j1d6v8j3l2x9ys9zldg77k094i9ar-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/plain-text.go' ~> `/tmp/guix-tests/store/zz3m47s9zddmr7p57772drfn5y19vdf6-union-test-all-dirs/lib/guile/2.0/ccache/texinfo/plain-text.go' @ build-succeeded /tmp/guix-tests/store/kjnga2idfmqycblri49751ycgjj7zhi5-union-test-all-dirs.drv - SKIP test-name: union-build collision first & last location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/union.scm:129 source: + (test-assert + "union-build collision first & last" + (let* ((guile (package-derivation %store %bootstrap-guile)) + (fake (build-expression->derivation + %store + "fake-guile" + '(begin + (use-modules (guix build utils)) + (let ((out (assoc-ref %outputs "out"))) + (mkdir-p (string-append out "/bin")) + (call-with-output-file + (string-append out "/bin/guile") + (const #t)))) + #:modules + '((guix build utils)))) + (builder + (lambda (policy) + `(begin + (use-modules (guix build union) (srfi srfi-1)) + (union-build + (assoc-ref %outputs "out") + (map cdr %build-inputs) + #:resolve-collision + ,policy)))) + (drv1 (build-expression->derivation + %store + "union-first" + (builder 'first) + #:inputs + `(("guile" ,guile) ("fake" ,fake)) + #:modules + '((guix build union)))) + (drv2 (build-expression->derivation + %store + "union-last" + (builder 'last) + #:inputs + `(("guile" ,guile) ("fake" ,fake)) + #:modules + '((guix build union))))) + (and (build-derivations %store (list drv1 drv2)) + (with-directory-excursion + (derivation->output-path drv1) + (string=? + (readlink "bin/guile") + (string-append + (derivation->output-path guile) + "/bin/guile"))) + (with-directory-excursion + (derivation->output-path drv2) + (string=? + (readlink "bin/guile") + (string-append + (derivation->output-path fake) + "/bin/guile")))))) actual-value: #t result: PASS test-name: union-build #:create-all-directories? #t location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/union.scm:169 source: + (test-assert + "union-build #:create-all-directories? #t" + (let* ((build `(begin + (use-modules (guix build union)) + (union-build + (assoc-ref %outputs "out") + (map cdr %build-inputs) + #:create-all-directories? + #t))) + (input (package-derivation %store %bootstrap-guile)) + (drv (build-expression->derivation + %store + "union-test-all-dirs" + build + #:modules + '((guix build union)) + #:inputs + `(("g" ,input))))) + (and (build-derivations %store (list drv)) + (with-directory-excursion + (derivation->output-path drv) + (and (file-exists? "bin/guile") + (file-is-directory? "bin") + (eq? 'symlink (stat:type (lstat "bin/guile")))))))) actual-value: #t result: PASS test-name: relative-file-name /a/b /a/c/d location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/union.scm:200 source: + (test-equal + (string-append + "relative-file-name " + "/a/b" + " " + "/a/c/d") + "../c/d" + (relative-file-name "/a/b" "/a/c/d")) expected-value: "../c/d" actual-value: "../c/d" result: PASS test-name: relative-file-name /a/b /a/b location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/union.scm:200 source: + (test-equal + (string-append + "relative-file-name " + "/a/b" + " " + "/a/b") + "" + (relative-file-name "/a/b" "/a/b")) expected-value: "" actual-value: "" result: PASS test-name: relative-file-name /a/b /a location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/union.scm:200 source: + (test-equal + (string-append + "relative-file-name " + "/a/b" + " " + "/a") + ".." + (relative-file-name "/a/b" "/a")) expected-value: ".." actual-value: ".." result: PASS test-name: relative-file-name /a/b /a/b/c/d location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/union.scm:200 source: + (test-equal + (string-append + "relative-file-name " + "/a/b" + " " + "/a/b/c/d") + "c/d" + (relative-file-name "/a/b" "/a/b/c/d")) expected-value: "c/d" actual-value: "c/d" result: PASS test-name: relative-file-name /a/b/c /a/d/e/f location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/union.scm:200 source: + (test-equal + (string-append + "relative-file-name " + "/a/b/c" + " " + "/a/d/e/f") + "../../d/e/f" + (relative-file-name "/a/b/c" "/a/d/e/f")) expected-value: "../../d/e/f" actual-value: "../../d/e/f" result: PASS SKIP: tests/upstream ==================== test-name: coalesce-sources same version location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/upstream.scm:30 source: + (test-equal + "coalesce-sources same version" + (list (upstream-source + (package "foo") + (version "1") + (urls '("ftp://example.org/foo-1.tar.xz" + "ftp://example.org/foo-1.tar.gz")) + (signature-urls + '("ftp://example.org/foo-1.tar.xz.sig" + "ftp://example.org/foo-1.tar.gz.sig")))) + (coalesce-sources + (list (upstream-source + (package "foo") + (version "1") + (urls '("ftp://example.org/foo-1.tar.gz")) + (signature-urls + '("ftp://example.org/foo-1.tar.gz.sig"))) + (upstream-source + (package "foo") + (version "1") + (urls '("ftp://example.org/foo-1.tar.xz")) + (signature-urls + '("ftp://example.org/foo-1.tar.xz.sig")))))) result: SKIP RUN: tests/offload ================== test-name: #f location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/offload.scm:55 source: + (test-assert + (machine-matches? + (deprecated-build-machine "i686-linux") + (build-requirements (system "i686-linux")))) actual-value: #t result: PASS test-name: #f location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/offload.scm:60 source: + (test-assert + (machine-matches? + (new-build-machine '("i686-linux")) + (build-requirements (system "i686-linux")))) actual-value: #t result: PASS test-name: #f location: /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/offload.scm:66 source: + (test-assert + (machine-matches? + (new-build-machine + '("armhf-linux" + "aarch64-linux" + "i686-linux" + "x86_64-linux")) + (build-requirements (system "armhf-linux")))) actual-value: #t result: PASS /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/tests/offload.scm:41:2: warning: The 'system' field is deprecated, please use 'systems' instead. SKIP: tests/guix-build-branch ============================= accepted connection from pid 11483, user nixbld + guix build --version guix build (GNU Guix) 1.3.0-17.2a49ddb Copyright (C) 2021 the Guix authors License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. + guile -c '(getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)' + exit 77 SKIP tests/guix-build-branch.sh (exit status: 77) SKIP: tests/guix-git-authenticate ================================= accepted connection from pid 11608, user nixbld + '[' -d /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/.git ']' + exit 77 SKIP tests/guix-git-authenticate.sh (exit status: 77) SKIP: tests/guix-pack ===================== accepted connection from pid 11836, user nixbld + guile -c '(getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)' + exit 77 SKIP tests/guix-pack.sh (exit status: 77) SKIP: tests/guix-pack-localstatedir =================================== accepted connection from pid 11871, user nixbld + guix pack --version guix pack (GNU Guix) 1.3.0-17.2a49ddb Copyright (C) 2021 the Guix authors License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. ++ guile -c '(use-modules (guix config))(display %storedir)' + storedir=/gnu/store ++ guile -c '(use-modules (guix config))(display %localstatedir)' + localstatedir=/var + NIX_STORE_DIR=/gnu/store + GUIX_DAEMON_SOCKET=/var/guix/daemon-socket/socket + export NIX_STORE_DIR GUIX_DAEMON_SOCKET + guile -c '(use-modules (guix)) (exit (false-if-exception (open-connection)))' + exit 77 SKIP tests/guix-pack-localstatedir.sh (exit status: 77) SKIP: tests/guix-pack-relocatable ================================= accepted connection from pid 11920, user nixbld + guix pack --version guix pack (GNU Guix) 1.3.0-17.2a49ddb Copyright (C) 2021 the Guix authors License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. ++ guile -c '(use-modules (guix config))(display %storedir)' + storedir=/gnu/store ++ guile -c '(use-modules (guix config))(display %localstatedir)' + localstatedir=/var + NIX_STORE_DIR=/gnu/store + GUIX_DAEMON_SOCKET=/var/guix/daemon-socket/socket + export NIX_STORE_DIR GUIX_DAEMON_SOCKET + guile -c '(use-modules (guix)) (exit (false-if-exception (open-connection)))' + exit 77 SKIP tests/guix-pack-relocatable.sh (exit status: 77) SKIP: tests/guix-package-net ============================ accepted connection from pid 13126, user nixbld + guix package --version guix package (GNU Guix) 1.3.0-17.2a49ddb Copyright (C) 2021 the Guix authors License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. + guile -c '(getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)' + exit 77 SKIP tests/guix-package-net.sh (exit status: 77) FAIL: tests/guix-system ======================= accepted connection from pid 13167, user nixbld + set -e + guix system --version guix system (GNU Guix) 1.3.0-17.2a49ddb Copyright (C) 2021 the Guix authors License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. + tmpfile=t-guix-system-13177 + errorfile=t-guix-system-error-13177 + tmpdir=/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/t-guix-system-13177 + mkdir /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/t-guix-system-13177 + trap 'rm -f "$tmpfile" "$errorfile" "$tmpdir"/*; rmdir "$tmpdir"' EXIT + cat + guix system vm t-guix-system-13177 + cat t-guix-system-error-13177 t-guix-system-13177:2:3: error: (operating-system): missing field initializers (bootloader host-name file-systems timezone) + grep 't-guix-system-13177:2:3:.*missing.* initializers' t-guix-system-error-13177 t-guix-system-13177:2:3: error: (operating-system): missing field initializers (bootloader host-name file-systems timezone) + cat + guix system vm t-guix-system-13177 + cat t-guix-system-error-13177 t-guix-system-13177:4:1: missing closing parenthesis + grep 't-guix-system-13177:4:1: missing closing paren' t-guix-system-error-13177 t-guix-system-13177:4:1: missing closing parenthesis + cat + guix system build t-guix-system-13177 -n + grep 't-guix-system-13177:3:2: .*module .*openssh.*not found' t-guix-system-error-13177 t-guix-system-13177:3:2: error: module (gnu services openssh) not found + grep 'Try.*use-service-modules ssh' t-guix-system-error-13177 hint: Try adding `(use-service-modules ssh)'. + cat + guix system build t-guix-system-13177 -n + grep 't-guix-system-13177:3:2: .*module .*qemu.*not found' t-guix-system-error-13177 t-guix-system-13177:3:2: error: module (gnu packages qemu) not found + grep 'Try.*use-package-modules virtualization' t-guix-system-error-13177 hint: Try adding `(use-package-modules virtualization)'. + cat + guix system build t-guix-system-13177 -n ++ guile -c '(display (effective-version))' + test 3.0 = 3.0 + grep 't-guix-system-13177:[0-9]\+:[0-9]\+:.*GRUB-config.*[Uu]nbound variable' t-guix-system-error-13177 t-guix-system-13177:9:15: error: GRUB-config: unbound variable + cat + guix system build t-guix-system-13177 -n + grep 't-guix-system-13177:3:[0-9]\+:.*%base-file-system.*invalid field specifier' t-guix-system-error-13177 t-guix-system-13177:3:0: error: %base-file-systems: invalid field specifier + OS_BASE=' (host-name "antelope") (timezone "Europe/Paris") (locale "en_US.UTF-8") (bootloader (bootloader-configuration (bootloader grub-bootloader) (targets (list "/dev/sdX")))) (file-systems (cons (file-system (device (file-system-label "root")) (mount-point "/") (type "ext4")) %base-file-systems)) ' + cat + guix system vm t-guix-system-13177 accepted connection from pid 13244, user nixbld + grep 'service '\''networking'\''.*more than once' t-guix-system-error-13177 guix system: error: service 'networking' provided more than once + cat + guix system build t-guix-system-13177 accepted connection from pid 13253, user nixbld + grep 'service '\''buggy!'\''.*'\''does-not-exist'\''.*not provided' t-guix-system-error-13177 guix system: error: service 'buggy!' requires 'does-not-exist', which is not provided by any service + make_user_config users wheel + cat + guix system build t-guix-system-13177 -n accepted connection from pid 13262, user nixbld spurious SIGPOLL substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable substitute: guix substitute: warning: authentication and authorization of substitutes disabled! The following derivations would be built: /tmp/guix-tests/store/myshk2r8b6sn7aqycjzd52y7js2q2yij-system.drv /tmp/guix-tests/store/02iswp1jjfwk6b5fyxrbr01r18wd6l8m-etc.drv /tmp/guix-tests/store/3dppzrmjipl215357m62qp0rxxqcigkl-skel.drv /tmp/guix-tests/store/3xx3dcm5zyfgjkvyal7azvkr13981w4j-module-import-compiled.drv /tmp/guix-tests/store/5w71j1ahwqsicxm3kvwcfak690fsdwm3-guile-3.0.7.drv /tmp/guix-tests/store/00rl26bz9iy645lfvjz3wz8zv2813cjj-pkg-config-0.29.2.drv /tmp/guix-tests/store/5h5z1far1zz5lb9z2aqj8w711z3qisnx-module-import-compiled.drv /tmp/guix-tests/store/5rffkc4lx8d86gj4fa4rvg0spps1p4v0-file-boot0-5.39.drv /tmp/guix-tests/store/3drxkc76igrw1fi4hblngm7lmwzvhbfg-gcc-bootstrap-0.drv /tmp/guix-tests/store/d6f0fa8x4if8asg5sf69aqma7nm265a0-glibc-bootstrap-0.drv /tmp/guix-tests/store/jvxnnz4bmgqfh6m8cgmmlv94pi68gwxl-glibc-2.25.tar.xz.drv /tmp/guix-tests/store/hcvxcl1hwj875z5f1h35f32khxafr9lc-gcc-5.4.0.tar.xz.drv /tmp/guix-tests/store/6lwnac3ga3qs598j99n3vfc96fqi554h-file-5.39.tar.gz.drv /tmp/guix-tests/store/8j2q9fv5azb6sclr1b6ypjybpjybwb84-make-boot0-4.3.drv /tmp/guix-tests/store/irmyrsqw0m0mk8swb00ryf3ic6pqw2jf-bootstrap-binaries-0.drv /tmp/guix-tests/store/4x2n9xjb3qqm34vc9k2c1w9b9xm46agx-static-binaries.tar.xz.drv /tmp/guix-tests/store/msy4c035ih8ss7w3mazn0y6cvrwrmazj-binutils-bootstrap-0.drv /tmp/guix-tests/store/zr43wy48bl6lhld21ajilvj895q7jsqa-binutils-2.27.tar.xz.drv /tmp/guix-tests/store/vdg7a9kpy8rs12abqjyxr7d5idcwci68-make-4.3.tar.xz.drv /tmp/guix-tests/store/wy7isgmjyiwbzsyx1f3bmhw4kdi65l7i-make-4.3.tar.gz.drv /tmp/guix-tests/store/5rx3i7c94a787lns10xwgim1hq84m7v1-binutils-cross-boot0-2.37.drv /tmp/guix-tests/store/gp2iyp8vzj2904mha81vsx3a5l9ndkcq-binutils-2.37.tar.xz.drv /tmp/guix-tests/store/vj5dqqhka5p7qi20kh32396bd1y127al-binutils-2.37.tar.bz2.drv /tmp/guix-tests/store/p677ngbz80k4ld9dn87s65ni32v6lmjn-diffutils-boot0-3.8.drv /tmp/guix-tests/store/cpsrirfv2871swvx7slsdabnyma4h781-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/xsmnf0jmi7p4n60i8p1mkvpm05sp6a6w-findutils-boot0-4.8.0.drv /tmp/guix-tests/store/xl0b647qzhamil3s0w46970xp4lqzc09-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/m0hxwnqk3j0v7333n3ii2jqix1da025s-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/bhan5y2nxnwnz9bcxdy76h9rfq20wml2-pkg-config-0.29.2.tar.gz.drv /tmp/guix-tests/store/dp1ja89a8vkxgf1p4jc6r5ymaf3zf8qc-linux-libre-headers-5.10.35.drv /tmp/guix-tests/store/0nqx5jlmc5mk9nrfvab8sn3g33fssycs-m4-boot0-1.4.18.drv /tmp/guix-tests/store/6d9fq4zyksi8my2avvmf4ccca6x353am-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/wfv4vwpw1xv13b7yff3siichmhifi8j3-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/cxfvgfda8b95ld7yb98472bzr487akfl-bison-boot0-3.7.6.drv /tmp/guix-tests/store/dsmw8wfsxlq3nk1vrc8ni7a6387k0695-perl-boot0-5.34.0.drv /tmp/guix-tests/store/q45vcwi1vdnl1ivwaxk6v2xcd8xa4ang-perl-5.34.0.tar.xz.drv /tmp/guix-tests/store/aaqnz7s3w73pb173krlx673qpmism8f5-perl-5.34.0.tar.gz.drv /tmp/guix-tests/store/mzllf2r2i5rzjqy79fs13ny8vgn86qpr-bison-3.7.6.tar.xz.drv /tmp/guix-tests/store/k8iplw0kw2dmly8v5lamgplx04ggn15j-linux-libre-5.10.35-gnu.tar.xz.drv /tmp/guix-tests/store/s9pg6r6jza7r5f3m94k7sgwpynwpxwcd-flex-2.6.4.drv /tmp/guix-tests/store/d1zzhllih6bhzvnc80jsm43r9kmflr9z-flex-2.6.4.tar.gz.drv /tmp/guix-tests/store/ffc5rg7wnrjrpzrmbg22h351280xijm6-ld-wrapper-boot0-0.drv /tmp/guix-tests/store/fm6ink06dpxk87bqc6lgxx8ky74ia62x-gcc-10.3.0.drv /tmp/guix-tests/store/7khqqxqxi03q8abfi49crphk30wm65i8-mpc-1.2.1.tar.gz.drv /tmp/guix-tests/store/97d6m61x48g8n8fnrn0pqrhx2209110m-gcc-cross-boot0-wrapped-10.3.0.drv /tmp/guix-tests/store/ah3g5mnihalpr1sccip82sxfrr0vr1pz-gcc-cross-boot0-10.3.0.drv /tmp/guix-tests/store/a4v61rcb2masds25m6i38bk66xn7zgbg-gmp-6.0.0a.tar.xz.drv /tmp/guix-tests/store/xmsm1kzrmrari5chwcil4dgmrq8xjcqf-gmp-6.0.0a.tar.xz.drv /tmp/guix-tests/store/flzxa3z4k5qv55km5gwn4w4b5ncnsmwm-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/ix1j66481xr2xy267qj0b8c36a9yd7g7-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/vasq2n0j43fxvhr1gz3r8h7gfasq8j5r-libstdc++-boot0-4.9.4.drv /tmp/guix-tests/store/4pn6afwyavhi2fwggq250b9dkf4j9lj8-gcc-4.9.4.tar.xz.drv /tmp/guix-tests/store/ciw3b48qvhb5fx35hllb74czfcjp2zn0-gcc-4.9.4.tar.bz2.drv /tmp/guix-tests/store/z4vfg9vv6w1ak3j942b50z7a86f37qn3-mpfr-4.1.0.tar.xz.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/gm3v790gmxrcssw929w1dhinzph12gdy-gettext-boot0-0.19.8.1.drv /tmp/guix-tests/store/lvp6i19y0xxszb921nckl5hy0jwp3dlh-gettext-0.19.8.1.tar.gz.drv /tmp/guix-tests/store/gx0cfkdlx8ani5v80y7rcn25wcsak11j-texinfo-6.7.drv /tmp/guix-tests/store/v1diq15pcscjp1g1nba5difq7i5a8444-texinfo-6.7.tar.xz.drv /tmp/guix-tests/store/hnr0xg3bd3ba4qzrc71br1pywls01z9r-python-minimal-3.5.9.drv /tmp/guix-tests/store/dl06g703krs6wsjh13cil554baifr5v2-expat-2.4.1.drv /tmp/guix-tests/store/gckzpnh0im4a98l1c5r44g3442b20f13-expat-2.4.1.tar.xz.drv /tmp/guix-tests/store/ma9dns8jdkkvy3kvbiv0h6wbac88pi8a-Python-3.5.9.tar.xz.drv /tmp/guix-tests/store/qy27syldpl7c5amch4fx70b79pmxh0fi-Python-3.5.9.tar.xz.drv /tmp/guix-tests/store/j8bhbikxlay3j3q41qw0yl0gay5yrs6w-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/1yl394nf5ndwikn9c48d17fmbxfvcbgk-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/lrl0dhhb4072c0hrs81jl5sgks7a5nh4-bash-static-5.1.8.drv /tmp/guix-tests/store/0s1f5gk80rgqpvjbxf4ayf7vnjw71mxr-bash-5.1.tar.xz.drv /tmp/guix-tests/store/0614ryjqzr489495nq6d99jajmhqjiab-bash51-003.drv /tmp/guix-tests/store/2agrqh7i0sywnfv7f7b9m7mmgvmn8skw-bash51-007.drv /tmp/guix-tests/store/2rs4l6v390s5ybkypvpdikk34bfsb2wi-bash51-008.drv /tmp/guix-tests/store/8cd3hyh9h1dj3cndzrjwg82ry3k9fywr-bash51-004.drv /tmp/guix-tests/store/8cjan671yq08m76d7l0qrfjg5kg0i0f4-bash51-006.drv /tmp/guix-tests/store/90is400r9i58rv532wj0cm1yxyhfsw1k-bash51-002.drv /tmp/guix-tests/store/agfndag1jx1rlxnjzxm3ab4ncyk0ihb9-bash51-001.drv /tmp/guix-tests/store/hain1z6c9v2zgkxm57vabb8qiasgc44r-bash51-005.drv /tmp/guix-tests/store/vpym9p0qg5brhi62jqzjhggar0ika4zc-bash-5.1.tar.gz.drv /tmp/guix-tests/store/36i906s7ib2nj0gzzvw0hfyirrbx5lp7-glibc-intermediate-2.33.drv /tmp/guix-tests/store/7ky23iywrg5winwlpbgj5hl129qx13jw-gcc-cross-boot0-wrapped-10.3.0.drv /tmp/guix-tests/store/36i906s7ib2nj0gzzvw0hfyirrbx5lp7-glibc-intermediate-2.33.drv /tmp/guix-tests/store/d1b92fz4y431r62xsvkqbdd13i93lzfh-zlib-1.2.11.drv /tmp/guix-tests/store/ji48bhh10nv6djiz16a1cljnq08fdck7-zlib-1.2.11.tar.gz.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/fbn7qarm6adak53jg4dz1gy4p064gy9y-binutils-2.37.drv /tmp/guix-tests/store/lrc73gzhggn1l16dlsdj1lv34qsjfan7-libstdc++-10.3.0.drv /tmp/guix-tests/store/r94pzhn6yx0knmnlbn49134yrvwbs29b-ld-wrapper-boot3-0.drv /tmp/guix-tests/store/gkl3anjfh20qqp73mq0hmdknjsqp1zfa-bash-minimal-5.1.8.drv /tmp/guix-tests/store/4lxlikg47slp0mrcd25rlcm6qcii6kqj-libunistring-0.9.10.drv /tmp/guix-tests/store/w9zlnd1lsfx9i24f59im4zfrgr86qyif-libunistring-0.9.10.tar.xz.drv /tmp/guix-tests/store/gc355jps6lvgnhny001hs7zf7k6rbn3m-libffi-3.3.drv /tmp/guix-tests/store/40qj4rc7c1rjhbh4yl21z5qi8md2ialv-libffi-3.3.tar.xz.drv /tmp/guix-tests/store/1km3h7zb41pjrldqgq6gjny5f0aissi0-libffi-3.3.tar.gz.drv /tmp/guix-tests/store/nrn3byjrdgf1c0icybmisrkcn28ypjyx-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/7gnpyf9a1i789jvz9j8cr69jaj0x5p28-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/rcp4r9nkzi1jhb4z8bgmhq0cmqlmgqxa-libgc-8.0.4.drv /tmp/guix-tests/store/ifxf227928p46a44kadh3qwc3xgi7kll-gc-8.0.4.tar.gz.drv /tmp/guix-tests/store/3x8v0lvlf2b2cx5qfis705spcd2b8n58-shells.drv /tmp/guix-tests/store/082awpzp75l8s1pqf31yym1y5lvlg1g5-shadow-4.8.1.drv /tmp/guix-tests/store/21pmnj5l8wwv9j6565ami62ql6rdbivp-gzip-1.10.drv /tmp/guix-tests/store/91z5zk9cv2bryzxa94zqpbph3i5x0v0d-gzip-1.10.tar.xz.drv /tmp/guix-tests/store/bmzp76q0a1ihpd044dfjj160wb8fqgs8-grep-3.6.drv /tmp/guix-tests/store/2bxdmf4galrb85yv3gkdhkrcw8jxyidg-grep-3.6.tar.xz.drv /tmp/guix-tests/store/1zk1y70l49d03g9czi6w1pzngc43g212-grep-3.6.tar.xz.drv /tmp/guix-tests/store/dyvkgvsbx1iz19ad4vmjp8f25k70bziw-module-import-compiled.drv /tmp/guix-tests/store/rj6lyl5dpik9kp20q04lbpr1aq6jx466-glibc-utf8-locales-2.33.drv /tmp/guix-tests/store/6623qs8y2ddd3fbgy4fhagkphx28pdq6-gzip-1.10.drv /tmp/guix-tests/store/m0xiw3dznzaaxw8izp2ywc1hc5hd3blj-coreutils-8.32.drv /tmp/guix-tests/store/afbnqhzv3bam6n593027krw63kjlppd0-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/bik73j39d1bb6ksn3x2xdc9h133kiigf-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/50h57gnjb225z2qzh580zcpqniiz07jb-diffutils-3.8.drv /tmp/guix-tests/store/55n6pa2bks7fk13p12bchw8lpi2sy88m-perl-5.34.0.drv /tmp/guix-tests/store/p0p0ab2zq1p1332h5x07wixh0r7am998-coreutils-minimal-8.32.drv /tmp/guix-tests/store/z2x6zgpv6gzyp12b4a5ikr6n75yws86b-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/6ank9bknb1f95kcvir5v0jnpzxa07ir3-tar-1.34.drv /tmp/guix-tests/store/vgkjb9gr1mc39k5c46arbjbks15b35cj-tar-1.34.tar.xz.drv /tmp/guix-tests/store/bnnng57rswby8xhvzy9vjwmwh1xc80m1-tar-1.34.tar.xz.drv /tmp/guix-tests/store/cj7y0ngqdj3r2yx6grcqb1ppkgpyb8b8-bzip2-1.0.8.drv /tmp/guix-tests/store/5dpcig3kzm5vrskw80977ifgblkcffwr-bzip2-1.0.8.tar.gz.drv /tmp/guix-tests/store/dpgm59v7m8p8hi1ci2jv43a84l67qlqa-file-5.39.drv /tmp/guix-tests/store/g3vzcjpysp0hcl7wnwjykpi3ps1fgjyk-make-4.3.drv /tmp/guix-tests/store/9mk3x98kxqdz034rj1rmilij0grz3kc7-pkg-config-0.29.2.drv /tmp/guix-tests/store/g6hrlky5sy7nz3kg0whxq44xfpc6r8z8-patch-2.7.6.drv /tmp/guix-tests/store/600hnwvm1w09da6mrjfdvqkl0ld96gg7-ed-1.17.drv /tmp/guix-tests/store/5z89n7v0b8mnswpaiw3j9anva591lbva-ed-1.17.tar.lz.drv /tmp/guix-tests/store/6zfa9zfpig9kxc1ciaxhxlif7rj96h6k-lzip-1.22.drv /tmp/guix-tests/store/i2a9klhfkfyfrqfsqbmyy60mdgbxjb34-lzip-1.22.tar.gz.drv /tmp/guix-tests/store/a7b5882ma5bii2isrc81wad9qig922m9-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/h9837470b7xbdc5045rfq4q8p50pnayr-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/gf16p699ahr7vbz0hadybq22c928k5rv-linux-pam-1.5.1.drv /tmp/guix-tests/store/90an45ybmxxdk2j5j9fv0ji8q7iyyiav-flex-2.6.4.drv /tmp/guix-tests/store/g6msfm26i8b5h396504c8110yibnh7l8-help2man-1.48.3.drv /tmp/guix-tests/store/0d6iv542mz1li1lai6v0dc6pzikq5b8r-help2man-1.48.3.tar.xz.drv /tmp/guix-tests/store/7xam65p8mwva5k7xf7fi931600x5qi93-perl-gettext-1.07.drv /tmp/guix-tests/store/468lblrdf3cv2w8a3j3r48blb7vb1ymk-gettext-1.07.tar.gz.drv /tmp/guix-tests/store/5bb0bvrqz67ijc9ihw938dlb0rrh0srw-module-import-compiled.drv /tmp/guix-tests/store/hwppn7f1mws18zsk2n53klrwlpmlr124-perl-5.34.0.drv /tmp/guix-tests/store/gqx7l2gzp88gif0az3dqg0r3wl0yij3w-coreutils-minimal-8.32.drv /tmp/guix-tests/store/jcn6z8hnhyls6g48hk8y5x5kzhliv6d5-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/zvam0j9fwpnd11c43lawwamw1fxhdq8z-xz-5.2.5.drv /tmp/guix-tests/store/c2p3ba4bkm2ddllr61lf83ksy2ji326g-xz-5.2.5.tar.gz.drv /tmp/guix-tests/store/jqlmsrpnnww1qq08n9dm8wnk4y2jcl8f-findutils-4.8.0.drv /tmp/guix-tests/store/p62d7v83mfzh9q2gr238iw1iwzaa54bb-gawk-5.1.0.drv /tmp/guix-tests/store/jnl5s25mlvhhx7513mf7wxnjf9k12bwb-gawk-5.1.0.tar.xz.drv /tmp/guix-tests/store/lddc2s21apl8jzayr0qh8z4jv37qzgk6-libsigsegv-2.13.drv /tmp/guix-tests/store/p7ch1zpda76ng44lcylkmvkqj9p6rrbj-libsigsegv-2.13.tar.gz.drv /tmp/guix-tests/store/xdjpbx97b8xwxv0y5f3vbj269512m5za-sed-4.8.drv /tmp/guix-tests/store/a8fn7nd882wxpcxmfmlhdy9nn3hxq3h5-sed-4.8.tar.xz.drv /tmp/guix-tests/store/6a35xdllgbxwfk369rmz03qqh76m1i83-sed-4.8.tar.gz.drv /tmp/guix-tests/store/zirq8ypbjch79fc9xrkpm0d6lbb9im9q-ld-wrapper-0.drv /tmp/guix-tests/store/wb6kx05hi2a99pbcac0i6yd176sll04i-perl-5.34.0.tar.xz.drv /tmp/guix-tests/store/lyb9a6nkfl8g0bgyjnn239w8ikrjjgib-gettext-minimal-0.21.drv /tmp/guix-tests/store/3hdq83yb29ijw91bqijzx896y06a11m5-gettext-0.21.tar.gz.drv /tmp/guix-tests/store/3w6zpyvj10b7yj0zjskixwkxaf49q48w-libunistring-0.9.10.drv /tmp/guix-tests/store/8jiqwcn2fxs6zjp71pr4iz0l7kq62jgi-zlib-1.2.11.drv /tmp/guix-tests/store/hizh2pv4afqhci3fspmnwkl24qvz7mmf-libxml2-2.9.12.drv /tmp/guix-tests/store/20icgpa30z6rlkbqwn141p9pbi14n37m-libxml2-2.9.12.tar.xz.drv /tmp/guix-tests/store/7rpjscyfv3gwj8fwc39xhymq0qxrngrh-libxml2-2.9.12.tar.gz.drv /tmp/guix-tests/store/fy16mi1xm2vmbhj017ggfxg4a0h77nim-xz-5.2.5.drv /tmp/guix-tests/store/wc435c6jb85m8f3xmcz5avwnqza1id91-ncurses-6.2.20210619.drv /tmp/guix-tests/store/3dgf4kwi1nvcy95nn020di0klkjg9s19-ncurses-6.2.tar.gz.drv /tmp/guix-tests/store/8k44mfp0hsvy3q4yxfrb0m6495zjf7dp-pkg-config-0.29.2.drv /tmp/guix-tests/store/rzh9fakqivjd02wpx26wis4dh5mhmjjr-ncurses-6.2-20210619-patch.sh.bz2.drv /tmp/guix-tests/store/pl3xwmvlg60isx6aq8gn52h7jamq0c07-m4-1.4.18.drv /tmp/guix-tests/store/xjsp9pbxvr0hwpi5ykzlz1kinkjcxybb-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/yzyjm7g0zaa5gzfqyyg2r4nqib0nj27f-bison-3.7.6.drv /tmp/guix-tests/store/c92m79y0gc6m80gf926j38428b12f82i-Linux-PAM-1.5.1.tar.xz.drv /tmp/guix-tests/store/8qxkyympyn7imadwvgy4lzlqzbj8ganw-Linux-PAM-1.5.1.tar.xz.drv /tmp/guix-tests/store/m6dams3882kszqiwy4v4m4kkc1jybj8i-shadow-4.8.1.tar.xz.drv /tmp/guix-tests/store/jnmwcp0li2jbz9dp3bkmz9q91waqn1rb-shadow-4.8.1.tar.xz.drv /tmp/guix-tests/store/xdk1lfrcd51g7i2i7lkmbyjpyzipc2zm-bash-5.1.8.drv /tmp/guix-tests/store/1s6xwrs17i1nl62vabiz3gbgf3ljld88-readline-8.1.1.drv /tmp/guix-tests/store/ckb9nzpjh8qcrxi0izalc673a372zxsj-readline-8.1.tar.xz.drv /tmp/guix-tests/store/4zjjf1h3imnzd43nzbr29ws926chi6gy-readline-8.1.tar.gz.drv /tmp/guix-tests/store/pgz10hw4hia626xbjlyhzir277nw2934-readline81-001.drv /tmp/guix-tests/store/fshyvm6adcq7hw62v89zisypdl5ilxd9-bash-5.1.tar.xz.drv /tmp/guix-tests/store/4hi5mc14v13wcx7s3ghlq7ddx5n6h509-pam.d.drv /tmp/guix-tests/store/1801p42rgy9mkkpdf9bmzrgk41fna0bc-groupadd.drv /tmp/guix-tests/store/5jybgg7awqw792vb8gk74i1kny6f087i-groupdel.drv /tmp/guix-tests/store/63zwpr2yb02fg2fjyzfmyl7sby5wpcg9-userdel.drv /tmp/guix-tests/store/9v5ds3f9pa7na20wmfrg0l2qsjxdpzi7-passwd.drv /tmp/guix-tests/store/c1i43n1ip1s8ppmc13igxgzj61c2bffl-other.drv /tmp/guix-tests/store/fsbvj9x1yz3pvvgy5xq70c91cfmy2brq-useradd.drv /tmp/guix-tests/store/jx9xjzd42063rhjap04wrgwrnn1qivsc-su.drv /tmp/guix-tests/store/n3nc4rvccdncrsycb0lwavd83fabk81w-login.drv /tmp/guix-tests/store/nwy8z7fv1dw5y94p3icw7mw749pk4nj6-sudo.drv /tmp/guix-tests/store/wzlh1j5xv051jxjxj4mn002lz969xsx8-usermod.drv /tmp/guix-tests/store/zx1d38g65ycdx57c6jk9yabk82yfzlvr-groupmod.drv /tmp/guix-tests/store/gibpg9bbb294maqsf1nh5nd5hy8zs9xf-profile.drv /tmp/guix-tests/store/jbfzgwqm2x8lwj1l0rawqv9dz2cmbjkq-sudoers.drv /tmp/guix-tests/store/nhbr7xzlz6hai88brw7klrhn0jhkbvjj-sudo-1.9.8p2.drv /tmp/guix-tests/store/rsxj25ipcp5kzdgmgd59lfhdyijn1vgg-coreutils-8.32.drv /tmp/guix-tests/store/bfqcx4ji79m0igvagplbhha9h3hkhqgb-attr-2.5.1.drv /tmp/guix-tests/store/2pn4vdkzbg5gwjqskby89v8nrn84b66y-attr-2.5.1.tar.gz.drv /tmp/guix-tests/store/gg0897h8bc5p6ljc4yq74b2c4x7qsdsh-acl-2.3.1.drv /tmp/guix-tests/store/fdrp2n3bzzjzdb8im056pgcp98ccscna-acl-2.3.1.tar.gz.drv /tmp/guix-tests/store/hnilzisybg688ddgizx3w5d63w8qs05g-gmp-6.2.1.drv /tmp/guix-tests/store/wwlwl85r9hg1cknaw9wjagp2qgqy62mm-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/y5m24mds14ncjlrwldfng8xkmmjhjj3h-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/nyc558r8806f7b4f8cwp2mdxp1qgx0aj-libcap-2.51.drv /tmp/guix-tests/store/1l45dy2rjh880s0k4mij9iwj4b6lwzk0-libcap-2.51.tar.xz.drv /tmp/guix-tests/store/vrmjmliigr4cjjdg7rbadj4hzivasg62-groff-1.22.4.drv /tmp/guix-tests/store/7vpjgw85wsraa2a7bp7ln5ilcdk3sbvx-bison-3.7.6.drv /tmp/guix-tests/store/bha2smigk61y51cl0brvr1ds6wiscrik-texinfo-6.7.drv /tmp/guix-tests/store/l07rpf0f1yvxzgn8yji1zc5ya2g2zqx2-ghostscript-9.54.0.drv /tmp/guix-tests/store/5rh6x6j9gfl82193sxlvb474pb3nkrwc-ghostscript-9.54.0.tar.xz.drv /tmp/guix-tests/store/xx5hnbs01aba5dk246zqmvl9qwh9j460-ghostscript-9.54.0.tar.xz.drv /tmp/guix-tests/store/5vnml2rg59fipa1r0akrdw6fdnjfy46c-font-ghostscript-8.11.drv /tmp/guix-tests/store/azlxx6qzgwjm6yyy0z05jbdxrpm02crq-ghostscript-fonts-std-8.11.tar.gz.drv /tmp/guix-tests/store/8ngxgsybz3sfw773wj43v9hfdi8gk1m6-python-minimal-3.9.6.drv /tmp/guix-tests/store/19cjj4qn5nplk3x2sfammqpg9hlf9sbr-Python-3.9.6.tar.xz.drv /tmp/guix-tests/store/iria8q3qidpz2bjm49v2winn3vjxypp8-Python-3.9.6.tar.xz.drv /tmp/guix-tests/store/amyqdn43835z8n4nr7mnm2v8438bfkrg-unzip-6.0.drv /tmp/guix-tests/store/5sfchzcg8c9jdly24h3hspbddfcxrgmv-unzip60.tar.xz.drv /tmp/guix-tests/store/g1laxgrn8h1zyrjy9gd9901sjzx69b33-unzip60.tar.gz.drv /tmp/guix-tests/store/hplrcllrlfjklmp6wi4pxq482gnvbqmi-bzip2-1.0.8.drv /tmp/guix-tests/store/c9lcckp47bak9j8ksxjc6lac7fhlqi8r-zip-3.0.drv /tmp/guix-tests/store/ywkmbnkp6n7jpqx1j1q80lha47ivmr3a-zip30.tar.gz.drv /tmp/guix-tests/store/k9jkyk4qwbcwh9nd9yvhghgkmpz8wrg5-libffi-3.3.drv /tmp/guix-tests/store/94iz0h14l7wvg9m7kwv9sycs0bq1khnb-libffi-3.3.tar.xz.drv /tmp/guix-tests/store/kkly0bjdn3vckm8daniz6y9jrs42idz0-expat-2.4.1.drv /tmp/guix-tests/store/lxp25j1rqh9g4akh9ya7ck8vhaiz0q8k-tzdata-2021e.drv /tmp/guix-tests/store/g6ssndxfwf9f2584zdyvd85hkxxhgs02-tzdata2021e.tar.gz.drv /tmp/guix-tests/store/yyajwl02cfrwaprvxxbn96wy6nzzgv6j-tzcode2021e.tar.gz.drv /tmp/guix-tests/store/npdcrdnmz4xc181ndn4lz5qy36ai2l5v-openssl-1.1.1l.drv /tmp/guix-tests/store/w49g2dpvf7ryrifm52gyv43mjm9gmadq-openssl-1.1.1l.tar.xz.drv /tmp/guix-tests/store/9cyf1qifhj2h699r562q4lflx66bqvws-openssl-1.1.1l.tar.gz.drv /tmp/guix-tests/store/9vvj3igk13pfxfq47yamfw5vm7kvaz3l-libjpeg-turbo-2.0.5.drv /tmp/guix-tests/store/6rbfyfard7972xp7gdlai8hsv2hsq4zn-module-import-compiled.drv /tmp/guix-tests/store/9300n7xf7nakazm93nkz4s2lmjznfw65-nasm-2.15.05.drv /tmp/guix-tests/store/0402pfph3s15mnib10rkxc3qx8wk1r7j-nasm-2.15.05.tar.xz.drv /tmp/guix-tests/store/vrn18j4438yk8x266hxm9yj1h338ij5w-cmake-bootstrap-3.21.3.drv /tmp/guix-tests/store/14ri30vi1hxr0rsjv8pypbgvc4fvkvya-curl-7.79.1.drv /tmp/guix-tests/store/1nxdsds0mhd1lbgiar5qrd1yf2fpz4an-gnutls-3.7.2.drv /tmp/guix-tests/store/23j6x323q3rc4nqvapmw41h5p22vcxrk-which-2.21.drv /tmp/guix-tests/store/1nvf74rjkzjxp59kcck0wgjbdfn0vfs3-which-2.21.tar.gz.drv /tmp/guix-tests/store/2pqyydqw0z0zf2vhdw6xs3wfnbhza0qd-guile-3.0.7.drv /tmp/guix-tests/store/azrmgrz2mshmic3hmiwmbl81x6v719d0-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/c7dmh3kaihk8n1ya0b4bqdmgmjjzyham-libgc-8.0.4.drv /tmp/guix-tests/store/pgvp468v34dplcwzcw4km0j03wj73lz6-bash-minimal-5.1.8.drv /tmp/guix-tests/store/3wrg5lcgzysjr5srqdfsl61svva1k3ks-gnutls-3.7.2.tar.xz.drv /tmp/guix-tests/store/rn6k3anl07fkgpsqgz9r478vw5dmdy81-gnutls-3.7.2.tar.xz.drv /tmp/guix-tests/store/bwdfif6x0805bv262gcg26yj0i8pmahc-libidn2-2.3.1.drv /tmp/guix-tests/store/g1gf7w2l8jqi2fvakfla7wsi30idhs1x-libidn2-2.3.1.tar.gz.drv /tmp/guix-tests/store/k3sxxnpd3rpxb6c2idc1k4wj3ll1cyq8-nettle-3.7.3.drv /tmp/guix-tests/store/ash166sr7hzjjfh3kc8qrg8j9zd3bxac-nettle-3.7.3.tar.gz.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/3y8z12v0g2ai2hr9rfwlrvm25dxz3bm4-util-linux-2.37.1.tar.xz.drv /tmp/guix-tests/store/ksjqykwy7gykgdpjyc01bdh2fg3mmblr-util-linux-2.37.1.tar.xz.drv /tmp/guix-tests/store/h8828pl50ix2h5p87vykbqak1v9zq4rm-file-5.39.drv /tmp/guix-tests/store/z131mia9hl1qclyhsfyhh9jxm04c9gcf-net-base-5.3.drv /tmp/guix-tests/store/1b9jlbrqhjl1f6lmhb24h7v88jrsr0xi-netbase_5.3.tar.xz.drv /tmp/guix-tests/store/bd7scd6k3x51i3y9r7gbajqhd4a8jq7y-tar-1.34.drv /tmp/guix-tests/store/3hbcvhf4yl83hy918rv05rfq0yg16grv-tar-1.34.tar.xz.drv /tmp/guix-tests/store/nljx6lmvcpmvhysmykn7p34gbsisri10-socat-1.7.4.1.drv /tmp/guix-tests/store/rkfa70mbh893zvvgzkw7fxjskj27n5cm-socat-1.7.4.1.tar.bz2.drv /tmp/guix-tests/store/rhd80g918d5ig6z136wn6r809s4qp5wk-datefudge-1.23.drv /tmp/guix-tests/store/0yzp4sn3iddyjjszlxffd9n227yvms7z-datefudge_1.23.tar.xz.drv /tmp/guix-tests/store/dwcd2jc7jfnyl8kg4k0hs9722pilczjw-datefudge_1.23.tar.xz.drv /tmp/guix-tests/store/s4gbsg874c932hy6kvxzpv0khfc9ih5p-p11-kit-0.23.22.drv /tmp/guix-tests/store/8jmsds3s0j33mkr6wjni6ywzr0cribzd-p11-kit-0.23.22.tar.xz.drv /tmp/guix-tests/store/sxxpsj6q99zhxxzabqhc4nrk8ri05z55-libtasn1-4.17.0.drv /tmp/guix-tests/store/rbf07kjifkgxbs2dyns6k9qp00i9mm84-libtasn1-4.17.0.tar.gz.drv /tmp/guix-tests/store/vcyfmww6m86bh1hbbkf9c1s1mfcbdbl6-net-tools-1.60-0.479bb4a.drv /tmp/guix-tests/store/09k8xbs5m1d5b5i4xbr5xv4833ps0yyf-net-tools-1.60-0.479bb4a.zip.drv /tmp/guix-tests/store/wdmrfjybsq9nb2v1zagr9nc0gc2amxwf-iproute2-5.15.0.drv /tmp/guix-tests/store/3gzp4wxrxblp5z27kmknjqccg9zwvcan-iptables-1.8.7.drv /tmp/guix-tests/store/3dr5pwp604s695mx7zyzyygm5nfj3kl3-libnftnl-1.2.0.drv /tmp/guix-tests/store/hqadr2qrs8aj4w2cb8bhg49zgndw4vpa-libmnl-1.0.4.drv /tmp/guix-tests/store/zcxykwwyg4hd3a6g18g5hh27gsjmivkx-libmnl-1.0.4.tar.bz2.drv /tmp/guix-tests/store/y46dhypls1ygjnsskm9xm9gz1n6k9y4r-libnftnl-1.2.0.tar.bz2.drv /tmp/guix-tests/store/znp4jcsv6rjw93am0db8c2smkaywj1ni-iptables-1.8.7.tar.bz2.drv /tmp/guix-tests/store/idxr9ffaks89mrbx1yjly4ibwhif0i0x-iproute2-5.15.0.tar.xz.drv /tmp/guix-tests/store/r754ad1aprcp89353a6qjakps2walryc-bdb-6.2.32.drv /tmp/guix-tests/store/h1wymwl4qwbcapsidm5zzglkhyq0cfpr-db-6.2.32.tar.gz.drv /tmp/guix-tests/store/6va9q19n8h6j6h1cn9pkb8dwm9f0wvrk-mit-krb5-1.19.2.drv /tmp/guix-tests/store/ji5s8y4cw4nbf83h85h9lzs1fz1ljb0y-krb5-1.19.2.tar.xz.drv /tmp/guix-tests/store/mzyfxingdk4xvk4z37fsbk1192sdmf4w-krb5-1.19.2.tar.gz.drv /tmp/guix-tests/store/v7y9lvr7ca443v56c3rxvgm1rgwp81ci-tcl-8.6.11.drv /tmp/guix-tests/store/s1g0w4mmh61sjiwhby8xc5hd8jnx46xy-tcl8.6.11-src.tar.gz.drv /tmp/guix-tests/store/8hkyk814a2042g5cbmaz8d37kg6158bf-curl-7.79.1.tar.xz.drv /tmp/guix-tests/store/rr2517yxgyayknjyfv70j79m9k4gfn7d-curl-7.79.1.tar.xz.drv /tmp/guix-tests/store/jjzdbgvha4lxmxgihvm0iyj8hmkr9cap-nghttp2-1.44.0.drv /tmp/guix-tests/store/3qchlvj4csg1nd06ya59lxj5r5qq7bda-nghttp2-1.44.0.tar.xz.drv /tmp/guix-tests/store/4y27gha09kld75zshnmyia57xmq9mjjs-cunit-2.1-3.drv /tmp/guix-tests/store/fks2jq3fqflm3n0fvyrkcr3g4r1kb56z-libtool-2.4.6.drv /tmp/guix-tests/store/bphi7f415ca2fksfcjnixy661321llxb-libltdl-2.4.6.drv /tmp/guix-tests/store/r6d7n4ilf0f7cfaxyyikjcpmvjmcir5r-libtool-2.4.6.tar.xz.drv /tmp/guix-tests/store/pnhz6swwip33aa2pzp16jqjb6p1nvcaa-automake-1.16.3.drv /tmp/guix-tests/store/pwnhk4lmjcb626qj1d9l4zhi87gfns5p-autoconf-wrapper-2.69.drv /tmp/guix-tests/store/dwpdx1cxzk3yxxlxzpxl7ykj3hsqx6ky-autoconf-2.69.tar.xz.drv /tmp/guix-tests/store/ry30lchbhfr56ddqxblgdy37ab7irxnj-autoconf-2.69.drv /tmp/guix-tests/store/qry2r79hhzyl31nr6ry1pqs4b86ykv09-automake-1.16.3.tar.xz.drv /tmp/guix-tests/store/9mhn9vqx0x9smnqkgd609mrh9r3m8w38-automake-1.16.3.tar.xz.drv /tmp/guix-tests/store/r4rjin6gzz0bcaiwmsb2hvgcjq7hmag8-libtool-2.4.6.tar.xz.drv /tmp/guix-tests/store/s98b1fzvmhdziamv2858fz9k6g69xgzb-CUnit-2.1-3.tar.bz2.drv /tmp/guix-tests/store/60z6gh840cqa4lrnzfwx0iw2xnrqghph-jansson-2.13.1.drv /tmp/guix-tests/store/36fdhi8is3d52wcqpjk7sr7xh79xvb10-jansson-2.13.1.tar.bz2.drv /tmp/guix-tests/store/bwd5pzh2j9xqi7k5nndj52a78y0sq61a-python-3.9.6.drv /tmp/guix-tests/store/12ai3gxrj1m3ij8gv22sb5dgcpv3ng20-util-macros-1.19.3.drv /tmp/guix-tests/store/z4z0ha93rk5m4x9grynk62p7j054kry1-util-macros-1.19.3.tar.bz2.drv /tmp/guix-tests/store/6d8ybzkz8rm5vcl79664443pqpa2hf2x-libxdmcp-1.1.3.drv /tmp/guix-tests/store/fkm1lq1yjjyi0g04qpp94c2g9z6zfq6v-xorgproto-2021.5.drv /tmp/guix-tests/store/gfn93s2dy2z4rqrbpmj3pz8gwfaf4wkd-xorgproto-2021.5.tar.bz2.drv /tmp/guix-tests/store/j63dxva124aj5n41h0g0g3h62wwdl04q-libbsd-0.10.0.drv /tmp/guix-tests/store/4qamifn14izjih5n74kaym42g0gbh1x3-libbsd-0.10.0.tar.xz.drv /tmp/guix-tests/store/jqgv2x635lvd45lkgizn8ww88mm38pkl-libXdmcp-1.1.3.tar.bz2.drv /tmp/guix-tests/store/b2axffmpy7xpra7ad1q05j47nvr1wvk4-libx11-1.7.2.drv /tmp/guix-tests/store/8kr3mbm12vs5h453w43mbv24qh2i369z-libX11-1.7.2.tar.bz2.drv /tmp/guix-tests/store/l1vjnxwvn0n2pj717i8ankxgqr37qjaq-libxcb-1.14.drv /tmp/guix-tests/store/1sv0g93b0fpbsqm91qrd8rzsi4ghprg1-libxcb-1.14.tar.xz.drv /tmp/guix-tests/store/ggdnn1b7zfnixx3y8p7pa5f7rrslgil0-xcb-proto-1.14.drv /tmp/guix-tests/store/4g0ciqbdh73xkcx6iyzvxx458fy72vj6-xcb-proto-1.14.tar.xz.drv /tmp/guix-tests/store/nicc7434l857m6pn1nldrl1iycvfa6z2-xcb-proto-1.14.tar.xz.drv /tmp/guix-tests/store/w0q72700i2v48ik05jaak38g4n1340pk-python-minimal-wrapper-3.9.6.drv /tmp/guix-tests/store/vkixsak7qv5jsim76sa7zkq0sjm8ffv0-libpthread-stubs-0.4.drv /tmp/guix-tests/store/hwdxl7fny9sh7034hfkcxjma8pcy107n-libpthread-stubs-0.4.tar.bz2.drv /tmp/guix-tests/store/w0dwmy34rs10n7rh100j3c1v7fdk1q95-libxau-1.0.9.drv /tmp/guix-tests/store/5fdjjbsmgaf73lmfbwp1syzi9dpfj4ki-libXau-1.0.9.tar.bz2.drv /tmp/guix-tests/store/z4scfly9fws2q3k097x2fiyml2xjms6q-libxslt-1.1.34.drv /tmp/guix-tests/store/0fgn8iqagrz9d8hzakkjbcfyh95l7mm7-libxslt-1.1.34.tar.xz.drv /tmp/guix-tests/store/1da1kh5yvmxq3kspiqgsfdnrnqrh17qi-libxslt-1.1.34.tar.gz.drv /tmp/guix-tests/store/8l20rv7jrwmb0lbrljj1q16dlqr5gsb0-libgpg-error-1.42.drv /tmp/guix-tests/store/k1wvwaxbn0zxdkn42ipghkjk3ralg5db-libgpg-error-1.42.tar.bz2.drv /tmp/guix-tests/store/kjfzhznvhq6ygrqn76zwxpnyq746n3az-libgcrypt-1.8.8.drv /tmp/guix-tests/store/0272fnn9cjcp9lkv586jsim8qq7aq8if-libgcrypt-1.8.8.tar.bz2.drv /tmp/guix-tests/store/m79hnhjw3i1y99xwf7rg771xhf99hdvy-xtrans-1.4.0.drv /tmp/guix-tests/store/8jwhbqwafy7haqjkk15bmx8cg1ybyhp7-xtrans-1.4.0.tar.bz2.drv /tmp/guix-tests/store/di8hlsnfacip72sxzhi8k8fd0pzrv7zk-gdbm-1.20.drv /tmp/guix-tests/store/7yjcgjpgnh7szk10rdki8wqpnvnzhs8b-gdbm-1.20.tar.gz.drv /tmp/guix-tests/store/psxi5c3yvv4xm3mif8ddaswmjp0wbk28-sqlite-3.36.0.drv /tmp/guix-tests/store/zf5y36j726cfri6m6c7951hw0i499rrz-sqlite-autoconf-3360000.tar.xz.drv /tmp/guix-tests/store/a84rbsxnyx15jdg82xdn164qa96dnn9k-sqlite-autoconf-3360000.tar.gz.drv /tmp/guix-tests/store/pxrv528rakvqw4sjjlb0wmnvjyia39w9-libxext-1.3.4.drv /tmp/guix-tests/store/73whp8srb8nr5c5zn11xrrq0nl0sa1wh-libXext-1.3.4.tar.bz2.drv /tmp/guix-tests/store/xmb8zw25ydf9qncq91waj3c4hpdnbsjh-tk-8.6.11.1.drv /tmp/guix-tests/store/1kk2vqp36s9d5594hbd40f2pbzls7xnz-tk8.6.11.1-src.tar.xz.drv /tmp/guix-tests/store/8dnfigpzdy1hdhfa46gix97zfnvn2lv7-tk8.6.11.1-src.tar.gz.drv /tmp/guix-tests/store/2lbg1pwja5lnn0jd69pr7rqc1wf73mn4-libxft-2.3.3.drv /tmp/guix-tests/store/a42jslaiw3n7pbr73f9nqx5jga5lny9b-libXft-2.3.3.tar.bz2.drv /tmp/guix-tests/store/g1cg0xh5ii9mc9zwxf0ahlfj74zr9r5x-fontconfig-minimal-2.13.94.drv /tmp/guix-tests/store/b081xw509nqg9jchl062lllxsp3gixwf-font-dejavu-2.37.drv /tmp/guix-tests/store/0dm5a4akpbvz5adfck7z5n71k3grnq6h-dejavu-fonts-ttf-2.37.tar.bz2.drv /tmp/guix-tests/store/bw6h4j46crzwmw15xq1mj4fg2hwym9xi-module-import-compiled.drv /tmp/guix-tests/store/kwcb79jcnimag8dsp16p0xyivpz4yf9c-gzip-1.10.drv /tmp/guix-tests/store/gnn656w5ai6h3y71lzq6aflc69p5b8si-freetype-2.10.4.drv /tmp/guix-tests/store/913xvnkyjyr9wpy5yyq4ald01vynvxj2-freetype-2.10.4.tar.xz.drv /tmp/guix-tests/store/p218ymga1ixpjhqvkkwx5jr74ln7qcy7-libpng-1.6.37.drv /tmp/guix-tests/store/ds8l06mgv1llghrqqydj8v244ck0gss0-libpng-1.6.37.tar.xz.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/nh1kzsk0kaip51ys6yigh7za0b4n0abc-fontconfig-2.13.94.tar.xz.drv /tmp/guix-tests/store/3hzm9r3k2gzfinka6m0vfn3ny7fk734i-fontconfig-2.13.94.tar.xz.drv /tmp/guix-tests/store/w537jrzzh9517wcnq8dg4hkcf31yfri6-gperf-3.1.drv /tmp/guix-tests/store/avqyx04y2by5q8sh0bn658dm8l2gbf3i-gperf-3.1.tar.gz.drv /tmp/guix-tests/store/y567js4v5n504frabyip2lfbs3d8c9s9-libxrender-0.9.10.drv /tmp/guix-tests/store/aajf4cc26g4y84h7kzgmsxqz8pkvyica-libXrender-0.9.10.tar.bz2.drv /tmp/guix-tests/store/hmz6j0m3l356zwf5qhii500fgbxsl0vd-c-ares-1.17.2.drv /tmp/guix-tests/store/95p5v1wqiih9i1jwnrsc8vzvhjdxl8lk-c-ares-1.17.2.tar.gz.drv /tmp/guix-tests/store/irmq4qan6pd9irm70xalv20ygb1n7vqm-jemalloc-5.2.1.drv /tmp/guix-tests/store/b90sxmfg5bn0qmb6kz9vs2lxy12pq4f6-jemalloc-5.2.1.tar.bz2.drv /tmp/guix-tests/store/kgvidm7g4c95ayvyb9hidjqbrlwq2210-libev-4.33.drv /tmp/guix-tests/store/j9hk17nyqdv3pj81nsa77njxl3pr9jjj-libev-4.33.tar.gz.drv /tmp/guix-tests/store/kyc7hx0zj21kry7mxj8ks6sid1apvl6x-libidn-1.37.drv /tmp/guix-tests/store/6jcak9dw49dz4dl84206wzgr4n09vnk0-libidn-1.37.tar.gz.drv /tmp/guix-tests/store/1mwnr87746w4yw62b7jxbbmd8dbc9rsv-libuv-1.41.1.drv /tmp/guix-tests/store/jljx74ak5ql238hg9hxipa17wmchmq04-libuv-v1.41.1.tar.gz.drv /tmp/guix-tests/store/adzkdxigm9w7v6w26nrwpjzy50dzrhyb-libarchive-3.5.1.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/hiaa99jhg9xibrw26a4gx07ncb1vp42m-zstd-1.5.0.tar.gz.drv /tmp/guix-tests/store/3j5idg9r07m0bj5d3kr157y4h63z296l-libarchive-3.5.1.tar.xz.drv /tmp/guix-tests/store/sjk59gnkp4vmkp60rq02pb2z5c0nik9d-lzo-2.10.drv /tmp/guix-tests/store/n01vi6wwqgrcgfwblyj944g4wk3z1b76-lzo-2.10.tar.gz.drv /tmp/guix-tests/store/mapkpngb78vc71h6hidaq1y1haimy9r5-rhash-1.4.2.drv /tmp/guix-tests/store/0c7n3q8x5ayj5ll7m16b9cl8yiwzdrcm-rhash-1.4.2.tar.gz.drv /tmp/guix-tests/store/mxdsa1lnahn5hah35dkwpvlhdidrb5b9-cmake-3.21.3.tar.xz.drv /tmp/guix-tests/store/q6wx3cw7cynrx74l67dyqcdvlrvsqf5k-cmake-3.21.3.tar.gz.drv /tmp/guix-tests/store/zhvkblzv4r36kqi3dp5mizra85384a21-libjpeg-turbo-2.0.5.tar.gz.drv /tmp/guix-tests/store/jmliaf57fyx77wq1rk5ja0h05mn11sc9-jbig2dec-0.19.drv /tmp/guix-tests/store/xkis6w40kr8l1n91y8xhdyn3q0ngrggr-jbig2dec-0.19.tar.gz.drv /tmp/guix-tests/store/mnyf11gpi02b1j6b30282cksn6p29iw1-libpaper-1.1.24.drv /tmp/guix-tests/store/j2kvglmqz8k2lwkfc09l230fkrf825k9-libpaper_1.1.24.tar.gz.drv /tmp/guix-tests/store/rgr3isbphrcg13zwzc2xycg49604knf1-libtiff-4.3.0.drv /tmp/guix-tests/store/c28gr8dky7a1pv83rznvc7zc7xa63852-tiff-4.3.0.tar.gz.drv /tmp/guix-tests/store/p8lbfpyyqyx0qvx3pbhy84gzsc5yykhn-groff-1.22.4.tar.gz.drv /tmp/guix-tests/store/vrv2lnpjyh1hcrxjf66rr9a4zqz3x60i-psutils-17.drv /tmp/guix-tests/store/p8lxnszfcd4db52k2jgjgma6z261ccpn-psutils.tar.gz.drv /tmp/guix-tests/store/w5csmfhyia8irry3sx36kyfly8bdardw-sudo-1.9.8p2.tar.xz.drv /tmp/guix-tests/store/1wx1ypdnq8nh1c6p5ys9m9pl1k8dzzd5-sudo-1.9.8p2.tar.gz.drv /tmp/guix-tests/store/lbhq0w2q30ahgxldp37gqczyknn4rhvb-rottlog.drv /tmp/guix-tests/store/5xyc3mla67b13wbw356b027jlpwab1fx-rottlog-0.72.2.drv /tmp/guix-tests/store/g08crmldhqd0bwjh6p5cci1fpgzp5cq0-mailutils-3.13.drv /tmp/guix-tests/store/2h38i16d77zgiy1bvivl52xkjrgckhai-gsasl-1.10.0.drv /tmp/guix-tests/store/2klvswdlbhk7l5iswilki1ahjyvxj96w-libntlm-1.6.drv /tmp/guix-tests/store/bqhxn8jc0nbhwyi509ngfvw5dn0s6z69-libntlm-1.6.tar.gz.drv /tmp/guix-tests/store/lhpigb262sclzqbn48c7pg3sk92gvgla-gsasl-1.10.0.tar.gz.drv /tmp/guix-tests/store/7j22nfv73l9nyzv62nrn4vs7zj0v3fqy-libiconv-1.15.drv /tmp/guix-tests/store/plw5fmmhgglydkkrgzdia2fy3v0b6i6q-libiconv-1.15.tar.xz.drv /tmp/guix-tests/store/d4jafkvzzkpp6qhn0kxc40m0ilchpcly-libiconv-1.15.tar.gz.drv /tmp/guix-tests/store/8gyikhrn92yak2q7jx61f3rgqiabr2my-dejagnu-1.6.2.drv /tmp/guix-tests/store/1kib6rr5lm94fvpzb04pqs4aycgbj2dk-expect-5.45.4.drv /tmp/guix-tests/store/p1zzypvrfzd20c8f1j7m5galz7z6zaqr-expect5.45.4.tar.gz.drv /tmp/guix-tests/store/6zjlx0wqrpg9lw639rbphdgnazm3rvaw-dejagnu-1.6.2.tar.gz.drv /tmp/guix-tests/store/vz7vgsp307z1b2g3bi2p43kln8hprpng-mailutils-3.13.tar.xz.drv /tmp/guix-tests/store/1d7dfrxpznpz3ly4jjpxagzflmy48qpb-mailutils-3.13.tar.xz.drv /tmp/guix-tests/store/p8c0xszsgb2g8h553rkk8k824x9s69b2-rottlog-0.72.2.tar.xz.drv /tmp/guix-tests/store/n3nfzafj0z3h0vhhaknxvdkb0irxf5jv-rottlog-0.72.2.tar.gz.drv /tmp/guix-tests/store/njg93x7nvmxyqhyvdd4lgg9m2qc1yqzj-rottlog.weekly.drv /tmp/guix-tests/store/fz21mf3w5scnc69n1cdxxnc9yswc1822-rottlog-post-rotate.scm.drv /tmp/guix-tests/store/v4pgfxsj2hx7f88hq37wpgb2xg3rf572-environment.drv /tmp/guix-tests/store/0faq5rk1hscha45yapv1lyc03j267566-profile.drv /tmp/guix-tests/store/03spvwpinh4ysdhs3zfsmxisf5ah84jj-usbutils-014.drv /tmp/guix-tests/store/cm100g7rscllnj0biscirhas9xxri54w-usbutils-014.tar.xz.drv /tmp/guix-tests/store/nyvbwmp5r4fvhvzikcf8b4kig7pd3g3g-libusb-1.0.24.drv /tmp/guix-tests/store/wminr6yzj5j504qx7s5k0zm1q3l9d8yl-libusb-1.0.24.tar.bz2.drv /tmp/guix-tests/store/pryrccddxpjp6rhg9dg63bfj1bxqr9ws-eudev-3.2.9.drv /tmp/guix-tests/store/41lndimrmc5h40wjqwbdbsj98fkmpwgi-kmod-29.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/64i36988f5cw6y2cmjyvs70rqxhqxkqc-kmod-29.tar.xz.drv /tmp/guix-tests/store/fplbsi54rvw8krf6rqv86p5514p5lhbk-kmod-29.tar.xz.drv /tmp/guix-tests/store/96qg9y2lrwq5ai7n4dp6n5v5hg1rbhrc-docbook-xml-4.2.drv /tmp/guix-tests/store/4xa6bmg4fysxsi7fcaqcln3dzbch3jbq-docbook-xml-4.2.zip.drv /tmp/guix-tests/store/cm8zp3pqpg7c94yhpzfmkrmhhsny6ykl-python-wrapper-3.9.6.drv /tmp/guix-tests/store/frv94krkjsrdy4n0h78zjhbygv6iza09-docbook-xsl-1.79.2.drv /tmp/guix-tests/store/5c1aprdmpq422i3lz6gavkirf1vz7xl9-docbook-xsl-1.79.2.tar.xz.drv /tmp/guix-tests/store/3bz1xi8mifzvvihbff8fjpp5fs4ybiib-docbook-xsl-1.79.2.tar.bz2.drv /tmp/guix-tests/store/z3fp9gnyy3n3g27jqflhb7l46cqygxww-eudev-3.2.9-checkout.drv /tmp/guix-tests/store/j8rf89mfp8xklyz4c5fwpfrjmcm4031q-eudev-3.2.9-checkout.drv /tmp/guix-tests/store/11jcipdfmlnygkksr489gq0420lsnq7p-guile-zlib-0.1.0.drv /tmp/guix-tests/store/xhx26v8vkr3arnw630z4hjrsf2hzymq3-guile-zlib-0.1.0.tar.gz.drv /tmp/guix-tests/store/1nxdsds0mhd1lbgiar5qrd1yf2fpz4an-gnutls-3.7.2.drv /tmp/guix-tests/store/f6lajahpqi1dd9crj60g1mbkik0yaamz-git-minimal-2.34.0.drv /tmp/guix-tests/store/gnj35c1cx3d65n0nffwb0vjskp8znxj1-git-2.34.0.tar.xz.drv /tmp/guix-tests/store/w3al8qd0l6y6h5ji67ampfck8qf25biy-guile-json-4.5.2.drv /tmp/guix-tests/store/2jsvq6g3mm0zd2bfysm3d5x0l9qignqh-guile-json-4.5.2.tar.gz.drv /tmp/guix-tests/store/zczss9jzfvg6w3218pyxf9rp3rc5p53k-module-import-compiled.drv /tmp/guix-tests/store/0qnjl5yfwgqw9za6jlji3wiin7x0cm1l-nvi-1.81.6.drv /tmp/guix-tests/store/92si81ir5290ikwqw1s55hrbdy02wank-nvi-1.81.6.tar.xz.drv /tmp/guix-tests/store/wr2w5zi22h6g0j0rr58ph2rl95cpi1gc-nvi-1.81.6.tar.bz2.drv /tmp/guix-tests/store/11vvvvwwd3ssyla9jjsy0kal6jsg2kg1-lzip-1.22.drv /tmp/guix-tests/store/1i9rb17bz35zswpdics7q5pnk8hd6m66-procps-3.3.16.drv /tmp/guix-tests/store/xwdwvpgbkqk0afqnmn8vyivgr137305i-procps-ng-3.3.16.tar.xz.drv /tmp/guix-tests/store/23k5bd2sk1mlimyvv2hvihbki4i8j8cl-guile-gcrypt-0.3.0.drv /tmp/guix-tests/store/lcfbv652p20b6rcm3w61z1dg3bi4z94q-guile-gcrypt-0.3.0-checkout.drv /tmp/guix-tests/store/27ic97iwcqsqcmrhj67lx16j8wi3x0qz-grep-3.6.drv /tmp/guix-tests/store/h15q26zy0r6f9jskz77bybi08myqliv0-grep-3.6.tar.xz.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/hvih1zpzxk0mj9qpfwh02cxn0cn9zwj9-pcre-8.45.tar.bz2.drv /tmp/guix-tests/store/2gvqyn8k7ywbkc3fqhwkzqjgvfcn6bds-e2fsprogs-1.46.4.drv /tmp/guix-tests/store/60ajy8fhp2pfznlx5ippk3y5lh05rqgg-e2fsprogs-1.46.4.tar.xz.drv /tmp/guix-tests/store/2hm1x5jxgiyjc3kazz5bfsayl9lvd6q6-wireless-tools-30.pre9.drv /tmp/guix-tests/store/21gv30k4s1czzskzwwbvbsymlph0kj56-wireless_tools.30.pre9.tar.xz.drv /tmp/guix-tests/store/h2ck7l3mz3mr3qs168y7lxr3psgrr52z-wireless_tools.30.pre9.tar.gz.drv /tmp/guix-tests/store/3m7dfgmlw64rqsn3wghs0iz5f4353hdd-guile-zstd-0.1.1.drv /tmp/guix-tests/store/ghmy8vjyc8r3yjkz4daczs351s4635ml-guile-zstd-0.1.1-checkout.drv /tmp/guix-tests/store/40mp2k0naxpiapiq8dz8pzkhxcvvzx65-findutils-4.8.0.drv /tmp/guix-tests/store/kwlld6yi8abb567a1s52z11ravaiz3yn-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/63wvgyi3jk3aa3vbbhx14cbqnqivxh0n-bash-completion-2.8.drv /tmp/guix-tests/store/rws4frwzrw3fwd8nk53axbxjjbwsim5j-bash-completion-2.8.tar.xz.drv /tmp/guix-tests/store/x5mynqylgv1vrs9gmf63dfdih7n63q0w-bash-completion-2.8.tar.xz.drv /tmp/guix-tests/store/6lsh62vk0kn2h2j78ny6samgjl69jcl2-guile-avahi-0.4.0-1.6d43caf.drv /tmp/guix-tests/store/jy86h73gpmiy9m60q14nq2fixjklnnls-guile-avahi-0.4.0-1.6d43caf-checkout.drv /tmp/guix-tests/store/li355kl0hi6367fjm1m0j3dkyx715hnx-module-import-compiled.drv /tmp/guix-tests/store/qqadvi6vj5hxn3i86w8nhswpl0r78z4d-avahi-0.8.drv /tmp/guix-tests/store/05mxrlvm0zl5rdhcnpncnfkwlzcccfwb-avahi-0.8.tar.xz.drv /tmp/guix-tests/store/kv5zjaqcw6m0dsqb6d1ifpsp6iza8mx7-avahi-0.8.tar.gz.drv /tmp/guix-tests/store/63hzg9lj4qbc0yzjcqldmkj0l5x4brjm-libdaemon-0.14.drv /tmp/guix-tests/store/cizg1dvmf4l2n1vyr2p9rdi1hc0g8m1f-libdaemon-0.14.tar.gz.drv /tmp/guix-tests/store/akwd6b9vagad50v50plfa2j7q1mh6h0z-glib-2.70.0.drv /tmp/guix-tests/store/22qy2xj02x5al8jxzq6i5zqcwfsx29yi-meson-0.60.0.drv /tmp/guix-tests/store/9mn0kdb31jrchnp3zzgnvmgzcm1cd7ij-ninja-1.10.2.drv /tmp/guix-tests/store/lg5j257z460kqn5y2zpq9095qpyvvdx8-ninja-1.10.2-checkout.drv /tmp/guix-tests/store/gkxhhd51vbqrrv4x3bycsy2k12f5d0fm-meson-0.60.0.tar.xz.drv /tmp/guix-tests/store/jv39rkg0s8lmmag8r5x30mai1x5136r6-meson-0.60.0.tar.gz.drv /tmp/guix-tests/store/j4rdkmgmv5gf07mh13q2p8sizfqi0zcx-module-import-compiled.drv /tmp/guix-tests/store/2r6rbqbvgqi0msmajqz1ylv3hgv18p2r-libelf-0.8.13.drv /tmp/guix-tests/store/jxrg02rgaymp91llhihyygvj2mnar895-libelf-0.8.13.tar.gz.drv /tmp/guix-tests/store/lhrcf8n28hh7a70slzcjcbwv8x876k7q-dbus-1.12.20.drv /tmp/guix-tests/store/f1pv7sj0vb1f4cff2xrlyfh5yykrvdvv-itstool-2.0.6.drv /tmp/guix-tests/store/p94shj49z9m8j2wq3jmskxvi7gbpzia9-itstool-2.0.6.tar.bz2.drv /tmp/guix-tests/store/xdi5126485gsw6mvx37vc6n5wr36yhfy-python-libxml2-2.9.12.drv /tmp/guix-tests/store/ddwzrp96zh4fch63w0n81acc65dc5n1q-libxml2-2.9.12.tar.xz.drv /tmp/guix-tests/store/igkmyldvyjb57jg0kwhjsm0ddksk700a-xmlto-0.0.28.drv /tmp/guix-tests/store/wppi02xzax3c4ivvbhhfpsn9j9j1l52m-xmlto-0.0.28.tar.bz2.drv /tmp/guix-tests/store/qvrk2k11sm7wfgzxlc7mh46lp2s5iybl-dbus-1.12.20.tar.xz.drv /tmp/guix-tests/store/43mj9x70809bvm0xds686lf0xn5id1n9-dbus-1.12.20.tar.gz.drv /tmp/guix-tests/store/w1df50wgkyql0b8sj1cn65qn1jn098kh-doxygen-1.9.1.drv /tmp/guix-tests/store/ln972qkvma2g6qwwcba09g1gmh1pamnh-cmake-minimal-3.21.3.drv /tmp/guix-tests/store/59qygq2wky37iyjq9jl39b9zgbaj6yd7-cmake-3.21.3.tar.xz.drv /tmp/guix-tests/store/pg9qr99nqpl4ibhih23dvsly9srcrird-jsoncpp-1.9.4.drv /tmp/guix-tests/store/9ksb8j9yl8y3mw76c02isd5c1zi7kgbi-jsoncpp-1.9.4-checkout.drv /tmp/guix-tests/store/4mdija5vd7149a9v9mwdmznw1pjgdfvp-jsoncpp-1.9.4-checkout.drv /tmp/guix-tests/store/np2m2v8p5hv89ffc1xd8kkjmc9x6dwvx-doxygen-1.9.1.src.tar.gz.drv /tmp/guix-tests/store/w4s80qcss3rvlnrqaznrnc9xx2b4hzhk-yelp-tools-3.32.2.drv /tmp/guix-tests/store/h3bk6giywb5dzhmlk2y3ypgzbaif1b2h-yelp-xsl-41.0.drv /tmp/guix-tests/store/63k0rqrvvqk30d2z0xha13bwid3sh5si-intltool-0.51.0.drv /tmp/guix-tests/store/i10li6jbqagg9mg77pvh813bz1zwpa1z-intltool-0.51.0.tar.xz.drv /tmp/guix-tests/store/5d6qr6jjk5nkmgsnkj73asahwa4ync42-intltool-0.51.0.tar.gz.drv /tmp/guix-tests/store/y2ndd5cyxiwy2n48a0is6vzcnwlw60fn-perl-xml-parser-2.46.drv /tmp/guix-tests/store/rrrrxprhj5v5kdxi5yf0sljhi3gndzq6-XML-Parser-2.46.tar.gz.drv /tmp/guix-tests/store/fsfrm6cpnmjalwkygqpx95afj75w3vsb-yelp-xsl-41.0.tar.xz.drv /tmp/guix-tests/store/vdcv3rxkk4dj6n06kh25fpfpk48sa42r-mallard-ducktype-1.0.2.drv /tmp/guix-tests/store/jdq6fhxdf28djx2avfwlpppq1wp8miin-mallard-ducktype-1.0.2-checkout.drv /tmp/guix-tests/store/vwfl23gk5shi4bslm74bixm45y7lajfc-yelp-tools-3.32.2.tar.xz.drv /tmp/guix-tests/store/x6vqn652f2kkdg0wx4mckn6nspqz43dd-docbook-xml-4.4.drv /tmp/guix-tests/store/0ksyjfjvnwf0rw3xq4b43khd19dnqxsb-docbook-xml-4.4.zip.drv /tmp/guix-tests/store/lw3vp2q5gazfwjnfh9f5i9mxyrsaqjh6-glib-2.70.0.tar.xz.drv /tmp/guix-tests/store/dwqa9sp2cs7sphy7psa1sspw8zyqs0yz-glib-2.70.0.tar.xz.drv /tmp/guix-tests/store/na8q08f52nzbhfq7k420yjbpbvcws9d1-module-import-compiled.drv /tmp/guix-tests/store/jvdj9bd8wdw01qvsh6cwlznfwg1xmf3f-libevent-2.1.12.drv /tmp/guix-tests/store/w358xfjmb9w4ny9bd4p2rl0lf8smqp13-libevent-2.1.12-stable.tar.gz.drv /tmp/guix-tests/store/6mfsxnxizis59daqirwwfijhqhbdvn7j-wget-1.21.1.drv /tmp/guix-tests/store/01avib9v6ryk2hqanbs7y4ln5k1a301v-perl-net-ssleay-1.88.drv /tmp/guix-tests/store/y2s3s7lii6lhznvsznzhq4f8mfsvwvlb-Net-SSLeay-1.88.tar.gz.drv /tmp/guix-tests/store/1953wjqf3sw2lwc7x207rnhy4pkp8bzd-libpsl-0.21.1.drv /tmp/guix-tests/store/npx78j0nqw43j8h6gkx5v8q537x0zkm9-libpsl-0.21.1.tar.gz.drv /tmp/guix-tests/store/4q65h7xhy8kbkzj30s7rh1s8nlggf259-perl-uri-5.05.drv /tmp/guix-tests/store/mxnkl5rzx474bzfqh5i6p89d3f60k7ps-URI-5.05.tar.gz.drv /tmp/guix-tests/store/rk3pc5h676kyn657malaykjjjvzc1wk7-perl-test-needs-0.002009.drv /tmp/guix-tests/store/dd45gmkf8hkmw6cr5qy1m1hsz2m48qn7-Test-Needs-0.002009.tar.gz.drv /tmp/guix-tests/store/6k1m77xqsh752q5fa6v5nk9amfvlsxhr-perl-io-socket-ssl-2.068.drv /tmp/guix-tests/store/qmfh434pi0c69swdbjz9wlfgksqhh7m6-IO-Socket-SSL-2.068.tar.gz.drv /tmp/guix-tests/store/8hrzpc4pywrdb5098f74frg4yrkwc985-perl-http-date-6.05.drv /tmp/guix-tests/store/sqg1rxy4x3l5hpmp20ciacx0ixcy6fpg-HTTP-Date-6.05.tar.gz.drv /tmp/guix-tests/store/cpcnsdnsdrq8djdv29f53qgw98lll49r-perl-lwp-mediatypes-6.04.drv /tmp/guix-tests/store/252bgkdf5826m39sg6p5ir6lzlz1dm6w-LWP-MediaTypes-6.04.tar.gz.drv /tmp/guix-tests/store/9wsfba3n6cgwrnyd0nk7rb6p30qj7vra-perl-try-tiny-0.30.drv /tmp/guix-tests/store/7kp5adkbkzgsw1k1hfyd21m6pamr4waj-Try-Tiny-0.30.tar.gz.drv /tmp/guix-tests/store/msmy7w894jb3rbwdjmqb829l4p5jrqg4-perl-test-fatal-0.014.drv /tmp/guix-tests/store/5v0pk6x5ryq2pr9qpmmvqp2cn7vbnw0r-Test-Fatal-0.014.tar.gz.drv /tmp/guix-tests/store/fa76fa752fsm2v4ylin9rh52d2chn4mn-perl-io-html-1.00.drv /tmp/guix-tests/store/1w2ps966mwp7y09qyqwacwyhal6mr8n3-IO-HTML-1.00.tar.gz.drv /tmp/guix-tests/store/i4ysglrmbga9xbj7aiq5v0hif8dw2l1a-perl-http-daemon-6.01.drv /tmp/guix-tests/store/gg97lch2yfiqd3r65jkn00riq9hq9z5q-HTTP-Daemon-6.01.tar.gz.drv /tmp/guix-tests/store/jdaymicps378ky4drdmzw8xdln0mn481-perl-http-message-6.18.drv /tmp/guix-tests/store/pvkhl924lzyvbb5d8s10smjizipggfdf-HTTP-Message-6.18.tar.gz.drv /tmp/guix-tests/store/zrzvkl33h6gfj7m2w8v04ib39lpdz1mc-perl-encode-locale-1.05.drv /tmp/guix-tests/store/jxjn1n3s55g3i068gc7vqp2vqg6bk1pm-Encode-Locale-1.05.tar.gz.drv /tmp/guix-tests/store/q7xl9i21gpwsg5n3af4mjg7yp1wjyp50-wget-1.21.1.tar.lz.drv /tmp/guix-tests/store/7dn7yzsc72spw0lvr7f5h42nkkgq3jib-nano-6.0.drv /tmp/guix-tests/store/gzsiy44bjlzvqlikwf784ahs5ddcgda8-nano-6.0.tar.xz.drv /tmp/guix-tests/store/7qc6clvvrd2vwmrk57bgnk7c86kckv8h-guile-bytestructures-1.0.10.drv /tmp/guix-tests/store/z95qj605zqwkdjk763wby0j34kqrwzbh-guile-bytestructures-1.0.10-checkout.drv /tmp/guix-tests/store/9qjk58067ri761nrw8n58y2cb1zl5nm4-isc-dhcp-4.4.2-P1.drv /tmp/guix-tests/store/g5vzh6a63kl79m419dmb0c3050zkm1d5-inetutils-2.0.drv /tmp/guix-tests/store/jsajnsc9fwq36pxmgyg4f7kldx4l4wdz-inetutils-2.0.tar.gz.drv /tmp/guix-tests/store/pil4h0njnpq18aav1qidghbz4fgzk0d8-sed-4.8.drv /tmp/guix-tests/store/bhj4c2q1732gkqrgdvw8kz663vssda4f-sed-4.8.tar.xz.drv /tmp/guix-tests/store/smfkla2d81jbyfgjbsmrllkn8jp39cmi-bind-9.11.36.tar.gz.drv /tmp/guix-tests/store/y8n2xdnxxhq3yx9i4gjqhm72f8jkil22-dhcp-4.4.2-P1.tar.xz.drv /tmp/guix-tests/store/68m02wgg1q5vm7x3jj3raz9fxfsmxkxl-dhcp-4.4.2-P1.tar.gz.drv /tmp/guix-tests/store/bpb10bqfavcxpmix4lw1pb8mykgalynk-gawk-5.1.0.drv /tmp/guix-tests/store/yqszk13mlq0bm6cw4xk8dfs8x5s72brk-libsigsegv-2.13.drv /tmp/guix-tests/store/cnw03bpim0dmbp6kvnsqgw0rm1b2wk60-psmisc-23.4.drv /tmp/guix-tests/store/08simppg2pdjj3fa5vj5z2jr4nsshdfd-psmisc-23.4.tar.xz.drv /tmp/guix-tests/store/cz7npp4iaygyfnn0rn9nxzz48s3pac7a-iw-4.14.drv /tmp/guix-tests/store/87mnm374vq13lsyxnklhlqk3clh12w5p-libnl-3.5.0.drv /tmp/guix-tests/store/00869marixcrqj5axm0bm3by8nxh1pd9-swig-4.0.2.drv /tmp/guix-tests/store/64vl8sv5q10x0wx5qz2yr1a966grs27k-boost-1.77.0.drv /tmp/guix-tests/store/6wf8ybg4ad5ndbsykaffzyrifh4rjxj6-boost_1_77_0.tar.bz2.drv /tmp/guix-tests/store/ahxbd7r4pwpz7plklqq9jr1rk48xv3zl-tcsh-6.22.03.drv /tmp/guix-tests/store/glxl883f74gazyldc9rjzqcnh1qgb1xk-tcsh-6.22.03.tar.xz.drv /tmp/guix-tests/store/5ggczxi2i04vd81yh42v7sg0lr0bv5fs-tcsh-6.22.03.tar.gz.drv /tmp/guix-tests/store/mwgh318v1ma3idnj3l4vsbn71yh9rkhx-icu4c-69.1.drv /tmp/guix-tests/store/97bz00wrbbwn79skw5m5a22qz7hwrrlg-icu4c-69_1-src.tgz.drv /tmp/guix-tests/store/sdw1p14wrcjqjz0r3jmsywy0lh3nms0r-swig-4.0.2.tar.gz.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/ixby5dqrz40a1kvm0hbvbiannz4fdl8f-libnl-3.5.0.tar.gz.drv /tmp/guix-tests/store/jycsgdab94fq1x9ll5lmk1jkcgd409sx-libnl-doc-3.5.0.tar.gz.drv /tmp/guix-tests/store/v9nnd7qj0ikm0jd20rwjsghz9rrnnkk9-iw-4.14.tar.xz.drv /tmp/guix-tests/store/dskvmzxj8js5bgliqb0y55v1bplzy78p-glibc-utf8-locales-2.33.drv /tmp/guix-tests/store/k7xjyqm9krkbv9qvw87z7dcwnc828lgn-glibc-2.33.drv /tmp/guix-tests/store/4978fq5br4v48dk27vk71yllddnn3kzm-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/kbwm91cmwawdj4cr3cwfkwxpfpjgg0ml-bash-static-5.1.8.drv /tmp/guix-tests/store/zjsnvvk557wmb5w2i962mq60fynrk6jz-linux-libre-headers-5.10.35.drv /tmp/guix-tests/store/f1jvl67m012mpcvnwmq3zcnw8ldvbsyp-mcron-1.2.1.drv /tmp/guix-tests/store/52qw4jxc97diz360jlbhqjwyrsvxxv0a-mcron-1.2.1.tar.gz.drv /tmp/guix-tests/store/f6qwlxh95h8kspn0c8rf7qlmzf1d570m-mg-20210609.drv /tmp/guix-tests/store/jlfzl42fs15znvh7bjsjkzb4j7hiy3vn-diffutils-3.8.drv /tmp/guix-tests/store/ksqy4pgivydykas6p5vr55vhm85ywlp4-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/npmm1196qbjwzi9n0kyzjd0ggv0c1lib-mg-20210609-checkout.drv /tmp/guix-tests/store/pphf5gq1nspncfvlbz04yq7b6nj4f965-mg-20210609-checkout.drv /tmp/guix-tests/store/fpmwwkafs0ppcp478m82vsk4qbqb6bxl-pciutils-3.7.0.drv /tmp/guix-tests/store/p8bzhrqn88y4v6sysrkpld645vnv3mf1-pciutils-3.7.0.tar.xz.drv /tmp/guix-tests/store/7zj0chwvkz7bgkhvji1q7khz6538z2gv-pciutils-3.7.0.tar.xz.drv /tmp/guix-tests/store/fv1ln5rj47mlqq73180h9m08c3ia14c3-guile-git-0.5.2.drv /tmp/guix-tests/store/16bfl9b4p7flj0yydzy9gk6rqprc62p5-libgit2-1.3.0.drv /tmp/guix-tests/store/faq7i03czy6h6mm4r7lsqb66b1dd7rbl-libssh2-1.9.0.drv /tmp/guix-tests/store/sc0g4yp60knb191j626s8w8ch8izq8qr-libssh2-1.9.0.tar.xz.drv /tmp/guix-tests/store/xpzp6f37h255rhp2cv4ymcl3j94ay9v5-libssh2-1.9.0.tar.gz.drv /tmp/guix-tests/store/kkbd2js27kxhfgkj29vsw7jkk8sz1m9y-pcre2-10.37.drv /tmp/guix-tests/store/19qkl32ja8ib1a7lsh4gwrj37drcrp4j-pcre2-10.37.tar.bz2.drv /tmp/guix-tests/store/rwnrwvajwlphc2mszywvrbncwbjaw0kz-libgit2-1.3.0-checkout.drv /tmp/guix-tests/store/fnfhqmvxkgcmchkz8kh03n7xbs7dhdbw-libgit2-1.3.0-checkout.drv /tmp/guix-tests/store/xlndcmn1i91dlrccxxac31iaj1r2msqq-http-parser-2.9.4-1.ec8b5ee.drv /tmp/guix-tests/store/fijh42jbpl81hxbzvxnk7ffyacm457zg-http-parser-2.9.4-1.ec8b5ee-checkout.drv /tmp/guix-tests/store/cxf51006n7d0c21skq3aswfnjg7l6zg0-http-parser-2.9.4-1.ec8b5ee-checkout.drv /tmp/guix-tests/store/k8gr1hl42xfv4b36355r37yz841dw4qx-0001-url-treat-empty-port-as-default.patch.drv /tmp/guix-tests/store/bz7d9qwsmal6099r8dizwj9km37dm7xd-guile-git-0.5.2-checkout.drv /tmp/guix-tests/store/w5w120h3a0hzjahcbasg2q24q30nhag5-guile-git-0.5.2-checkout.drv /tmp/guix-tests/store/g17zvd9vf2yyadylx3v4ic4c1wm2l5kz-guile-readline-3.0.7.drv /tmp/guix-tests/store/g8r5k2ws8v7ysy0j7s1bk7zhzgj2siqz-kbd-2.4.0.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/8b9skn33p8x39l70ypvpw464gm8hik82-kbd-2.4.0.tar.xz.drv /tmp/guix-tests/store/r8iwyrjc5f2pkr7xjvvxps1fi8w62bqq-kbd-2.4.0.tar.xz.drv /tmp/guix-tests/store/g98b81dhda9q4gbqbfzjd14dy37f0qan-guile-ssh-0.13.1.drv /tmp/guix-tests/store/h2g0wf0p18lwmrpm5v8ah44xgw0n4sd1-libssh-0.9.6.drv /tmp/guix-tests/store/01ymca8l0xg5149nncyc8wb64123p5f0-libssh-0.9.6.tar.xz.drv /tmp/guix-tests/store/kymj24blqlkmgvp42255kn7y526q7x0b-guile-ssh-0.13.1-checkout.drv /tmp/guix-tests/store/3h9fajz0hyjicpjcx3x6kr39w4b4jw7v-guile-ssh-0.13.1-checkout.drv /tmp/guix-tests/store/glj6vpavn6hsq4mn6mv4ljajrwphhpnd-less-590.drv /tmp/guix-tests/store/yccr1pc9hpqqk14mfasvcppqj4cl04as-less-590.tar.xz.drv /tmp/guix-tests/store/madpyki5i3q3r4sh9sdivm7db8nhydkc-less-590.tar.gz.drv /tmp/guix-tests/store/jf7imq8fj831wfmp8x89cswxq1vnp2h8-util-linux-with-udev-2.37.1.drv /tmp/guix-tests/store/jm3jb8p39zaf6dimvgdlsqbsbq5x5rb1-guile-colorized-0.1.drv /tmp/guix-tests/store/1mi82141ikz1qv34bhrsh23dga5ml303-guile-colorized-0.1-checkout.drv /tmp/guix-tests/store/k1xws21mxn355ck2jjmdvdy0wlqnwy5l-guix-icons-0.1.drv /tmp/guix-tests/store/45pic93zs22dvh7kncbl30czrqmgaqkz-module-import-compiled.drv /tmp/guix-tests/store/666b3184y9jlxm2b6b64k2q08nqc1b15-guile-rsvg-2.18.1-0.05c6a2f.drv /tmp/guix-tests/store/6nnsb5ij49hqrb38j1xzd51mkignsygs-cairo-1.16.0.drv /tmp/guix-tests/store/1vwqa9dkwhggp5i5c6f4r5mhrm9jnr05-libpciaccess-0.16.drv /tmp/guix-tests/store/1633zavvypdlxn33xscws5dixkxk2xvj-libpciaccess-0.16.tar.bz2.drv /tmp/guix-tests/store/2cz4hv6dgp1l25c4jjvrq0afbrbcma0s-gobject-introspection-1.66.1.drv /tmp/guix-tests/store/49i46bq4kmzasvkl55d2a7is0p5ygf8h-gobject-introspection-1.66.1.tar.xz.drv /tmp/guix-tests/store/wpk723agq2ywwsnrpjpfsllid19y9547-gobject-introspection-1.66.1.tar.xz.drv /tmp/guix-tests/store/6f82h68g03inanl5236x60vil6j76awg-libdrm-2.4.107.drv /tmp/guix-tests/store/8sx78yf9lfd5nx3f1yl4bbb271vxilqj-libdrm-2.4.107.tar.xz.drv /tmp/guix-tests/store/950nfjl37002pjyxkzmb003mq5xlix6z-libspectre-0.2.9.drv /tmp/guix-tests/store/p3nbj46s3pa9m8jpmq570jd0dfssb8h6-libspectre-0.2.9.tar.gz.drv /tmp/guix-tests/store/a551rjad05wa1j4fa6f6ria10w7wkzqg-module-import-compiled.drv /tmp/guix-tests/store/bb84qa9qwh8qgglq969nm40kgh7l8z7g-pixman-0.40.0.drv /tmp/guix-tests/store/2kppbr9qf9m8wjr4hnfmlwww2bp85xy9-pixman-0.40.0.tar.xz.drv /tmp/guix-tests/store/ig0j6nwczg9jl5xn2bvi9bczy71z00za-pixman-0.40.0.tar.gz.drv /tmp/guix-tests/store/qwhkcj6gifhipdx0bykh8k508iv20wv0-cairo-1.16.0.tar.xz.drv /tmp/guix-tests/store/5rl93jh93l4lk72ayjkvy9pk1k9q5wvp-cairo-1.16.0.tar.xz.drv /tmp/guix-tests/store/rxws90r8xdblf9zm6v85k5gnb72sjwag-poppler-21.07.0.drv /tmp/guix-tests/store/0gdx1ggq4bdvyzbiprl8akbx0qfag00f-lcms-2.12.drv /tmp/guix-tests/store/id06kx2lmfyzwygvai01njzgdpvgxmgi-lcms2-2.12.tar.gz.drv /tmp/guix-tests/store/6lnqgvpwjxlc0mdc3wnys6zvylpzy571-cairo-1.16.0.drv /tmp/guix-tests/store/8i18wrimi8q61nrvf3ldf3fir1m5kgjc-openjpeg-2.4.0.drv /tmp/guix-tests/store/2zjfjys3k0nbwmsnwzmm1hdg4n8kg5cb-openjpeg-data-2020.11.30.drv /tmp/guix-tests/store/dhvvb83w2mlqflgvy1600sicnn4ny7gm-openjpeg-data-2020.11.30-checkout.drv /tmp/guix-tests/store/z73n3cdwj0jbw5frn2jffyai2nzb6pld-module-import-compiled.drv /tmp/guix-tests/store/54nawf3lmxbipflmpwzb0zwpkan6zpkh-openjpeg-2.4.0-checkout.drv /tmp/guix-tests/store/pjrd3y75k6s05mcvacawa1d1hjaqhiz6-poppler-21.07.0.tar.xz.drv /tmp/guix-tests/store/akwd6b9vagad50v50plfa2j7q1mh6h0z-glib-2.70.0.drv /tmp/guix-tests/store/cpb9gxknn6zdszgwfmr2lplkrbpq2mmy-shared-mime-info-1.15.drv /tmp/guix-tests/store/849616pvharfhc6r4p8kflz647d4mm3b-shared-mime-info-1.15.tar.xz.drv /tmp/guix-tests/store/knz970wh9br51388mhnrfj0lfa7xfkdl-guile-cairo-1.11.2.drv /tmp/guix-tests/store/i1zcl2pd4r8agw87xa2hhzj7jzfjdp3h-guile-cairo-1.11.2.tar.xz.drv /tmp/guix-tests/store/psqszs75zic5lxkw9nf654xmajg6pq81-guile-cairo-1.11.2.tar.gz.drv /tmp/guix-tests/store/w5g9vfpwj4n5kg5ay3b3wzac34zxhria-guile-lib-0.2.7.drv /tmp/guix-tests/store/sqq1f975w3mv5mhripygm7mf8qpingcp-guile-lib-0.2.7.tar.gz.drv /tmp/guix-tests/store/l9ywwqvvdzwyf244618hprsclq2wazbj-librsvg-2.40.21.drv /tmp/guix-tests/store/0r7iyfdx2njcgqi4bsbgrncn0xmf58pr-libgsf-1.14.47.drv /tmp/guix-tests/store/scqlzp3wrmjxiiwqvd6z5vz10gskny78-libgsf-1.14.47.tar.xz.drv /tmp/guix-tests/store/x3yfjx440ziw2afiykklvczhbvcn1hfk-docbook-xml-4.5.drv /tmp/guix-tests/store/y7p9gwd0l4d1ljbb5arp3fc9gqbyh4f3-docbook-xml-4.5.zip.drv /tmp/guix-tests/store/xwgkkzn7v0lfjc5vjj5nbk73rfn74h9b-gdk-pixbuf-2.42.4.drv /tmp/guix-tests/store/6ms48d12d6h6p4mlbvy2pc92z7k59mag-gdk-pixbuf-2.42.4.tar.xz.drv /tmp/guix-tests/store/jv424rnsi01kjqrq04970gpk5cnqihw7-docbook-xml-4.3.drv /tmp/guix-tests/store/rym91smpacy7q9m2vlr0n23znr84lxq4-docbook-xml-4.3.zip.drv /tmp/guix-tests/store/518rx93g9y0dq7mbwhdpr0dqyzxcd0bl-libdatrie-0.2.13.drv /tmp/guix-tests/store/cqp8x0bnpjkxiy949h7c5kyivyrj8s4k-libdatrie-0.2.13.tar.xz.drv /tmp/guix-tests/store/8i3kns3w97qgixhn4q7wb5n6yjyvy8sp-pango-1.48.10.drv /tmp/guix-tests/store/b1a1ndzgxjc5r856wqkp0m65yczvdy39-harfbuzz-2.8.2.drv /tmp/guix-tests/store/frbfs7dcw5rkrmny4iwxyv6s3whq8paa-harfbuzz-2.8.2.tar.xz.drv /tmp/guix-tests/store/wgjj3bjv2gx0xdml240cpj0ws558y29m-graphite2-1.3.13.drv /tmp/guix-tests/store/3vlz4jvai3ijrg5y196y528fkwfgzx6s-graphite2-1.3.13.tgz.drv /tmp/guix-tests/store/j02az1xlma527fwlnjq1h668q3y8vl3l-python-fonttools-4.6.0.drv /tmp/guix-tests/store/1d43ppzhvv8ss51649knyyqqiy50zl0m-python-pyparsing-2.4.7.drv /tmp/guix-tests/store/2mjimlk8rz6yb79r9qbb3v2f232m9qkc-pyparsing-2.4.7.tar.gz.drv /tmp/guix-tests/store/1h2lyrlgj97g3n16wwhc79c7ln2l024l-python-pytest-runner-5.2.drv /tmp/guix-tests/store/4im9x2mbmjl1cn21s7l9kl29kn5wmw0j-python-six-bootstrap-1.16.0.drv /tmp/guix-tests/store/fz8jx0fx1i03ax2sf3c33r9y069ixahm-six-1.16.0.tar.gz.drv /tmp/guix-tests/store/ggwznmj631clj16p3xjixh1x2yphbabg-pytest-runner-5.2.tar.gz.drv /tmp/guix-tests/store/mqg9wwykz0dmqjmm6zdh9wp5iqg9x9yw-python-setuptools-scm-6.3.2.drv /tmp/guix-tests/store/pirnb59cw9wr18ar7h2d195zhr74l3sy-setuptools_scm-6.3.2.tar.gz.drv /tmp/guix-tests/store/sklgjna5vkzr1kd9rp8czvnd3yvqlqhr-python-tomli-1.2.2.drv /tmp/guix-tests/store/72ikfq0yinwmnhiyxjwcgvzp5bwq78zn-python-flit-core-3.4.0.drv /tmp/guix-tests/store/v5qfxqkfbigl8ls0jpiki8jjzsj0fwql-flit-3.4.0.tar.gz.drv /tmp/guix-tests/store/yqplrl93igh8b2j8l3lcgkmqky2rddna-python-toml-0.10.2.drv /tmp/guix-tests/store/vgq2xxs4ami7pwd2r00f9jqzhd2a2l4r-toml-0.10.2.tar.gz.drv /tmp/guix-tests/store/c66fzdc43r5gnxm5cw2cs51swhyq3imj-python-pypa-build-0.7.0.drv /tmp/guix-tests/store/jams5qd3hs82bjqa55x7r2wqzglgcyjz-build-0.7.0.tar.gz.drv /tmp/guix-tests/store/sbn7vfhnjf0dv6vw732k2vkwf9yvjjqs-python-pep517-bootstrap-0.9.1.drv /tmp/guix-tests/store/w0cz8xk3pf2nzgibfdf3i3i3yb20hcy6-pep517-0.9.1.tar.gz.drv /tmp/guix-tests/store/w2a8nw7lpi8jv4hbp1pa0xb9gv94c56f-python-wheel-0.33.6.drv /tmp/guix-tests/store/ghnsg29srfi8xhjzq069a667zb883cfc-wheel-0.33.6.tar.gz.drv /tmp/guix-tests/store/w893c4ik91b1a8lkziqnm18i6kgbvx5d-python-packaging-bootstrap-20.0.drv /tmp/guix-tests/store/qxvrgxg6q9smn6z8nlrqrwnif93x9pww-packaging-20.0.tar.xz.drv /tmp/guix-tests/store/13xp6id4887qq28b6sc6h9wzhlkbksc8-packaging-20.0.tar.gz.drv /tmp/guix-tests/store/rla4c0kgqjcm16l79hqc54hxscai5n7k-tomli-1.2.2.tar.gz.drv /tmp/guix-tests/store/5p0bvvky448923k7fylsdzgsv8fdppww-python-py-1.10.0.drv /tmp/guix-tests/store/cvhnybips1n2cy2yaw0yfhy1ar4lqphv-py-1.10.0.tar.gz.drv /tmp/guix-tests/store/83x000x8nqk95j7xcxiswn62fzq1l8g0-python-attrs-bootstrap-21.2.0.drv /tmp/guix-tests/store/73jn0glzgd211jicb55dfp81m55k255w-attrs-21.2.0.tar.gz.drv /tmp/guix-tests/store/jknvfj1msw0c1qs0d3day2zc5244jsbq-python-more-itertools-8.2.0.drv /tmp/guix-tests/store/clv9p0c7v9l5y2v6yl9z23nl4psb6csx-more-itertools-8.2.0.tar.gz.drv /tmp/guix-tests/store/l5ghzm4xa5hp8bvrr7zk9hrmcrzk90nw-python-pytest-6.2.5.drv /tmp/guix-tests/store/2r79s4gaz7qp0310ky8ny9qzsxngl3g4-python-sortedcontainers-2.1.0.drv /tmp/guix-tests/store/4w8xkhsgjwr6xjr6jvmpcd16fxf8pfvs-python-filelock-3.0.12.drv /tmp/guix-tests/store/rmimazya2r7xxbivh7y2w5w49387abzb-filelock-3.0.12.tar.gz.drv /tmp/guix-tests/store/6wivz10hfixa5jy9788zdxcbv0l16wls-python-appdirs-1.4.3.drv /tmp/guix-tests/store/j79g0cbd6ijr44zqffdqwy4ps84wpal7-appdirs-1.4.3.tar.gz.drv /tmp/guix-tests/store/fqcnc4pm0nlpq4p9gjn23qqx8dnnns8m-python-distlib-0.3.1.drv /tmp/guix-tests/store/jv28qccm9b1byfsga3677rznvrawlgrr-distlib-0.3.1.zip.drv /tmp/guix-tests/store/ih7z1b3a6lrkrjr7zwvgq3cm0p09lhm6-sortedcontainers-2.1.0.tar.gz.drv /tmp/guix-tests/store/6hwhxayicrwk3lg9a8v2cb5nn7lvq3vv-python-mock-3.0.5.drv /tmp/guix-tests/store/acvv5nylvrrg6x6597nhybhv540gnv5m-python-six-1.16.0.drv /tmp/guix-tests/store/n6xfvp2qp1b6q8kmlxcbflgmn1vbq5ca-python-pytest-bootstrap-6.2.5.drv /tmp/guix-tests/store/6k7ji090bd9xgl89drg7mg72b38hfhmd-pytest-6.2.5.tar.gz.drv /tmp/guix-tests/store/p69x7vz4k9v8rzp07hqqznr1y7qvpi5b-python-iniconfig-1.1.1.drv /tmp/guix-tests/store/p5m9njda55z5wlahnxja3hxbd7hj1l26-iniconfig-1.1.1.tar.gz.drv /tmp/guix-tests/store/pgm55978kw09r2ymcl12wz12xaagl2ly-python-wcwidth-0.1.8.drv /tmp/guix-tests/store/w2cdb3kc9s3w00cfcir2ydlmljdb2k0r-wcwidth-0.1.8.tar.gz.drv /tmp/guix-tests/store/r8hhnw5h7n5dpyml45273ixag5vz290v-python-pluggy-0.13.1.drv /tmp/guix-tests/store/cyw49jzinnn3dysmlsff31j718p59y4s-pluggy-0.13.1.tar.gz.drv /tmp/guix-tests/store/wjdmpalck3l6df3f5ggdryhf90v4v3mj-mock-3.0.5.tar.gz.drv /tmp/guix-tests/store/9fjdiiy3rf18wgy9kw3q1n1nrs72m4s0-python-nose-1.3.7.drv /tmp/guix-tests/store/p6r6akibgmldl4rsqnm763mpsiqydmr5-nose-1.3.7.tar.gz.drv /tmp/guix-tests/store/cc907ag3kvv1qanzfzn512qxq4i5dabp-python-xmlschema-1.2.5.drv /tmp/guix-tests/store/16lzr4lakg8cdcjmif35jf0wknybf41q-python-xmlschema-1.2.5-checkout.drv /tmp/guix-tests/store/fybsdvq2d2vwm6k7jlk26k8nivbngp0n-python-elementpath-2.0.3.drv /tmp/guix-tests/store/yqynjpjmk3gndv32p4j54nx3zg3l1qdf-elementpath-2.0.3.tar.gz.drv /tmp/guix-tests/store/k841ad1fk364xn2i28457377x67aii3v-python-lxml-4.6.3.drv /tmp/guix-tests/store/kgll9h1rj15ja2k4wlikww4jnl2vh1yd-lxml-4.6.3.tar.xz.drv /tmp/guix-tests/store/rv5z8vvw51i198jfqmyn1nbmj1y9zhzz-lxml-4.6.3.tar.gz.drv /tmp/guix-tests/store/wvk1hnlgjljijvsiv7jqcn5w6kry8jpa-python-hypothesis-6.0.2.drv /tmp/guix-tests/store/g14wbkgrq2d5dxxk544s8s6qxpi00xkn-hypothesis-6.0.2.tar.gz.drv /tmp/guix-tests/store/rchdn7fkqzhkhyhc3vc16qfr8xr5lw4w-fonttools-4.6.0.zip.drv /tmp/guix-tests/store/bz0fz8qvgpd72zjnzpz5km09hdbzx2wn-libthai-0.1.28.drv /tmp/guix-tests/store/3cw20nvvzakssdrhiilwp0l0a7qwn6dz-libthai-0.1.28.tar.xz.drv /tmp/guix-tests/store/d5kih80xiplf7cmnslqgdyzcj8frn4zy-fribidi-1.0.9.drv /tmp/guix-tests/store/dd8n4rcqdlw1swx78ww2hyci13qci8lm-fribidi-1.0.9.tar.xz.drv /tmp/guix-tests/store/qb1nsf5jahi9444ng6g0navi9agsaskk-pango-1.48.10.tar.xz.drv /tmp/guix-tests/store/dy6hd89lb65wqf97wn6768pcs0yjfvvb-pango-1.48.10.tar.xz.drv /tmp/guix-tests/store/hm5p7xl3ad97k70nqp9ydij4da2l31zk-libcroco-0.6.13.drv /tmp/guix-tests/store/03ddw7xmnib10zap1z2nyn9fpqpv8wmz-libcroco-0.6.13.tar.xz.drv /tmp/guix-tests/store/6cvwsd8snmnc25606gfvdmw7gf0c6l83-libcroco-0.6.13.tar.xz.drv /tmp/guix-tests/store/s21fp4h91fgjg1n2jmrjwmdkd5ijz05h-librsvg-2.40.21.tar.xz.drv /tmp/guix-tests/store/sxi5wqkgj4v0w92rdfglk4fpld1dh2lr-guile-rsvg-2.18.1-0.05c6a2f.tar.xz.drv /tmp/guix-tests/store/rfy46yh6r8lza6l20qyhjkw1pd2lwm0h-guile-rsvg-2.18.1-0.05c6a2f.tar.gz.drv /tmp/guix-tests/store/d2qcs74lib84ayjbx0kdbnnnrcndc7y4-imagemagick-6.9.12-4.drv /tmp/guix-tests/store/0zgpdz9ygz4sli5wwd429mnkd426ac4s-graphviz-2.49.0.drv /tmp/guix-tests/store/5myq09qf466wka0b5fzpfmcvcikq2300-libxaw-1.0.14.drv /tmp/guix-tests/store/9ah006xxmdjr2hc9srmfnh55x0xslyn9-libxpm-3.5.13.drv /tmp/guix-tests/store/c81ixkb0abyckywhfmnp3966i2fnz40y-libxt-1.2.1.drv /tmp/guix-tests/store/h6yxfd4fm8zsvyygb3zzvna8hsys6536-libice-1.0.10.drv /tmp/guix-tests/store/l0ydvipidjilav2xkfc9d8x593scp7xh-libICE-1.0.10.tar.bz2.drv /tmp/guix-tests/store/mp66vbanf751fr8xslddhwsh9sw9jlwj-libsm-1.2.3.drv /tmp/guix-tests/store/7ir6rvz3ijm3bi7d6hyrnkpzxa3nibgg-libSM-1.2.3.tar.bz2.drv /tmp/guix-tests/store/pspndz27fi9lr0m7nafmbyy0vg44xsdf-libXt-1.2.1.tar.xz.drv /tmp/guix-tests/store/2jja5ci203vghx0g9va4wfak90rdjwfw-libXt-1.2.1.tar.bz2.drv /tmp/guix-tests/store/s97ngr3x783qxh2yk03lkjhka4vj0dqk-libXpm-3.5.13.tar.bz2.drv /tmp/guix-tests/store/gagrzik18ii9w65j4ki8zchcrx97i9dd-libXaw-1.0.14.tar.bz2.drv /tmp/guix-tests/store/wlpmac7biws74w8gfs4fd1bab65rg535-libxmu-1.1.3.drv /tmp/guix-tests/store/3qh8q3j64dfcdkscrmfspary1h0s4rk7-libXmu-1.1.3.tar.bz2.drv /tmp/guix-tests/store/kx2igpxh0yn94klc72w5q0j3iyaibfk6-gts-0.7.6.drv /tmp/guix-tests/store/7wdbwbs2lmq4ljp29kvj3n89lwlyhdbv-gts-0.7.6.tar.gz.drv /tmp/guix-tests/store/wj2wwpcgvsw0rljdwkjwgadqsrjiqqgx-graphviz-2.49.0.tar.xz.drv /tmp/guix-tests/store/xa7r2qdzcyl4mavpigr3jdf8bxpfxr27-gd-2.3.2.drv /tmp/guix-tests/store/wij1b56irx5hfbpc65l1fyyid7w4zlfx-libgd-2.3.2.tar.xz.drv /tmp/guix-tests/store/kjcf53firqwhmaah3ih1cwkkm6qk76mi-libgd-2.3.2.tar.xz.drv /tmp/guix-tests/store/ganfj86w0mwg26wf178k3k7fn3a31gii-ImageMagick-6.9.12-4.tar.xz.drv /tmp/guix-tests/store/7pivcm45q4hw5jra2jpgbi4qd5ssipp8-ImageMagick-6.9.12-4.tar.xz.drv /tmp/guix-tests/store/is2i0k7647r82lav7n4l117alz5l5kcs-fftw-3.3.8.drv /tmp/guix-tests/store/13x9yk166is9c0kyq5mb9qw72krngnxm-fftw-3.3.8.tar.gz.drv /tmp/guix-tests/store/rdc732dgcpdp087ycy1j9rxvp8xg8n60-guix-artwork-2f2fe74-checkout.drv /tmp/guix-tests/store/yxaka5dzh5kh3zlpjkvrziib7lv5jhxa-guile-lzlib-0.0.2.drv /tmp/guix-tests/store/258q9gcnija62sq31aqiflkvlzr1227s-guile-lzlib-0.0.2.tar.gz.drv /tmp/guix-tests/store/xgv6x1w0p18xidfkvd8skb1ksvpwln8j-lzlib-1.12.drv /tmp/guix-tests/store/6xijr98z01455mpp61fdcb6rrd7ivgfv-lzlib-1.12.tar.gz.drv /tmp/guix-tests/store/yyjr2rikcc16qvb2anc60jfv7f8k3f82-guile-sqlite3-0.1.2.drv /tmp/guix-tests/store/i9vlr1isl4chnqcyqr031bvzcv2vzw83-guile-sqlite3-0.1.2-checkout.drv /tmp/guix-tests/store/mc3gnkfpjwnglbs46ka049kl8ghnzmd4-patch-2.7.6.drv /tmp/guix-tests/store/0yaz8903406bdjggf3qci4xfl3v9v1vw-ed-1.17.drv /tmp/guix-tests/store/pksym19g14alxabzbvkvdvbhdbmii5rf-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/rkkpd7b5xklw29fxsxnfb3ajdv8yfzj4-man-db-2.9.4.drv /tmp/guix-tests/store/3qvn6zj3apw6vnprlj7akinpwzz1ky5x-man-db-2.9.4.tar.xz.drv /tmp/guix-tests/store/f1w548d30n4p6zjd573aw5vlvxzkflwz-libpipeline-1.5.3.drv /tmp/guix-tests/store/mhpl6hr81nh5hc3nz8fmszf44aq2s52d-libpipeline-1.5.3.tar.gz.drv /tmp/guix-tests/store/gy4ky336kyffswp0864rnzm12j7lbcgx-groff-minimal-1.22.4.drv /tmp/guix-tests/store/rmcpxjv7lz78alzgsa3nspqqggjkxy02-info-reader-6.7.drv /tmp/guix-tests/store/sd3cwl4rq49ci499hpxhkgvixr1yz01s-shepherd-0.8.1.drv /tmp/guix-tests/store/gk3x735dci3qaw541pl9l90z0f5w248b-shepherd-0.8.1.tar.xz.drv /tmp/guix-tests/store/xpcy4xvdh1psxz8s6rfa26hffblgykvs-shepherd-0.8.1.tar.gz.drv /tmp/guix-tests/store/y3b6ydmh2hdj6nqh227fpj8888d2c3xc-guix-1.3.0-16.10ceb3e.drv /tmp/guix-tests/store/63ckcgkk5ijfa36g3dyhmlmnrk7abgmc-po4a-0.63.drv /tmp/guix-tests/store/04kg0x46kjrjhxrmwqddd0kmzg6yskfd-perl-cpan-meta-2.150010.drv /tmp/guix-tests/store/3xbblh9q03wkinhppx94lsyw4cznd9pq-CPAN-Meta-2.150010.tar.gz.drv /tmp/guix-tests/store/7cxa6x3fs3mb2hblvnzigjnzskmdx2ih-perl-parse-cpan-meta-2.150010.drv /tmp/guix-tests/store/gyxah97nb34z2l70ghyzgc0ypn86l5dx-perl-cpan-meta-yaml-0.018.drv /tmp/guix-tests/store/5ngr6g0iqi4dj8s27yrfybv38nqrzzz6-CPAN-Meta-YAML-0.018.tar.gz.drv /tmp/guix-tests/store/vca8zzap8k41maynsxbxna3ldmcn4gkd-perl-cpan-meta-requirements-2.140.drv /tmp/guix-tests/store/kd2gq3315fyp62vik956s13kbm05fsqn-CPAN-Meta-Requirements-2.140.tar.gz.drv /tmp/guix-tests/store/05sjz0rc22jvmbx96cs2dqxxs44sbhx8-texlive-fonts-latex-59745.drv /tmp/guix-tests/store/033x5fzq5q8vr6j13armc7r1ca4xwhdj-texlive-fonts-latex-59745-checkout.drv /tmp/guix-tests/store/7l5z7snlsga3fw2flfaffcxsyr6j5vvy-subversion-1.14.1.drv /tmp/guix-tests/store/501mancxh5qh5188h3paqs4pk4fq8b5y-serf-1.3.9.drv /tmp/guix-tests/store/66d050g2wvpnsc493993jdcr0aax2mvy-apr-1.7.0.drv /tmp/guix-tests/store/n4iifygzr0z00q0yanfn2ilr49dvdwxi-apr-1.7.0.tar.xz.drv /tmp/guix-tests/store/mvmxxxv9329799j8k90mspfb3bs9fcjg-apr-1.7.0.tar.bz2.drv /tmp/guix-tests/store/d54vkrhnid9ih38kj5ylcx9xdpzbzbh1-serf-1.3.9.tar.xz.drv /tmp/guix-tests/store/wqp9kx7a7zhkic9dyr8dd9ydn2h9p7sm-serf-1.3.9.tar.bz2.drv /tmp/guix-tests/store/j1x5mizgcj8d336yjyprmfj581jymyr6-module-import-compiled.drv /tmp/guix-tests/store/y1x2iw8b9kpg3i84x05nrg6g3iddg01v-scons-3.0.4.drv /tmp/guix-tests/store/azxdh47x6m9zyrhj44jqw3x7dwqs7dbs-scons-3.0.4-checkout.drv /tmp/guix-tests/store/z3f881dri1cf7vycm2pw02vc628cgjbf-apr-util-1.6.1.drv /tmp/guix-tests/store/ix7s1881lq6rhnwf5999ad8h8lnqggik-apr-util-1.6.1.tar.bz2.drv /tmp/guix-tests/store/9hjylqx90b24zc48i1rs87fn1laxcbaq-lz4-1.9.3.drv /tmp/guix-tests/store/5kyr84znk1llqw0hk0wfgq6pv94c90ys-valgrind-3.17.0.drv /tmp/guix-tests/store/s7njaa84r894m76jfq3gvv4k7iav4j5r-valgrind-3.17.0.tar.xz.drv /tmp/guix-tests/store/nkxjl1qkpnhh6wg6zklyf59qjk6cpx7d-valgrind-3.17.0.tar.bz2.drv /tmp/guix-tests/store/ncjw157s7k071ih8r48gvf5qjkq4skpk-lz4-1.9.3-checkout.drv /tmp/guix-tests/store/g8xy3126li96808909l5ybaxyw6wkisb-subversion-1.14.1.tar.bz2.drv /tmp/guix-tests/store/ws0j4ngxinicvp5fs0sdqmwswq7xbjrh-utf8proc-2.5.0.drv /tmp/guix-tests/store/1jxh04yx9h1a6xg6hnp37m015wfam52d-GraphemeBreakTest.txt.drv /tmp/guix-tests/store/4bnmlj9xn83mws5626hhv24n1zi78f63-utf8proc-2.5.0-checkout.drv /tmp/guix-tests/store/vmlk6mkr23fywyyz3gg19gah64nzbdb5-NormalizationTest.txt.drv /tmp/guix-tests/store/v9nimga3xxn0pf7qdl5xr51yi4z0bwk6-module-import-compiled.drv /tmp/guix-tests/store/1xw6j6c6w8dpalm826x3c5qbv9pwdqvr-texlive-metafont-59745.drv /tmp/guix-tests/store/bkri74603h5ivpi2n8z4nbas3ghs7f2d-texlive-metafont-59745-checkout.drv /tmp/guix-tests/store/z276lcx4zcvaf5z3lw3ziig3fmpxdb8b-texlive-bin-20210325.drv /tmp/guix-tests/store/5hschmgyxcc7gnm6p1pz0cpk70fbzb1s-ruby-2.7.4.drv /tmp/guix-tests/store/p0y6mj365xhh7g30m3z9vmxijik1i89s-ruby-2.7.4.tar.xz.drv /tmp/guix-tests/store/xn88a8ymv5ykrnxg3l6c9b5vzkmywiip-ruby-2.7.4.tar.gz.drv /tmp/guix-tests/store/67dbd2w2g0rnvvpxd7yshwb2fhj18cdm-texlive-20210325-source.tar.xz.drv /tmp/guix-tests/store/hagdw0vlzdsjlb9w560y280vacwa8z7m-texlive-20210325-source.tar.xz.drv /tmp/guix-tests/store/6nkf0a3rsj2sx3hjfwnahi3blivrwyhw-zziplib-0.13.72.drv /tmp/guix-tests/store/rrx87idvzsb2nsyd7c3pcdr23yb21l5b-zziplib-0.13.72-checkout.drv /tmp/guix-tests/store/fxmpyib9fp1bzlf7rprrp5b7y1shck6w-mpfr-4.1.0.drv /tmp/guix-tests/store/fzgnb4xd6nflqfb6kgnxilrb6fk3n0xz-teckit-2.5.10.drv /tmp/guix-tests/store/i4zdw3m62k1dp3i24sz7f2hrya6hs05v-teckit-2.5.10.tar.gz.drv /tmp/guix-tests/store/nrkwb1sgmxi9xl5mbb6yf91v9m5iyhfq-potrace-1.16.drv /tmp/guix-tests/store/d8dp47hxx385s5h89zrw48yfbyay6rva-potrace-1.16.tar.gz.drv /tmp/guix-tests/store/qwcsql4dlchvyqgnmn2gqzwv9888fccc-fontforge-20201107.drv /tmp/guix-tests/store/0f4v143sf9hrkqmqs5ysjazlzhzi5sh0-libxfixes-6.0.0.drv /tmp/guix-tests/store/knm8n2122bxqf1dibappak4hpcc376q2-libXfixes-6.0.0.tar.bz2.drv /tmp/guix-tests/store/9qpacnnjw43zmf85adjky00rxy4aix33-libuninameslist-20200313.drv /tmp/guix-tests/store/wbxi070izyy2s6iklq7rx6hmgs44n68l-libuninameslist-dist-20200313.tar.gz.drv /tmp/guix-tests/store/ahx9v6vhrfvaq06ac394426hsczhmx30-fontforge-20201107.tar.xz.drv /tmp/guix-tests/store/n32nvwp2h8x6h8lsb3idxq72v13v2pwj-libspiro-20200505.drv /tmp/guix-tests/store/3zbl7jx0dlw41z4z60f439zhdd5169sf-libspiro-dist-20200505.tar.gz.drv /tmp/guix-tests/store/nmp0vl6aalsnqz0pbfzgb6pqgnjvi4zf-libxi-1.7.10.drv /tmp/guix-tests/store/xpwxn95cj41w1cmv4rfh1faccw57aqpi-libXi-1.7.10.tar.bz2.drv /tmp/guix-tests/store/yk929yppgq25xj9gmdks0lmqn6x8x3ph-libungif-4.1.4.drv /tmp/guix-tests/store/cgbwr56isj6jk92na66sxchm832n0x42-libungif-4.1.4.tar.bz2.drv /tmp/guix-tests/store/rsya1dr99cz50xq76f6pbrw1nx0qpzxa-texlive-scripts-59745-checkout.drv /tmp/guix-tests/store/vwk86m4ighfxaajsn4l7682xhy2ymczv-config-0.0.0-1.c8ddc84.drv /tmp/guix-tests/store/s68h2c2i3ryhydxzf2ssblpmmxk5p66z-config-0.0.0-1.c8ddc84-checkout.drv /tmp/guix-tests/store/y361fhjx3r74hwaa76mblzywrfmlx6xg-texlive-20210325-extra.tar.xz.drv /tmp/guix-tests/store/y6kyfa9xlx9rjnzcdmyw8nvngs44bis5-texlive-cm-59745.drv /tmp/guix-tests/store/ghpaza4260x6ly1h37ba5k807gc06784-texlive-cm-59745-checkout.drv /tmp/guix-tests/store/0jh1m2pa24fc4m3vp52vnkzvjhvsa077-texlive-hyphen-estonian-59745.drv /tmp/guix-tests/store/09k9vnd7dkb19hv8dhc34glkzbidg6vs-hyph-utf8-scripts-59745-checkout.drv /tmp/guix-tests/store/0dq37vis4zy2zd99bag4i0iq78mw4a1v-ruby-hydra-0.0-0.5abfa37.drv /tmp/guix-tests/store/1ysmk5fxbscxw9n4diiy3yx5adr8dnq5-ruby-byebug-11.1.3.drv /tmp/guix-tests/store/26b4mg3jqhlihsmgm978d2c8fl49i7i5-module-import-compiled.drv /tmp/guix-tests/store/2w24j95bmgdlwvayzgq1qa7f8xadqrkp-ruby-pry-0.13.1.drv /tmp/guix-tests/store/6wji78gb9pc5xii8sk5q171hmvrb7yx1-ruby-coderay-1.1.2.drv /tmp/guix-tests/store/9kawpyx5ba9fb681q3am22zjhgg1jzg5-coderay-1.1.2.gem.drv /tmp/guix-tests/store/bh98fdf928gv0q4n0ymma8xx7330bi35-ruby-method-source-1.0.0.drv /tmp/guix-tests/store/38f3hpg9nqpf1mpry9sp75gdznss019f-method_source-1.0.0.gem.drv /tmp/guix-tests/store/9dhf047aj852m27x46nmdq4b7zsd87lf-ruby-rspec-expectations-3.8.2.drv /tmp/guix-tests/store/i8wd4c75bz0i2hindg6fn7z7rwa1i5b4-ruby-diff-lcs-1.3.drv /tmp/guix-tests/store/cqxs3af7wl5s0lwn38wvy5v6273p13pm-diff-lcs-1.3.gem.drv /tmp/guix-tests/store/ky6mah67sg1gxqla03h0206z404sa0mi-rspec-expectations-3.8.2.gem.drv /tmp/guix-tests/store/rda40n9ii53nqi64c3f81vgij23d0g6l-ruby-rspec-support-3.8.0.drv /tmp/guix-tests/store/21y62wg9lhlbjdww03p446xsvnfcams7-rspec-support-3.8.0.gem.drv /tmp/guix-tests/store/bg2j2mqwggbmba2l6rs7mvcmigj3vp14-ruby-rspec-3.8.0.drv /tmp/guix-tests/store/4y4rkfii0f69xz4dr8xblfassd1z52z3-rspec-3.8.0.gem.drv /tmp/guix-tests/store/pabv5svh0fi3qakfkm193gxc60dbp9ny-ruby-rspec-core-3.8.0.drv /tmp/guix-tests/store/8l88vbzk9l56vxqllbhf0jdvd7qzsirl-rspec-core-3.8.0.gem.drv /tmp/guix-tests/store/qcvzzkfnkyzp5z95jhyyzc2ip0ia1lxn-ruby-rspec-mocks-3.8.0.drv /tmp/guix-tests/store/6d8qa6l899fp00yhhny22skia4j07lnh-rspec-mocks-3.8.0.gem.drv /tmp/guix-tests/store/wvq32r4jcin03byw74znklr0z8qvkyw3-pry-0.13.1.gem.drv /tmp/guix-tests/store/2xh580sg6g239mjzyda0d2m4x2s71jc7-ruby-netrc-0.11.0.drv /tmp/guix-tests/store/4gvgqk1mv282ds4crvlv95jbq32smk1q-ruby-minitest-5.14.4.drv /tmp/guix-tests/store/hycy6gnkzsw8my91n1zg27jpdx6mgi9j-minitest-5.14.4.gem.drv /tmp/guix-tests/store/w2p8dj5pvjb0g4sfniwdhiv265kkby4m-ruby-hoe-3.21.0.drv /tmp/guix-tests/store/hgrxcazfldahc04f9n6sc5j6pr0nlw54-hoe-3.21.0.gem.drv /tmp/guix-tests/store/97qwpdhz5x8n3ia17599q8sy4fn21avy-netrc-0.11.0.gem.drv /tmp/guix-tests/store/6h0pvl76javnv12cw88bdz21hppya526-ruby-rubocop-1.10.0.drv /tmp/guix-tests/store/07g51pfc3kqji3qsizy1f8ivfb64h33g-ruby-bump-0.7.0.drv /tmp/guix-tests/store/8kyyav29z5rx8r0lg39ndc91gd4dpxsc-bump-0.7.0.gem.drv /tmp/guix-tests/store/30z0lizhqz6r3xqhy43i5gwbp0vhvd2n-ruby-docile-1.1.5.drv /tmp/guix-tests/store/9x16xh52jrksjdgx4qp7ii1pl2l5419m-docile-1.1.5.gem.drv /tmp/guix-tests/store/5g012b5cip9yhpcj07b946q4jh43c6g6-ruby-stackprof-0.2.17.drv /tmp/guix-tests/store/1q06r0pq2nvqdpcqdqqf8s5k0d7h5bip-ruby-mocha-1.13.0.drv /tmp/guix-tests/store/02lnrd9jma1nxl1h3fczcad93h5j23k3-ruby-instantiator-0.0.7.drv /tmp/guix-tests/store/0byv9wgigil4c80hsik820afxhpgb0ax-ruby-power-assert-1.1.5.drv /tmp/guix-tests/store/514snacixlp7g53y6ialz6z5xk0ija68-power_assert-1.1.5.gem.drv /tmp/guix-tests/store/vqjmr8l2ahknl228l319p20glq46syvs-bundler-2.1.4.drv /tmp/guix-tests/store/hvnmwp7n0dvj0dahfn42ay0g2nbwz9bl-bundler-2.1.4.gem.drv /tmp/guix-tests/store/5ac160n1w9zmk0iyn3vrhqprk3j5v03n-ruby-blankslate-3.1.3.drv /tmp/guix-tests/store/n5wa6k3fjxlqkwssyb3vcvgchg5klc6v-blankslate-3.1.3.gem.drv /tmp/guix-tests/store/s989ma6vcqcgk2pciahirrnfk9p79yy2-ruby-test-unit-3.4.4.drv /tmp/guix-tests/store/cy85lpk0k0wzhh5mn8rp4136sxdgy5ps-ruby-packnga-1.0.4.drv /tmp/guix-tests/store/kjq3j8ni1c3dk7alnj339ghqvp6mjlj8-ruby-yard-0.9.25.drv /tmp/guix-tests/store/bfcwd393pdrkkr91gjjh90nsdplpdrvv-ruby-yard-0.9.25-checkout.drv /tmp/guix-tests/store/nmjvrv4k6jxjkv98km2b8xyhigw8c87w-ruby-locale-2.1.2.drv /tmp/guix-tests/store/5a76rxgzgpiazkk8wvwalawmjlpwifbn-locale-2.1.2.gem.drv /tmp/guix-tests/store/r9vmnbr2zvy7zjqhradqnqdqcg39yd6i-packnga-1.0.4.gem.drv /tmp/guix-tests/store/v2r729q0axbk3m1nc2fq4zhr8m5cnp9i-ruby-text-1.3.1.drv /tmp/guix-tests/store/fh16xjhr77xh6hlq047kq7wmv0jb3wcz-text-1.3.1.gem.drv /tmp/guix-tests/store/yl064v4hw0kbk4al6pw7cphksqhs757a-ruby-gettext-3.1.7.drv /tmp/guix-tests/store/v0asfhwjggf98vfnvq24rydsa53mdwzl-gettext-3.1.7.gem.drv /tmp/guix-tests/store/hslnwnxxhplv5s4yybrw6a4s21la9m33-test-unit-3.4.4.gem.drv /tmp/guix-tests/store/zjb137yzvp0nmifbkfhlbj756chpr6wj-instantiator-0.0.7.gem.drv /tmp/guix-tests/store/053mv7y6n1a1hypwi1nmj4vn06gczpxj-mocha-1.13.0.gem.drv /tmp/guix-tests/store/4sk5201rg0qmp1lmljl0m222kfbqxrz7-ruby-introspection-0.0.4.drv /tmp/guix-tests/store/gimy8279zh3nw7fngwln4ik0cdk2df38-ruby-metaclass-0.0.4.drv /tmp/guix-tests/store/86w5iy89v8ccpizv14f0hck23iadqc8c-metaclass-0.0.4.gem.drv /tmp/guix-tests/store/pxxkh2xhd2q59cvq69wg77ms6c27i4b9-introspection-0.0.4.gem.drv /tmp/guix-tests/store/8dhn1zvvl8167n919bl9p92ny2nx6xw7-ruby-rake-compiler-1.1.1.drv /tmp/guix-tests/store/9pjgzxz6b3271yh5igzn1053vl1b589w-rake-compiler-1.1.1.gem.drv /tmp/guix-tests/store/js7fdhfm8z411czqx0hhmbk1i5i14333-stackprof-0.2.17.gem.drv /tmp/guix-tests/store/62dyfwxlz939skk3hdzzjr7bsax59wz4-ruby-rubocop-rspec-2.2.0.drv /tmp/guix-tests/store/pmjna5gqv7rcigy49igjshs0n3wfvn4c-ruby-rubocop-rspec-2.2.0-checkout.drv /tmp/guix-tests/store/7652z4wd9n4akn79w0cf4fb81k4l35jc-ruby-rubocop-1.10.0-checkout.drv /tmp/guix-tests/store/7fvyf1w7rv98x7ld33zavy3ywqxc2m7p-ruby-hashdiff-1.0.1.drv /tmp/guix-tests/store/0inr1a5kv6jqqqsxpwn874bs4dk49a0j-ruby-rspec-expectations-2.14.5.drv /tmp/guix-tests/store/0wpfzi41r15awjl1i972k6bhppwv2vil-rspec-expectations-2.14.5.gem.drv /tmp/guix-tests/store/bhfxf6n0qmykxnki79sk3mdninllygjd-ruby-rspec-mocks-2.14.6.drv /tmp/guix-tests/store/9874b00jaans6n95czizpm8p4myg2ppi-rspec-mocks-2.14.6.gem.drv /tmp/guix-tests/store/fh3cq8bqvbknplz5l932y45wxmh8v8qs-hashdiff-1.0.1.gem.drv /tmp/guix-tests/store/n90i8gy8xfmnm1csmli37zwz25d8bjkw-ruby-rspec-core-2.14.8.drv /tmp/guix-tests/store/f73prc25qp5s40plz26xhyyw5qxhqw1j-rspec-core-2.14.8.gem.drv /tmp/guix-tests/store/sw722sandc4q3z2q6rsr3k0jbn24zbsv-ruby-rspec-2.14.1.drv /tmp/guix-tests/store/blmgy1wml1jiywqlzm5q7g0vsm93flvq-rspec-2.14.1.gem.drv /tmp/guix-tests/store/8znqjirknqfzy0kw8qcirfy1dlcnyx6k-ruby-rubocop-performance-1.9.2.drv /tmp/guix-tests/store/qz1i3v4pfif9ki9zb56bm2ahgdpcdgay-ruby-rubocop-performance-1.9.2-checkout.drv /tmp/guix-tests/store/ak191g08768f6vkffd4862vrmwx4c70i-ruby-progressbar-1.10.1.drv /tmp/guix-tests/store/sga6ry8js1gg2jyy2ip7ah5hwyiiqgw2-ruby-progressbar-1.10.1.gem.drv /tmp/guix-tests/store/barpbg063hfrgdsi16s4dkq04i9kp6xq-ruby-parser-3.0.0.0.drv /tmp/guix-tests/store/1y38xv3z2yls22as9yh8s2lx20n4sa0i-ruby-cliver-0.3.2.drv /tmp/guix-tests/store/rj6qrzd987wm8298fzhw8fmjrpkby1qz-cliver-0.3.2.gem.drv /tmp/guix-tests/store/8mglqpwk0s8pq8hcg74wkcdp4s54jy2r-parser-3.0.0.0.gem.drv /tmp/guix-tests/store/8qm7n1ync8y0cf2fn5fq12l7xmfk8j0b-ragel-6.10.drv /tmp/guix-tests/store/i0vm7zlh5nsd7f4drlqqdhdlwqh27pw3-ragel-6.10.tar.gz.drv /tmp/guix-tests/store/gixqhdsqvp70qrzp7mrkn4hq27p4sly9-ruby-json-2.1.0.drv /tmp/guix-tests/store/knv0k9lsz5ajbfj23mgdhyyhr0hqbpgj-json-2.1.0.gem.drv /tmp/guix-tests/store/lrm0k0zfba7ilb9acpz9m4paka69nq8m-ruby-simplecov-0.17.1.drv /tmp/guix-tests/store/j6fdkjd9qzhmiwjnp7wagfb4sg2z3gnk-simplecov-0.17.1.gem.drv /tmp/guix-tests/store/pr9kr5aa0lmxpbbpfpcqvxr1s8x9ga95-ruby-simplecov-html-0.10.2.drv /tmp/guix-tests/store/jk7z42xmya0ghbpz5qql3z8ifhh84lbh-simplecov-html-0.10.2.gem.drv /tmp/guix-tests/store/p89153h77a88k9l2d2cqrxk19h7fargs-ruby-ast-2.4.2.drv /tmp/guix-tests/store/254blxdxglj3gj18bhajbssmc5axjg2x-ruby-ast-2.4.2-checkout.drv /tmp/guix-tests/store/2c857zqjak3c0xiamk2bfq6kz2iwf9x9-ruby-domain-name-0.5.20190701.drv /tmp/guix-tests/store/03khk7fhkswi7jv5yvw4pyk9hdzaqm48-ruby-tzinfo-data-1.2021.1.drv /tmp/guix-tests/store/1cmwqrzk230ym91g1znpyr1jpdfn1sib-ruby-tzinfo-data-1.2021.1-checkout.drv /tmp/guix-tests/store/fg47liyppziz4hgfl7lzbxsmj4c4n4kg-ruby-tzinfo-2.0.4.drv /tmp/guix-tests/store/7vqvi6pm10azixnafka3qz3kf1h6fmla-ruby-tzinfo-2.0.4-checkout.drv /tmp/guix-tests/store/p9rl8vc22dx7pddkhkagiddyx766953n-ruby-concurrent-1.1.5.drv /tmp/guix-tests/store/8p1pck5f7hizcdjg1j7rznyy3p3y205k-ruby-concurrent-1.1.5-checkout.drv /tmp/guix-tests/store/jhx40532r42q1w4l72hd5ap92nzjfs2m-tzdata-for-ruby-tzdata-info.drv /tmp/guix-tests/store/5xyv88lb1gsh9shy786ngc8qa531z1xk-tzdata2021a.tar.gz.asc.drv /tmp/guix-tests/store/qsa5s6m02i62vck7q62q3r6s0zw0r99j-tzcode2021a.tar.gz.asc.drv /tmp/guix-tests/store/sins7ly7xirxvxc08yw0xwfl4fr1pzvi-tzdata2021a.tar.gz.drv /tmp/guix-tests/store/zclshcmjlqq7zcgjvqcq1qcyb65rgx9j-tzcode2021a.tar.gz.drv /tmp/guix-tests/store/061r263pipd3fpyfqrhrjbjxzmsll5rh-ruby-i18n-1.7.0.drv /tmp/guix-tests/store/y4myj60x799pk1dxyrhwa9042v4jzmjw-i18n-1.7.0.gem.drv /tmp/guix-tests/store/46wjdzvp2ga3ip4dwy2iijjpsnlxlchf-domain_name-0.5.20190701.gem.drv /tmp/guix-tests/store/4jqlnyq78lsmqb1g6rpzs3hawxcf052s-ruby-shoulda-3.5.0.drv /tmp/guix-tests/store/6hylimcqh76xq1sjrkzg5mks7cr2q5gd-ruby-shoulda-matchers-2.8.0.drv /tmp/guix-tests/store/hm672xwh1bp1vrc80fqqcn1zjlm5v2pz-ruby-activesupport-6.1.3.drv /tmp/guix-tests/store/msx4ky62gxj0865hml70wqd1k0rpclgz-activesupport-6.1.3.gem.drv /tmp/guix-tests/store/s11mwmn1ngq35lmm4hyw1vz5ah2244z1-ruby-zeitwerk-2.4.2.drv /tmp/guix-tests/store/2b105vgchir450373fa56f30njwx7gg3-ruby-builder-3.2.4.drv /tmp/guix-tests/store/87rlrdp0xcj1dwvrklqyh9r3g95j15x3-builder-3.2.4.gem.drv /tmp/guix-tests/store/801qik2lwza1wkqqscndi3p5r5bxi2lz-ruby-zeitwerk-2.4.2-checkout.drv /tmp/guix-tests/store/9m1plyv8jmdjra00f4768n6xk6bmxkwa-ruby-ansi-1.5.0.drv /tmp/guix-tests/store/p6fp3x8a3q826f16cygg60q2n993xkhd-ruby-ansi-1.5.0-checkout.drv /tmp/guix-tests/store/g2xabwjldyajhaacvkmscxbhnmzy2hmm-ruby-minitest-focus-1.1.2.drv /tmp/guix-tests/store/c3f0yikhlqw96k658vwd11n01bmrwi9r-minitest-focus-1.1.2.gem.drv /tmp/guix-tests/store/zpzlzr6diac9xkvdp1j156g5lrq21xbw-ruby-minitest-reporters-1.3.6.drv /tmp/guix-tests/store/7bq2dfcbnp611qqkv8slc21shpk95iip-minitest-reporters-1.3.6.gem.drv /tmp/guix-tests/store/82l5370rprgal98d7jijnzzcyybjgr9k-ruby-maruku-0.7.3.drv /tmp/guix-tests/store/2dd8nc8lmzkdibr1ypza2s83212rkarf-ruby-nokogiri-1.10.9.drv /tmp/guix-tests/store/b2fxg2i2rlm2j5mzwal2b6548fvi38xd-ruby-pkg-config-1.2.5.drv /tmp/guix-tests/store/rr0nhvrwinx30n221mkkxwa451vx6fh5-pkg-config-1.2.5.gem.drv /tmp/guix-tests/store/cm41f11gn2gz1vp7izrabz0cmhnrx9vy-nokogiri-1.10.9.gem.drv /tmp/guix-tests/store/j8ciqchr1jqb0cyaykl2mqmcvngr3kfg-ruby-mini-portile-2.4.0.drv /tmp/guix-tests/store/clb0dzyvmlygrm71agnvxf6v8lzy058i-mini_portile2-2.4.0.gem.drv /tmp/guix-tests/store/991ycmi0xqrrfi5s8wbcgh2hwk3f078y-maruku-0.7.3.gem.drv /tmp/guix-tests/store/kz7krrqglhj73145gyab4vqkn4qxbmn4-ruby-tdiff-0.3.3-1.b662a604.drv /tmp/guix-tests/store/4ffbrk1ji8c806gjhvbf379qp3schp5d-ruby-rubygems-tasks-0.2.5.drv /tmp/guix-tests/store/xzzpfww7080f2w2yp1ddh9k572smy7gc-rubygems-tasks-0.2.5.gem.drv /tmp/guix-tests/store/l6wryykpzzg7b6imkkkwjqqmsc3ivdfg-ruby-tdiff-0.3.3-1.b662a604-checkout.drv /tmp/guix-tests/store/z2960r5kclhjn62fid4pzaiha44h27xh-ruby-nokogiri-diff-0.2.0-1.a38491e4.drv /tmp/guix-tests/store/ka06a79pbln5bccambpang1cw36b1wwm-ruby-nokogiri-diff-0.2.0-1.a38491e4-checkout.drv /tmp/guix-tests/store/vdklsvakz5gkc7iyg0pvqmhj6rqbsx7r-shoulda-matchers-2.8.0.gem.drv /tmp/guix-tests/store/fzh6fnfpb74c909c399kwvlqmv2hvrdf-ruby-shoulda-context-1.2.2.drv /tmp/guix-tests/store/hcs0gx3wwkdd92z6k7vim37k38zrz4wb-shoulda-context-1.2.2.gem.drv /tmp/guix-tests/store/y96fyaybzd4kyi3hpwlsazhs1j4wa1az-shoulda-3.5.0.gem.drv /tmp/guix-tests/store/ar402dq1346frgprz2lbrjrncrjs7lkj-ruby-unf-0.1.4.drv /tmp/guix-tests/store/81n8d2b7ssvar6dba8axb4ls4ajg8gn6-unf-0.1.4.gem.drv /tmp/guix-tests/store/jvqmk9skm6s9gmnjkxri238jikjya6s6-ruby-unf-ext-0.0.7.6.drv /tmp/guix-tests/store/63i32snyls5yqx0459nsvzi57s09g8b6-unf_ext-0.0.7.6.gem.drv /tmp/guix-tests/store/404hn9glql7z6a8msp4m86rkxxgghq0j-ruby-rest-client-2.0.2.drv /tmp/guix-tests/store/5q0sn0rc3f3bdf2sml63sn00yh4zgdx2-ruby-http-cookie-1.0.3.drv /tmp/guix-tests/store/8id5vl445p9km07lwj1pdzfqs6z20gs6-ruby-sqlite3-1.4.2.drv /tmp/guix-tests/store/8lnx7zdvkvrvgxc8rw9qpzvc76bwd5iz-ruby-mini-portile-0.6.2.drv /tmp/guix-tests/store/80i0sjgz0k58iwvm4lqm9a1x98mbaiqq-mini_portile-0.6.2.gem.drv /tmp/guix-tests/store/jyw2733d5vqrsb5gkimnr6cbjam27wck-sqlite3-1.4.2.gem.drv /tmp/guix-tests/store/fhjzbzy53zw09sf36vkdr5s3av6gv4fb-http-cookie-1.0.3.gem.drv /tmp/guix-tests/store/i9dcbld1h77c6dlz705gzd93pa4vanaf-ruby-addressable-2.7.0.drv /tmp/guix-tests/store/9z637vk5q097lg1ifrbfwmcjgz35k796-ruby-rspec-its-1.3.0.drv /tmp/guix-tests/store/xckn24dh0hfhwmx5hiqd2km4861lna28-ruby-rspec-its-1.3.0-checkout.drv /tmp/guix-tests/store/h9p8h4amkx2qdaib9k8aax8bsgpqyynp-ruby-idn-ruby-0.1.0.drv /tmp/guix-tests/store/1spqrxdrwp5g8ni7hcrjwh5m0dh10jz4-idn-ruby-0.1.0.gem.drv /tmp/guix-tests/store/k4l32ygzzkvaqdapxmapys4939ckms09-ruby-public-suffix-4.0.5.drv /tmp/guix-tests/store/y18v285grbrrxvir9wshqb1bxa53kwqm-public_suffix-4.0.5.gem.drv /tmp/guix-tests/store/mdciv99f1aqf5ar913h0hlca9q9l92l7-addressable-2.7.0.gem.drv /tmp/guix-tests/store/vnfbxp6di0lfr519gcbs8569n691llg8-ruby-rack-2.2.3.drv /tmp/guix-tests/store/19xmw0a5yr76layfk6xpkk2n96zfak83-ruby-minitest-global-expectations-1.0.1.drv /tmp/guix-tests/store/5csdmfy54q7y30gglv1whj3pwfvsv92m-minitest-global_expectations-1.0.1.gem.drv /tmp/guix-tests/store/zg9cjlyzwn4hpbyrhh8h6bijvhl63pr9-ruby-rack-2.2.3-checkout.drv /tmp/guix-tests/store/v9wfj9rl4qwqh0lck3hpcl2r7qg0zyz5-ruby-rack-2.2.3-checkout.drv /tmp/guix-tests/store/xnqsbi6pygn3i23jbv5vw95gc6ngjjra-ruby-sporkmonger-rack-mount-0.8.3-1.076aa2c.drv /tmp/guix-tests/store/yyxgsxqlq2rg8isf6k3aafv3a8k37j8z-ruby-sporkmonger-rack-mount-0.8.3-1.076aa2c-checkout.drv /tmp/guix-tests/store/ihdqbx5l0jvbsssvplfhs703rb0cji5r-ruby-mime-types-3.1.drv /tmp/guix-tests/store/1qw0g42dpp7sx7nrl5ra44738cikjq91-ruby-minitest-rg-5.2.0.drv /tmp/guix-tests/store/f20xmn9gy6bw725x59p9hqx94pij26m3-minitest-rg-5.2.0.gem.drv /tmp/guix-tests/store/35ziwidzi8qr14i5gz02gxfy3kdhn4hg-ruby-minitest-hooks-1.5.0.drv /tmp/guix-tests/store/77p7vi2kcc3ybnixayir2bg7ccika5y4-minitest-hooks-1.5.0.gem.drv /tmp/guix-tests/store/7spwq687ymknss2xb7dz75akxlk6zndj-ruby-sequel-5.47.0.drv /tmp/guix-tests/store/igq2lasd8yrxrp8b432hcka6b6an0gk1-sequel-5.47.0.gem.drv /tmp/guix-tests/store/5ydd9fjxgzqfak9dhsj7754d4v7lq5ic-ruby-fivemat-1.3.7.drv /tmp/guix-tests/store/5xcrb9gs1zn7pzg8b7n0xdaq2sicj9cg-fivemat-1.3.7.gem.drv /tmp/guix-tests/store/6qaw6lgpgvbqvhjnhhgkfqckzf4xflzz-mime-types-3.1.gem.drv /tmp/guix-tests/store/h1hd25r8csxf8zm22l79m0j6kd0lv8s5-ruby-minitest-bonus-assertions-3.0.drv /tmp/guix-tests/store/70q9a54ym66aqc70amfa7d4aysl2xac0-minitest-bonus-assertions-3.0.gem.drv /tmp/guix-tests/store/jy473bciz8rfnby3vgyrbxik9cyjm0hm-ruby-minitest-moar-0.0.4.drv /tmp/guix-tests/store/hw126lv8jaf0skr9d620nbf0z99nkrh7-minitest-moar-0.0.4.gem.drv /tmp/guix-tests/store/x9q98982k44wiyc46z05vrqd4p9w7v1s-ruby-minitest-pretty-diff-0.1-1.11f32e93.drv /tmp/guix-tests/store/8hlvcj67b1cyn5bq8ihvnbxf71ycnwib-ruby-turn-0.9.7.drv /tmp/guix-tests/store/040kcqdsqdwi0hp7i9z21byfaw0spif1-turn-0.9.7.gem.drv /tmp/guix-tests/store/hghy8mazabw7ss323qwz3r4l4jj5v1np-ruby-minitest-4.7.5.drv /tmp/guix-tests/store/kdanpxd8g2lwnnvjp8az14nhd8p1pvz4-minitest-4.7.5.gem.drv /tmp/guix-tests/store/g3l964jj5qnwhhwwm6ml3gh31z6lga0l-ruby-minitest-pretty-diff-0.1-1.11f32e93-checkout.drv /tmp/guix-tests/store/k0awd8kd1fznwc5nb029khym08k5r08y-ruby-mime-types-data-3.2016.0521.drv /tmp/guix-tests/store/xa8c9dagwcrq8hgs7rjdj60000xlpk9p-mime-types-data-3.2016.0521.gem.drv /tmp/guix-tests/store/q0n10knrnpfpbshcyz2knxs7b5ffqr9y-ruby-webmock-2.3.2.drv /tmp/guix-tests/store/cwhj57zhhw7pvc1yj13qi84ssxnbkqlz-webmock-2.3.2.gem.drv /tmp/guix-tests/store/xmnlr7pd83mgi08wirk1swkdnzb1611b-ruby-crack-0.4.5.drv /tmp/guix-tests/store/g8kbyhpxspqy5s5fna02y2r4kapv1rjg-crack-0.4.5.gem.drv /tmp/guix-tests/store/zwfv00krspzqj5pixd70js5gx5ll5p5i-rest-client-2.0.2.gem.drv /tmp/guix-tests/store/mgnh4i8gy4h2g0sgbgki2fdd0fvilhyw-ruby-kramdown-2.3.1.drv /tmp/guix-tests/store/31vdsdslls46g68rnghy193m0f754wvb-ruby-afm-0.2.2.drv /tmp/guix-tests/store/fzfc19d7dw5hn7xr5faqd23xvxs7i3cs-afm-0.2.2.gem.drv /tmp/guix-tests/store/43jas2hyrk52cxa6agzcyvcavzs1rm0s-ruby-hashery-2.1.2.drv /tmp/guix-tests/store/4if1fkx9n6n787rwmkna42h82rd0a2jm-ruby-qed-2.9.2.drv /tmp/guix-tests/store/mdf6snihkfzn07hij3gzdl75byyq7g26-qed-2.9.2.gem.drv /tmp/guix-tests/store/xpjys77v688za59rq74365gcz9b6165x-ruby-brass-1.2.1.drv /tmp/guix-tests/store/p57z1zfsn8375vvnbv6wac6pk0aqqll7-brass-1.2.1.gem.drv /tmp/guix-tests/store/666sfqprgla548313har51jgxb1nkl41-ruby-rubytest-cli-0.2.0.drv /tmp/guix-tests/store/k6cslw21a7ky2csry89rrxqgpafqjc96-rubytest-cli-0.2.0.gem.drv /tmp/guix-tests/store/v006bla1gycdazbardcwf90a199ga2a1-ruby-rubytest-0.8.1.drv /tmp/guix-tests/store/ydai14fnf0rvraa1cgvbljk0jnpsl34j-rubytest-0.8.1.gem.drv /tmp/guix-tests/store/b7p0fnzmzi5g8hhvv6xr1rqah1rqxqwf-ruby-ae-1.8.2.drv /tmp/guix-tests/store/i7whphpla9n9vr023921lxydqp1w41q7-ruby-ae-1.8.2-checkout.drv /tmp/guix-tests/store/g9s2zwlk92qqbcbhfa8qz9dwv6lcq0q4-hashery-2.1.2.gem.drv /tmp/guix-tests/store/ym2p67izjv1wndzr1al1549hs1z59sd9-ruby-lemon-0.9.1.drv /tmp/guix-tests/store/gi9y18cf0s5s7rkhmcimz9h1zbhxbzpj-lemon-0.9.1.gem.drv /tmp/guix-tests/store/6jf9piyjl2g69hzgwwx98rqhrb3skzby-ruby-ttfunk-1.6.2.1.drv /tmp/guix-tests/store/9l0dn2bav9y4sdfd9dlfgc244vdf080j-ruby-ttfunk-1.6.2.1-checkout.drv /tmp/guix-tests/store/70kzl6ck5djxzxh08y7l5bhz4zqh7j26-ruby-rc4-0.1.5.drv /tmp/guix-tests/store/h44lkkx6wijqns6i24hqi4w7dm4r66aq-ruby-rc4-0.1.5.gem.drv /tmp/guix-tests/store/al5fkg0j9cb096jpjycbhxkyf7lg26pv-ruby-pdf-inspector-1.3.0-1.00ee4c9.drv /tmp/guix-tests/store/9f5x4ch0x6xh7l1mgfq36ydfgwxbvbg2-ruby-pdf-inspector-1.3.0-1.00ee4c9-checkout.drv /tmp/guix-tests/store/dc8fb3shhj7vzsd2yw4sqanfg0p02pr0-ruby-pdf-reader-2.4.0.drv /tmp/guix-tests/store/130v7g2jnr7dayq3j4j4xxdynz498mkr-ruby-cane-3.0.0.drv /tmp/guix-tests/store/bcd0sfpbas9zx2z48pfaqjn5ql68mfzp-cane-3.0.0.gem.drv /tmp/guix-tests/store/qr7h6nghdpjy9ksxaki61kvw81365sij-ruby-parallel-1.21.0.drv /tmp/guix-tests/store/0qcc4a1d3vnyyiiskwfv1p37p3y1hnrf-ruby-activemodel-6.1.3.drv /tmp/guix-tests/store/6jgjn7ajkd7viapj749g2vzwf7pd833k-activemodel-6.1.3.gem.drv /tmp/guix-tests/store/117r31vqiirn2rv73m3pwj6q0q4m8z7q-ruby-rspec-rerun-1.1.0.drv /tmp/guix-tests/store/0npbj0hk2y3w8mzvr549f1a7wc4xypk9-rspec-rerun-1.1.0.gem.drv /tmp/guix-tests/store/6fsgm0g0g8jk9cccj2blfx42fy9gh55h-ruby-mysql2-0.5.2.drv /tmp/guix-tests/store/9zckpns68w91p514g9blbywrqwfaz9yj-mariadb-10.5.12.drv /tmp/guix-tests/store/151c3209b5zd756l6spf58mcs35y8fvy-mariadb-10.5.12.tar.xz.drv /tmp/guix-tests/store/9yx5x2jcrbqm3cqvzldmgmmq0idm77pl-mariadb-10.5.12.tar.gz.drv /tmp/guix-tests/store/f8q4d9jkq06xqf4l6fwa5fr8yzyx89d9-libaio-0.3.112.drv /tmp/guix-tests/store/yag9j7ycgkbzdgid4wxknyai0m11bag3-libaio-0.3.112.tar.gz.drv /tmp/guix-tests/store/f51ikkqcdjdax4s85kc97x9i961g40sz-ruby-mysql2-0.5.2-checkout.drv /tmp/guix-tests/store/l8hdza408kkagfhh18kanff5qqd0zsm2-ruby-parallel-1.21.0-checkout.drv /tmp/guix-tests/store/pz7ypifip13hxgyrglnj8w052q52znaq-ruby-arel-9.0.0.drv /tmp/guix-tests/store/cn34zl7v5jvbmi6c8r2j299rvsf4gy99-arel-9.0.0.gem.drv /tmp/guix-tests/store/v70y4lhwznp95iya704909m3jc8ycf3c-lsof-4.94.0.drv /tmp/guix-tests/store/9a1r4a89q64mkad3sb4jcxydvmxaqlxa-lsof-4.94.0-checkout.drv /tmp/guix-tests/store/d6khsi3qjydiqphrpy9xm5kaiafh578r-lsof-4.94.0-checkout.drv /tmp/guix-tests/store/z2v6b1wn5v968wvcwh35gv17dagafklr-ruby-activerecord-6.1.3.drv /tmp/guix-tests/store/3zz2gvjnjk3725i04z64mi5fdhw2jy28-activerecord-6.1.3.gem.drv /tmp/guix-tests/store/drlw0knmnxkmlj32xf4c7pxxzs5yc6ix-ruby-pdf-reader-2.4.0-checkout.drv /tmp/guix-tests/store/gkixgzzsvq99xb5i58kxcbxzp5dabd2v-ruby-morecane-0.2.0.drv /tmp/guix-tests/store/x98k79pjyrwi78xbhh17fxpqsq8qk2lg-morecane-0.2.0.gem.drv /tmp/guix-tests/store/l57k39caqxl4ig8xln18z1q67h2f5pzv-ruby-ascii85-1.0.3.drv /tmp/guix-tests/store/whdhzci53rl9bpv4awdmqncp5l2n1hgk-Ascii85-1.0.3.gem.drv /tmp/guix-tests/store/hwlci2qadlqvym3mp50ya0jw0hy4irrv-kramdown-2.3.1.gem.drv /tmp/guix-tests/store/miqj0j6mpqxrrdggk1qh2q2ldbqvxfq6-ruby-pdf-core-0.8.1.drv /tmp/guix-tests/store/i1qrqgd97mwlm539k8yfqc2b319jk7k1-pdf-core-0.8.1.gem.drv /tmp/guix-tests/store/q8n4m7va674ncm7vrvmqrijpfhxn0cyd-ruby-prawn-2.2.2-1.d980247.drv /tmp/guix-tests/store/gn2cdgm98p2h75j9kby1v99dpsrrnnv1-ruby-prawn-2.2.2-1.d980247-checkout.drv /tmp/guix-tests/store/nybn91vlww1v687r9mmylrzwnm1bk8fr-ruby-prawn-manual-builder-0.3.1.drv /tmp/guix-tests/store/vdl6dp97y8fqj3c5whm3ygi1qr8nmx8l-prawn-manual_builder-0.3.1.gem.drv /tmp/guix-tests/store/s7l2pq5y7lgg74686l2yzqd6nw30n3pk-ruby-prawn-table-0.2.2.drv /tmp/guix-tests/store/lf0xdsqas2yz3wm2765p9lxz4m3d4w25-prawn-table-0.2.2.gem.drv /tmp/guix-tests/store/p8nfnc4np9xbavy053b179b8cyqmfbmf-ruby-bacon-1.2.0.drv /tmp/guix-tests/store/83ms1n1ps34g6dwpc115x4w6gc4qmdd7-bacon-1.2.0.gem.drv /tmp/guix-tests/store/vdgw321mxmhqj08fz0c6wyv3ymzy3lrx-ruby-bacon-colored-output-1.1.1.drv /tmp/guix-tests/store/bnkhh7840r791v396c4lybq3yh0rmihr-bacon-colored_output-1.1.1.gem.drv /tmp/guix-tests/store/vklv44jl4mlg1k7pbgyxdrl6z6gry8z2-ruby-racc-1.5.2.drv /tmp/guix-tests/store/d75yalanpx3ahfdm0rcc9c8grcdvc4vg-racc-1.5.2.gem.drv /tmp/guix-tests/store/zinh68yk28gjlrnas61pzaahdzk5qmmq-ruby-json-pure-2.3.1.drv /tmp/guix-tests/store/c4dn8iy88pnm8339aznlq1nbm46pxqqj-json_pure-2.3.1.gem.drv /tmp/guix-tests/store/bx64lyx0a70y8nrrmprmzvkw9rlp6ifp-ruby-webmock-3.11.2.drv /tmp/guix-tests/store/45a4irglhg55ia3kmbq0z07kxcpan35k-webmock-3.11.2.gem.drv /tmp/guix-tests/store/c4drwfbpqzpvhyq0w44j3hf21isx174c-ruby-rainbow-3.0.0.drv /tmp/guix-tests/store/7iq31r3v62md57sfvpxnzdjvx84bwygq-rainbow-3.0.0.gem.drv /tmp/guix-tests/store/cb0hmmlcrp7dr0kc999npxm692xdxqa9-ruby-unicode-display-width-1.6.0.drv /tmp/guix-tests/store/lfjjy555s4i5z6a52myy8q3fr3qdxmk1-unicode-display_width-1.6.0.gem.drv /tmp/guix-tests/store/gldidddmj314hkdxbsxxj59zzqrmafli-ruby-rubocop-ast-1.4.1.drv /tmp/guix-tests/store/hrffa6gb1jcqpw8zg8hw6d8qay54i995-ruby-rake-13.0.1.drv /tmp/guix-tests/store/kv5z6cr4zyk0qiwx4kvyvxmbn3j340i3-rake-13.0.1.gem.drv /tmp/guix-tests/store/ivkwnrwdilyhl6xb5nxdhlc6v9rj6n7j-ruby-rubocop-ast-1.4.1-checkout.drv /tmp/guix-tests/store/w5sl68kz8b5ms4gjbhb0vx5sw7dfqqvj-ruby-oedipus-lex-2.5.2.drv /tmp/guix-tests/store/7rm0044kprrmwliprl9z8j26dv19mr6y-oedipus_lex-2.5.2.gem.drv /tmp/guix-tests/store/h6ylwhrd6z6vznmskxzq11wix2wrq4nx-ruby-rubocop-1.10.0.drv /tmp/guix-tests/store/kf8jdmww66ghf9fmqnvdsa3jq2g22i8k-ruby-regexp-parser-2.0.0.drv /tmp/guix-tests/store/fydm9h2hsixpdhcps0zl9yjzkylvmp4p-ruby-regexp-property-values-1.0.0-1.03007a6.drv /tmp/guix-tests/store/2n3c02ln0iwl8sv9a3vzldpvgyd1agf7-ruby-regexp-property-values-1.0.0-1.03007a6-checkout.drv /tmp/guix-tests/store/67v0kql10pj4cvxrp9q4klaf48j55xw8-ruby-character-set-1.4.0.drv /tmp/guix-tests/store/6gxam9q0wmdbqn4kkqmxdsfjrwsaq4jl-character_set-1.4.0.gem.drv /tmp/guix-tests/store/hmnaw048bffhiwb3dm7a144jxph9g37b-ruby-range-compressor-1.0.0.drv /tmp/guix-tests/store/h913hb1kp56j3z2r6zvknb9g4b57afsj-ruby-range-compressor-1.0.0-checkout.drv /tmp/guix-tests/store/snzvfjsla2y4p4h02rlgk2hzashr42lf-ruby-regexp-parser-2.0.0-checkout.drv /tmp/guix-tests/store/z66grpmkmsdlil5pvqqpkwrjs2x57cx0-ruby-test-queue-0.4.2.drv /tmp/guix-tests/store/rk8mc4jaihp7cwacvpawgw71fq692jha-test-queue-0.4.2.gem.drv /tmp/guix-tests/store/8rz2bs0pqa31ci5mk4y71kynf1586dzr-ruby-octokit-4.18.0.drv /tmp/guix-tests/store/inh5vnpi9774m3zk3kw7mbrbilcqvw6j-ruby-faraday-0.15.4.drv /tmp/guix-tests/store/7qnf9fkzrwp3i2c3ygq1wwll4a6xsmn4-faraday-0.15.4.gem.drv /tmp/guix-tests/store/s2bps14a75dz773f3nmlk61digryysqp-ruby-multipart-post-2.0.0.drv /tmp/guix-tests/store/6kqnwa1j7vpc8wcdhsh6v8g4fy3ajv43-multipart-post-2.0.0.gem.drv /tmp/guix-tests/store/sig7brrhmgl9ldvahwfhvwdkmr3v7939-octokit-4.18.0.gem.drv /tmp/guix-tests/store/wq34lfyywzxd1bah1p3x9dsnzk455grq-ruby-sawyer-0.8.2.drv /tmp/guix-tests/store/c5b3xikja96qcdwks44wgi038b70p98i-sawyer-0.8.2.gem.drv /tmp/guix-tests/store/cx6w555qhxnix1949qm06aw6jr0rj76p-ruby-byebug-11.1.3-checkout.drv /tmp/guix-tests/store/m9r6521w8nphnm954gzqkfrn9gzlsixp-ruby-byebug-11.1.3-checkout.drv /tmp/guix-tests/store/hpz8ihw4hri3qvix3ip81sklvgsjacd5-ruby-chandler-0.9.0.drv /tmp/guix-tests/store/sp6jh0yc8zryd4fk3npk5iif8qqzg93s-chandler-0.9.0.gem.drv /tmp/guix-tests/store/w3zk1g2d4fgr6ds783asfq7i917sgf2z-ruby-hydra-0.0-0.5abfa37-checkout.drv /tmp/guix-tests/store/jl12gb4nqy3cmjsj0arwf4nhvzd656x2-texlive-hyphen-estonian-59745-checkout.drv /tmp/guix-tests/store/0ncky4a88bc7j01wyhy0j32i0lrdhidw-texlive-unicode-data-59745.drv /tmp/guix-tests/store/ncm6sgavvw9ckplgaiiyaizyy0zd75mq-texlive-unicode-data-59745-checkout.drv /tmp/guix-tests/store/1iamypgxriqxg5xq55vr7mbyhp03m6lm-texlive-hyphen-sanskrit-59745.drv /tmp/guix-tests/store/sy94jbrhp0dkhiyl1rr55p4zafszvy1c-texlive-hyphen-sanskrit-59745-checkout.drv /tmp/guix-tests/store/1wfirzrwg6y8mivajvk68ac5jzd92qpx-texlive-hyphen-bulgarian-59745.drv /tmp/guix-tests/store/gyw0phsla1ysy17scpdrnvn2ps994fdh-texlive-hyphen-bulgarian-59745-checkout.drv /tmp/guix-tests/store/1y66pp9db31aabf24p3w2v3bs3np7b73-texlive-hyphen-friulan-59745.drv /tmp/guix-tests/store/bdq2spc4vyxwgic5j6dqahvki5q5rj8a-texlive-hyphen-friulan-59745-checkout.drv /tmp/guix-tests/store/2g38pi5rpz5pphbpk6mcbx5w31n6mws3-texlive-tetex-59745.drv /tmp/guix-tests/store/q825bwi5hy15mzqw8s0kh0qnidjp9gqb-texlive-tetex-59745-checkout.drv /tmp/guix-tests/store/36kjzj0yyiml211bf7zv40s8bvml0lps-texlive-latex-l3kernel-59745.drv /tmp/guix-tests/store/c7drci7hj9mvrvav2yr42r1ipxa52s9r-texlive-latex-l3kernel-59745-checkout.drv /tmp/guix-tests/store/vc53kc9vk5a5wz91dbj07m3ag1x7mzfy-module-import-compiled.drv /tmp/guix-tests/store/z8a7dipy72cdk7fdabhm85swf7v6939l-texlive-docstrip-59745.drv /tmp/guix-tests/store/vs2p5rc2mzyadd4591qqnlcbrz7621zi-texlive-docstrip-59745-checkout.drv /tmp/guix-tests/store/3g0vv1218kg4fv5bwbyjsai4xfziyb1k-texlive-hyphen-danish-59745.drv /tmp/guix-tests/store/5l6v1ib2x5c7hrjw2ihqyj2lc7lgzcf6-texlive-hyphen-danish-59745-checkout.drv /tmp/guix-tests/store/3r3hanj0m3d1s6n63ipqb2r3bi5514n0-texlive-hyphen-coptic-59745.drv /tmp/guix-tests/store/464mjwky86xwhi76nvgjvrk790bm03f4-texlive-hyphen-coptic-59745-checkout.drv /tmp/guix-tests/store/49xnsh42bh4zq1581c4cbcq9ricr4sw9-texlive-hyphen-belarusian-59745.drv /tmp/guix-tests/store/2npissy680lrkyx5f9mf1pm5qrcn64gp-texlive-hyphen-belarusian-59745-checkout.drv /tmp/guix-tests/store/4plkwy1dl6cffrxb69ki6cs3xiw9fykm-texlive-hyphen-schoolfinnish-59745.drv /tmp/guix-tests/store/ibr57wq5isx3b1pxcgcgvj88cww6yk1k-texlive-hyphen-schoolfinnish-59745-checkout.drv /tmp/guix-tests/store/4w1avzc1d7cm6aj6issafxr0s977x1m8-texlive-latex-base-59745.drv /tmp/guix-tests/store/5g0vlk8dfd2zwmq9giwnq81423lp6lgf-texlive-hyphen-galician-59745.drv /tmp/guix-tests/store/3492r0zncj65v4dafadgsb06l9ix3hz8-texlive-hyphen-galician-59745-checkout.drv /tmp/guix-tests/store/5ysx5qff3bdq37h9fhr9l57kywkrmpml-texlive-hyphen-turkish-59745.drv /tmp/guix-tests/store/8fjfmqzd9csmjpvzgnh9fpg9qkbbxw5z-texlive-hyphen-turkish-59745-checkout.drv /tmp/guix-tests/store/6d22kqj1554wkjw6pb106ahsay6r719j-texlive-hyphen-icelandic-59745.drv /tmp/guix-tests/store/g9c7jpazfyk3338np4z9ky09n30sbj37-texlive-hyphen-icelandic-59745-checkout.drv /tmp/guix-tests/store/6zsbv7bp7p3vm7xbjhbasb2rfrb8ia49-texlive-hyphen-esperanto-59745.drv /tmp/guix-tests/store/gryga1fq59ac9j615kz6fx0jc4klg8g4-texlive-hyphen-esperanto-59745-checkout.drv /tmp/guix-tests/store/742ahq9dhlvd58zr8xgwzd4njzqiw1xx-texlive-hyphen-chinese-59745.drv /tmp/guix-tests/store/ny7pk67ra6c49z9rl8mlca36hc2ifldn-texlive-hyphen-chinese-59745-checkout.drv /tmp/guix-tests/store/7nb1jwansghqfbzrxf7i1ll9w5pw90j8-texlive-knuth-lib-59745.drv /tmp/guix-tests/store/v48923xb43k102p426ylkzw7xl62zipz-texlive-knuth-lib-59745-checkout.drv /tmp/guix-tests/store/83537fhilhwdk776x1y3p89dcrgf5x1s-texlive-latexconfig-59745.drv /tmp/guix-tests/store/h43kmlj78p58amdh3vsmqwgfyqlfmxx5-texlive-latexconfig-59745-checkout.drv /tmp/guix-tests/store/8a74cgxlhcigfzg1jn6ddypdgyyi2aqs-texlive-hyph-utf8-59745.drv /tmp/guix-tests/store/dkfvvh7wfq9sps3mq4x7hmxh6akss380-texlive-hyph-utf8-59745-checkout.drv /tmp/guix-tests/store/m3g1c68mz34ia78q7bwy0g5hxa049181-texlive-tex-plain-59745.drv /tmp/guix-tests/store/kna5gxzafwkyc6qhbw95f8b8yprv7ch7-texlive-tex-plain-59745-checkout.drv /tmp/guix-tests/store/qhjf8mjb2cq1q49g8svv1is5zgdl8fa9-texlive-hyphen-base-59745.drv /tmp/guix-tests/store/p820yvcy0mdfr6rcn4q96dlzcm9p5nx9-texlive-hyphen-base-59745-checkout.drv /tmp/guix-tests/store/8idg356cww7yycj0i2q110wybldj4hvs-texlive-hyphen-catalan-59745.drv /tmp/guix-tests/store/80q61pr0c4njrmd9jlr6xxg2bn8cxqxa-texlive-hyphen-catalan-59745-checkout.drv /tmp/guix-tests/store/8mbgw4fal7my6qzqkf5k1si2h4ylvx0z-texlive-hyphen-romanian-59745.drv /tmp/guix-tests/store/n4qksi18yqpx33b1zbmbjmhdzmdsrzd9-texlive-hyphen-romanian-59745-checkout.drv /tmp/guix-tests/store/8sy4vh6xmz8gq4qwryyldmilgjk1k6z8-texlive-hyphen-dutch-59745.drv /tmp/guix-tests/store/akr925l962nkyjvwk2r14fmgbslk62db-texlive-hyphen-dutch-59745-checkout.drv /tmp/guix-tests/store/8vprd021cvzcw0biqwzblz6ydycgbr2r-texlive-hyphen-occitan-59745.drv /tmp/guix-tests/store/f0yndj8vi0iw6jkc7j7ry75avlfxi6h1-texlive-hyphen-occitan-59745-checkout.drv /tmp/guix-tests/store/929q8hsjaqchhkvm8bgg3mqicc6ma1xj-texlive-hyphen-welsh-59745.drv /tmp/guix-tests/store/yn4mdhybwnga5djb0wfz8hxlxl7m6adj-texlive-hyphen-welsh-59745-checkout.drv /tmp/guix-tests/store/999rc8dva80nqbv63ji6b2ir2dwygj42-texlive-ukrhyph-59745.drv /tmp/guix-tests/store/jh0r74c2ydjv1ji06vdgayq2b3wq636j-texlive-ukrhyph-59745-checkout.drv /tmp/guix-tests/store/9f5x3rmlrz5r6hj01d4wnkx9cpczm9hw-texlive-hyphen-lithuanian-59745.drv /tmp/guix-tests/store/1x31y4il4agkmabznvb80pizxk567vgf-texlive-hyphen-lithuanian-59745-checkout.drv /tmp/guix-tests/store/a07j3pg0jnmcq29b2zdi74y36lcqrpmx-texlive-hyphen-spanish-59745.drv /tmp/guix-tests/store/3nhal4xx0zb3phb05j51v9s4037yvf7i-texlive-hyphen-spanish-59745-checkout.drv /tmp/guix-tests/store/axskv7b2blf6gpp3mxgkdm5z0rdvyysy-texlive-hyphen-kurmanji-59745.drv /tmp/guix-tests/store/ns5kjzmgrvwgfli70ndvw52i1v4gbdrx-texlive-hyphen-kurmanji-59745-checkout.drv /tmp/guix-tests/store/bg1yqdabykjza0pmjnxihc1w4pcvqj1x-texlive-hyphen-finnish-59745.drv /tmp/guix-tests/store/yb98cywdaac9br29ircamag7jvxa51r4-texlive-hyphen-finnish-59745-checkout.drv /tmp/guix-tests/store/c2hdz19w4c2fccqshw93mgdwak8vifyc-texlive-dehyph-exptl-59745.drv /tmp/guix-tests/store/y92mbkjmia5006bzxm6nj5nbmvz5mb9k-texlive-dehyph-exptl-59745-checkout.drv /tmp/guix-tests/store/cx39d2gv230hr5bqwzap712fd6lamvi9-texlive-hyphen-irish-59745.drv /tmp/guix-tests/store/sq2aydqrnk8bn5s5dlagip02kzif8hl3-texlive-hyphen-irish-59745-checkout.drv /tmp/guix-tests/store/dd043f39cl5aq7vivd0lzi9s915rn1ah-texlive-hyphen-greek-59745.drv /tmp/guix-tests/store/02fiq2igi1dfbh2qk44aaz0l7x0qqdrn-texlive-hyphen-greek-59745-checkout.drv /tmp/guix-tests/store/ddv5n1cxhbqhfsbba93vdiqy31wrv573-texlive-hyphen-georgian-59745.drv /tmp/guix-tests/store/sfm2c8nvc97ln5z4bqzdlijh81x2yah5-texlive-hyphen-georgian-59745-checkout.drv /tmp/guix-tests/store/df45idg8zga0aqmm5z92drkk2gdrrc1n-texlive-ruhyphen-59745.drv /tmp/guix-tests/store/ix8fjhyr1rhdkx6b24gcq3zp4zjvfh6i-texlive-ruhyphen-59745-checkout.drv /tmp/guix-tests/store/djadrny81scy66qyvqlyy8zkxvf1p141-texlive-hyphen-ethiopic-59745.drv /tmp/guix-tests/store/mprim31imayp1i3ivriyq656f8b24l0w-texlive-hyphen-ethiopic-59745-checkout.drv /tmp/guix-tests/store/ds3wg006ma4i8cxh0xq57fxn1rbksf10-texlive-hyphen-macedonian-59745.drv /tmp/guix-tests/store/kz4yzljslf337rrxwi03ri0qkq96gmny-texlive-hyphen-macedonian-59745-checkout.drv /tmp/guix-tests/store/f2r618g0isy7chp1drxx0wpp4rn0bawz-texlive-hyphen-indonesian-59745.drv /tmp/guix-tests/store/crxzvn6wjl41fl8hb92zm0kkcf44dgpk-texlive-hyphen-indonesian-59745-checkout.drv /tmp/guix-tests/store/fp7bcfxm0hzgqrvm7hk9ys3pn8zzspqk-texlive-hyphen-croatian-59745.drv /tmp/guix-tests/store/3ddg5jv999qkcfy02dkbin1skwagcnd1-texlive-hyphen-croatian-59745-checkout.drv /tmp/guix-tests/store/fyf0sccjrvn7bp138d375w0l20irvi9s-texlive-hyphen-french-59745.drv /tmp/guix-tests/store/cj2w2qq0z8jn5109j4qai380siacwxzj-texlive-hyphen-french-59745-checkout.drv /tmp/guix-tests/store/ghcrjphx72kcdari83zjh2rnc6b3sn2g-texlive-hyphen-norwegian-59745.drv /tmp/guix-tests/store/3ayx9rm7z7q9816cybvqf16mm4sxcd3f-texlive-hyphen-norwegian-59745-checkout.drv /tmp/guix-tests/store/ghkhlh9ysffrix0bfk8x25hja56d3qi3-texlive-latex-base-59745-checkout.drv /tmp/guix-tests/store/gk8yk3fmyrqgax5cshsa2z1qjc2si30f-texlive-hyphen-armenian-59745.drv /tmp/guix-tests/store/8idp13i46xqsa2y329bhg55c30skwwwi-texlive-hyphen-armenian-59745-checkout.drv /tmp/guix-tests/store/h8d3rm2smi56s1zmwf0r2xc16r62n0vd-texlive-hyphen-russian-59745.drv /tmp/guix-tests/store/njhg4j0bavxamb5p1yxzi4p6a27igjac-texlive-hyphen-russian-59745-checkout.drv /tmp/guix-tests/store/hasasspbxkp6vv6iz7vdl69cjgi19xbd-texlive-hyphen-ukrainian-59745.drv /tmp/guix-tests/store/hnhp8gy8zkb6ryakcmrpkx1nd0k9a005-texlive-hyphen-ukrainian-59745-checkout.drv /tmp/guix-tests/store/hy3gzb1kvz6z0j7dlrp0lzs0kjpcz35v-texlive-hyphen-polish-59745.drv /tmp/guix-tests/store/a0bzaad262bn3dmbz0ns02g54jrl17c7-texlive-hyphen-polish-59745-checkout.drv /tmp/guix-tests/store/j0pamvcy8hkij2di7vxcwpxbd5lx0r70-texlive-luatexconfig-59745-checkout.drv /tmp/guix-tests/store/ja1vnz4ir21jgxwaxrs5vamsyz2vlqml-texlive-hyphen-slovenian-59745.drv /tmp/guix-tests/store/9v9vspd2bxkd52yhxwad4mn7h66sqwc2-texlive-hyphen-slovenian-59745-checkout.drv /tmp/guix-tests/store/jhaqhkv0b17x6p826v7adcj4bl11s807-texlive-hyphen-serbian-59745.drv /tmp/guix-tests/store/ksbc9bckv7d7hn5z9864hpcmb2pz2ibw-texlive-hyphen-serbian-59745-checkout.drv /tmp/guix-tests/store/jv2gbw9j0xcxq6giv6bkvsrac9v6lwhh-texlive-hyphen-turkmen-59745.drv /tmp/guix-tests/store/2qqv38v1brsl2yp5wmzzbsq5yj3q9yfl-texlive-hyphen-turkmen-59745-checkout.drv /tmp/guix-tests/store/jw6vqxl67y3s30lil0xyyc4wcpsympxq-texlive-hyphen-uppersorbian-59745.drv /tmp/guix-tests/store/3fvxfszmw0y354xs96x318s4y90yslmc-texlive-hyphen-uppersorbian-59745-checkout.drv /tmp/guix-tests/store/k4bzmzrf684q1iqrgjv7sijb431lsvha-texlive-hyphen-thai-59745.drv /tmp/guix-tests/store/586wy9h1s6n77xxilv2wc63rhpyqwwp5-texlive-hyphen-thai-59745-checkout.drv /tmp/guix-tests/store/lb7bgkdjc5fph5lb9g255cyxfh8cxhfs-texlive-hyphen-slovak-59745.drv /tmp/guix-tests/store/xij7xqzsdxc521w57f88nkhl1m6gh0l7-texlive-hyphen-slovak-59745-checkout.drv /tmp/guix-tests/store/li0cx82377r9kyimpcp84hva3bl6qvha-texlive-hyphen-basque-59745.drv /tmp/guix-tests/store/4bidv6ypjzbin0sdhiixchh08nhk6hcn-texlive-hyphen-basque-59745-checkout.drv /tmp/guix-tests/store/lsn3y9n94wm1vwrvf7yilmd7s4anzmij-texlive-hyphen-latvian-59745.drv /tmp/guix-tests/store/p2za8jrrh7kj9zryk4dhsy9vwpqfg156-texlive-hyphen-latvian-59745-checkout.drv /tmp/guix-tests/store/m62cvfvhagmh2ig8ghfri826w82sa65x-texlive-kpathsea-59745.drv /tmp/guix-tests/store/n9bjk653lwzvpp5lxm2cjgbzdxwjp0ag-texlive-kpathsea-59745-checkout.drv /tmp/guix-tests/store/mhwymi5cvm6d2j15ip3l9n82bfarw8vr-texlive-hyphen-portuguese-59745.drv /tmp/guix-tests/store/papkw00l80wwnjgk7gvh8psvnvh998r4-texlive-hyphen-portuguese-59745-checkout.drv /tmp/guix-tests/store/miscccyxnc706ypvlz8wk1gjjx2n3k86-texlive-hyphen-mongolian-59745.drv /tmp/guix-tests/store/fn7nahrkyj0vv4gbga98h85bay3gxis6-texlive-hyphen-mongolian-59745-checkout.drv /tmp/guix-tests/store/mzk1ri3cqdhi80f0zaknz211b8lzsziz-texlive-hyphen-latin-59745.drv /tmp/guix-tests/store/48dsri50w40265slbklmhrkhks2gl872-texlive-hyphen-latin-59745-checkout.drv /tmp/guix-tests/store/n4wsp8xk7vyb9gf8mvn9jxshf57cdyss-texlive-hyphen-romansh-59745.drv /tmp/guix-tests/store/qkc7lx2zaq67b0n9ajd4yrm57j2mbc4h-texlive-hyphen-romansh-59745-checkout.drv /tmp/guix-tests/store/n85zjwa5nl5gh7ycsmjyx37il4h0lx7i-texlive-hyphen-ancientgreek-59745.drv /tmp/guix-tests/store/22nvf7lmzhrv14r3hbpz1wjb45hlrna9-texlive-hyphen-ancientgreek-59745-checkout.drv /tmp/guix-tests/store/n9iyfz4z7ibr7ld4p03lmjppyk352ivr-texlive-etex-59745.drv /tmp/guix-tests/store/hh56yd2gzy02i8j0q56za2gsll9sq3xc-texlive-etex-59745-checkout.drv /tmp/guix-tests/store/p1i7apwxxl2rwlhk4sy8al45v4wa1i2p-texlive-hyphen-afrikaans-59745.drv /tmp/guix-tests/store/fb6f3viwwaswn7gmpaczyp8qkd5xwrx9-texlive-hyphen-afrikaans-59745-checkout.drv /tmp/guix-tests/store/p9cymrnkvppnk94k7740jrbm0qh0zgv4-texlive-latex-l3backend-59745.drv /tmp/guix-tests/store/7c6py2c9mmxxy9mpi10zlyng28gvqx5q-texlive-latex-l3backend-59745-checkout.drv /tmp/guix-tests/store/pqgi7123kdhip7f2l9bfv9dph1ff58av-texlive-hyphen-piedmontese-59745.drv /tmp/guix-tests/store/vy1hlcwibafrl9n293l4ib3k13qz74ij-texlive-hyphen-piedmontese-59745-checkout.drv /tmp/guix-tests/store/qfa04wr43v6v4yhsbxvd0fxgsil45l7g-texlive-hyphen-indic-59745.drv /tmp/guix-tests/store/9a5f2mb55hbcv2zg8fs68vbillc1sp2q-texlive-hyphen-indic-59745-checkout.drv /tmp/guix-tests/store/rry4brx0r00sx2zl7w2lv2jy2vpp92s8-texlive-hyphen-german-59745.drv /tmp/guix-tests/store/hfvszmswv2mnr5qiabm92596q01l356p-texlive-hyphen-german-59745-checkout.drv /tmp/guix-tests/store/s5xx7w0fvyfbk4w9nlki2gbrs2irjqwa-texlive-hyphen-hungarian-59745.drv /tmp/guix-tests/store/jqimih64y1yg3xhyr8xn7kr4f9wz3m5d-texlive-hyphen-hungarian-59745-checkout.drv /tmp/guix-tests/store/sf7i0m5y6d1g11cy5xzy611b9vbj2r5x-texlive-tex-ini-files-59745.drv /tmp/guix-tests/store/1i4hpj2w5i0wxjxdkdnqy24vgpp4cjjx-texlive-tex-ini-files-59745-checkout.drv /tmp/guix-tests/store/slzrv82lwgs696n018p82rc1zd8bin5l-texlive-hyphen-czech-59745.drv /tmp/guix-tests/store/wsdyr8v0xmy2i28wazgmmskhjgcpkkxi-texlive-hyphen-czech-59745-checkout.drv /tmp/guix-tests/store/svrfmg28nhzv9588avsyxkskgxa7c475-texlive-hyphen-interlingua-59745.drv /tmp/guix-tests/store/n86bbl111pzx2jvmabapz8mw1wgiwx4s-texlive-hyphen-interlingua-59745-checkout.drv /tmp/guix-tests/store/syfpc9hdn3xwiqw5rgwdxvb8vxnr7qgw-texlive-hyphen-swedish-59745.drv /tmp/guix-tests/store/dql4a1j3f2gsj4l6gr1ni30vd5rp0rxk-texlive-hyphen-swedish-59745-checkout.drv /tmp/guix-tests/store/vjgkk4pq4ydvlv4hs3ialgvc3vhd8saq-texlive-hyphen-english-59745.drv /tmp/guix-tests/store/sjwnh4z21ji6gsd878gprbkskw48d6yi-texlive-hyphen-english-59745-checkout.drv /tmp/guix-tests/store/w3wmibd8gdip3b93v9ymwnp2avby45nk-texlive-latex-l3packages-59745.drv /tmp/guix-tests/store/lsvls0xwfxd469cam3qbapng29sf82hy-texlive-latex-l3packages-59745-checkout.drv /tmp/guix-tests/store/wnmni0xkpvi3138yxgqadv2c8hyz8s30-texlive-hyphen-churchslavonic-59745.drv /tmp/guix-tests/store/94kq4bbs7vdvyzrcf60mv76xsbr63702-texlive-hyphen-churchslavonic-59745-checkout.drv /tmp/guix-tests/store/xhr6mnwbhm5xxh2sj98kjldjakf0izxm-texlive-hyphen-pali-59745.drv /tmp/guix-tests/store/bxaimb78y5m86alkphb7imkkr7i8fviy-texlive-hyphen-pali-59745-checkout.drv /tmp/guix-tests/store/xi99mdnd0kn5sym7jw9fmi26nf1m62v8-texlive-hyphen-italian-59745.drv /tmp/guix-tests/store/vd00r9bw4c28nxg2gyixjm229y7gc363-texlive-hyphen-italian-59745-checkout.drv /tmp/guix-tests/store/6dlq1zx8f87palkjqs1q2x962lpjl5kr-perl-module-build-0.4231.drv /tmp/guix-tests/store/3dr2z7qcc09pjcw2n85c92awr67v0d34-Module-Build-0.4231.tar.gz.drv /tmp/guix-tests/store/6nj6iyr7sz14c5f2k7msc6ndjiy1qrhf-perl-yaml-tiny-1.73.drv /tmp/guix-tests/store/45874z6j6ciq0icn8948ddgdmy1694ix-perl-module-build-tiny-0.039.drv /tmp/guix-tests/store/4im5a7k6i44w2bljzgqn2ghnkxwwsdfy-perl-extutils-config-0.008.drv /tmp/guix-tests/store/vb8848zak89z3nx252zaz0y0sjgdbpvg-ExtUtils-Config-0.008.tar.gz.drv /tmp/guix-tests/store/6n18xi6c762cp844w1agg5idgmrfg421-perl-extutils-helpers-0.026.drv /tmp/guix-tests/store/z0kd4sn8br12bvkb35ylx5rybc8gklrj-ExtUtils-Helpers-0.026.tar.gz.drv /tmp/guix-tests/store/qmp6jql1j4kka5yrgga5swpqq6926afn-perl-test-harness-3.42.drv /tmp/guix-tests/store/fnlqg74kjfkr0gihaiwshlj65xg66cj8-Test-Harness-3.42.tar.gz.drv /tmp/guix-tests/store/v7ihwlr46p6wwl5gl0b3pnqrpjch161i-Module-Build-Tiny-0.039.tar.gz.drv /tmp/guix-tests/store/zsgdjw0wr9cha4pdg2wa713ks6hnw5rg-perl-extutils-installpaths-0.012.drv /tmp/guix-tests/store/mzydy96wv31ywvmkfhhp751c4a3rhzf4-ExtUtils-InstallPaths-0.012.tar.gz.drv /tmp/guix-tests/store/5y526jl2bqx3clzmhbd57v02fxm6g360-perl-json-maybexs-1.004003.drv /tmp/guix-tests/store/2xz243rz372nfklmxnf0j24b6ap4bl1i-perl-common-sense-3.75.drv /tmp/guix-tests/store/98aglcvvvzp84x4d0p668zcqz5slpzzx-common-sense-3.75.tar.gz.drv /tmp/guix-tests/store/52qybi82wbbzywxl3i7yv8m9qvjmlsln-perl-cpanel-json-xs-4.26.drv /tmp/guix-tests/store/dhnkqxymyvz07mql9iad6vz8lghd8i47-Cpanel-JSON-XS-4.26.tar.gz.drv /tmp/guix-tests/store/hhzqy622w8cbmf4y8jbsrab46z54i0rj-JSON-MaybeXS-1.004003.tar.gz.drv /tmp/guix-tests/store/anmgahzgf5l9kvvbfnmlnz4paw2k1r8v-YAML-Tiny-1.73.tar.gz.drv /tmp/guix-tests/store/869gnf7dkmh42d7w3nz9sfmg89f18xlr-texlive-graphics-def-59745.drv /tmp/guix-tests/store/l7k0g05i15diz68wy4mblkngghwn95yg-texlive-graphics-def-59745-checkout.drv /tmp/guix-tests/store/yyrfidanv08ilxhv6qalxkml6ycx2zwk-texlive-latex-epstopdf-pkg-59745.drv /tmp/guix-tests/store/jxm5hpc3xw6y0xvy0367rzf7iw79rxkp-texlive-latex-epstopdf-pkg-59745-checkout.drv /tmp/guix-tests/store/b0r24iwj145b1g4wzfvna8pwibg1nl56-texlive-amscls-59745.drv /tmp/guix-tests/store/i7c76g8g1bkny6yw1v12ngnss4gxq4ig-texlive-amscls-59745-checkout.drv /tmp/guix-tests/store/b2w2g0nzs8mn945fpq0p2w8pb2q86p38-docbook-xml-4.1.2.drv /tmp/guix-tests/store/55v3by9g3l7afl0bl167acgwz3limirf-docbkx412.zip.drv /tmp/guix-tests/store/c6x6r5mr1iwd8sadb7v4cjksn0s3hkgf-texlive-psnfss-59745.drv /tmp/guix-tests/store/lyx2gfx63g1sn2add80rc0id26z9g5gf-texlive-psnfss-59745-checkout.drv /tmp/guix-tests/store/cdn7gdddp9y786zflmxn81w5pbhplhdv-texlive-tiny-59745.drv /tmp/guix-tests/store/fwjz5q37hvjwgi2pqz6xvml4kizg96rp-texlive-cm-super-59745.drv /tmp/guix-tests/store/59jk07z2vz5daw7lbwq9ijc9z3n8c5sh-texlive-cm-super-59745-checkout.drv /tmp/guix-tests/store/g4iyk5g22f7px23mdn7qgq3jbgba1hid-texlive-graphics-cfg-59745.drv /tmp/guix-tests/store/dss7yw2lb1cy31rlf7yjmcar9khznkip-texlive-graphics-cfg-59745-checkout.drv /tmp/guix-tests/store/h3b5iy9c337438qp5np19vwnvi3cf25l-texlive-latex-cyrillic-59745.drv /tmp/guix-tests/store/58rk3sa52bpkxn51i51k507liizwzvkp-texlive-latex-cyrillic-59745-checkout.drv /tmp/guix-tests/store/jxbkjb96z5zlsarw7gd00vxnwviqcz2k-texlive-latex-amsmath-59745.drv /tmp/guix-tests/store/wkm65g4vaipkyfb69fw6iqrh4gh27a29-texlive-latex-amsmath-59745-checkout.drv /tmp/guix-tests/store/lw8sqs2d3l0jjl41k3s7hldk9pqzw9yl-updmap.cfg.drv /tmp/guix-tests/store/mmfl11kl0l577nnbdvfipygc4n4h71jx-texlive-generic-babel-english-59745.drv /tmp/guix-tests/store/djm233j075lw09maa9r82pis3z3c53xx-texlive-generic-babel-english-59745-checkout.drv /tmp/guix-tests/store/r2plcggy8934fs32xd6bnfhkpivi2w8z-texlive-latex-tools-59745.drv /tmp/guix-tests/store/k2vapw1a30icpwmx4ib9v5bavr5ab218-texlive-latex-tools-59745-checkout.drv /tmp/guix-tests/store/v5b55nyibwmz8j0lmws3yrzgzabin7j0-texlive-babel-59745.drv /tmp/guix-tests/store/yj3bmhnqp68pa90ssnm7f6kbd2n2xd2v-texlive-babel-59745-checkout.drv /tmp/guix-tests/store/wk96qhxiypdcr5dy4jn5jgypr0wfrsp4-texlive-dvips-59745.drv /tmp/guix-tests/store/av6l4qjvmpmls89mz26rwgglf4w1cw7a-texlive-dvips-59745-checkout.drv /tmp/guix-tests/store/yxv34iypd2b0idfx18m7wy0wxrg4sycy-texlive-latex-graphics-59745.drv /tmp/guix-tests/store/4cpap8kb7f739csirf6mgl4yxpz63qb6-texlive-latex-graphics-59745-checkout.drv /tmp/guix-tests/store/zjrb58x7xfqf7arlmnlxwv2snqkgljrs-texlive-fontname-59745.drv /tmp/guix-tests/store/nqrbdyzxyvrrk2kgkr0qf5v1kvnp4ywb-texlive-fontname-59745-checkout.drv /tmp/guix-tests/store/cgg0kzlydxngwl9l67y40phnqac1canj-po4a-0.63.tar.gz.drv /tmp/guix-tests/store/spcsmd5v4ly3nm1xp401807ij7snghgy-perl-test-pod-1.52.drv /tmp/guix-tests/store/m2mhndhixdj3a21yhiahhi1v6948p2bw-Test-Pod-1.52.tar.gz.drv /tmp/guix-tests/store/w4k2k7r8wzkf2ij5ldf2qc4fx7ljqanf-perl-pod-parser-1.63.drv /tmp/guix-tests/store/5c2j3zr38kpg8dmnpspc5k74fy857cj5-Pod-Parser-1.63.tar.gz.drv /tmp/guix-tests/store/82pm5vc49x4r60d1di2z9a907lc75xgz-disarchive-0.4.0.drv /tmp/guix-tests/store/iss4xrhwpd6bfwpfnympa1f77av2ic3h-disarchive-0.4.0.tar.gz.drv /tmp/guix-tests/store/kf64bmmfykhkpsrgl20kskilfdkwk86i-guile-quickcheck-0.1.0.drv /tmp/guix-tests/store/7vbd1f8krir5jqccz3mxq0044bwc7ihd-guile-quickcheck-0.1.0.tar.gz.drv /tmp/guix-tests/store/lpy7vlz5wd3rih2as1xb41lkf9mmq329-guile-lzma-0.1.0.drv /tmp/guix-tests/store/xfb2vf4yh9s94j9ipc54riak27qh1d92-guile-lzma-0.1.0.tar.gz.drv /tmp/guix-tests/store/i8lwzllyh801gnyig9qg2ssrxp4w04qm-guix-1.3.0-16.10ceb3e-checkout.drv /tmp/guix-tests/store/7w5akmhcxgj5kwk8i34l4ar0347fwxas-module-import-compiled.drv /tmp/guix-tests/store/2d2cbya67yyji8xchr1in8knxix9mcr8-mkfontdir-1.0.7.drv /tmp/guix-tests/store/k1sh37msdlm5cq4phpj9kj9gqvw7pqr2-mkfontscale-1.2.1.drv /tmp/guix-tests/store/1zabz0ns5hza30yw81i99mqmcn2v0995-libfontenc-1.1.4.drv /tmp/guix-tests/store/zsd55ydb7knk2cz01f6d3hpgq2ph48c2-libfontenc-1.1.4.tar.bz2.drv /tmp/guix-tests/store/akh1wmkmcaxhfk1s4pf9wka6bim8671l-mkfontscale-1.2.1.tar.bz2.drv /tmp/guix-tests/store/my0azai9frif7yfdr4flv0a39hd9xj52-mkfontdir-1.0.7.tar.bz2.drv /tmp/guix-tests/store/vsjakghydi7drfic19zf183zr36qahyd-module-import-compiled.drv /tmp/guix-tests/store/gs1yf3z7qns4md3i0xd09l1fhsks3lf1-guile-gdbm-ffi-20120209.fa1d5b6.drv /tmp/guix-tests/store/ixizak8jmhxlx20a6mfhjyfpyvfymk31-guile-gdbm-ffi-20120209.fa1d5b6-checkout.drv /tmp/guix-tests/store/3mkzj099x06c836655r5m1dwk8nnwi2f-guile-gdbm-ffi-20120209.fa1d5b6-checkout.drv /tmp/guix-tests/store/jn061ljmq78h8q0d8hkhz7hc82nb4s0y-module-import-compiled.drv /tmp/guix-tests/store/2ibhvm4kjqzl7jimn8sw30nrljrj8c0y-locale-multiple-versions.drv /tmp/guix-tests/store/kzzlxx72p8wgxrgcjh13p3128kpgkw7f-locale-2.33.drv /tmp/guix-tests/store/pv0ziwf8zikap87l6l2q935aydhcz9gd-module-import-compiled.drv /tmp/guix-tests/store/rh0z0b8gwryj2m25wr00wimxrrckynzk-module-import-compiled.drv /tmp/guix-tests/store/wmdk807ql9dk2d2nh982870j5h6w9wnz-locale-2.31.drv /tmp/guix-tests/store/4nkpxx2jjapbnl0fnpnas1x2pvahc5ih-glibc-2.31.drv /tmp/guix-tests/store/kflx39w92xlv1lg3pvgv1sqz939mzjc9-glibc-2.31.tar.xz.drv /tmp/guix-tests/store/1ipqan74q3gddmn8v2xc3giz6i5r6wks-glibc-2.31.tar.xz.drv /tmp/guix-tests/store/h0fan64jx0dx3mmp4skmmahmlj9jhvnm-boot.drv /tmp/guix-tests/store/7pffhz08zb0vdyki6pyhplppbaw08c2i-shepherd.conf.drv /tmp/guix-tests/store/05ir128ki8dr8az3x8cx9mi8q64kwjkz-shepherd-file-system--dev-shm.go.drv /tmp/guix-tests/store/rmb5kxipybpdm48wdc208vvyqn78mdma-shepherd-file-system--dev-shm.scm.drv /tmp/guix-tests/store/hnzl0dlchng6cm4fznzxfl3pyjnfl5f7-module-import-compiled.drv /tmp/guix-tests/store/s3w6qpdrf58sqh37nz0wl21r5rharc7k-module-import-compiled.drv /tmp/guix-tests/store/0ca6ykz8b0rpij105amxqs8zcbra70ab-shepherd-file-system--sys-firmware-efi-efivars.go.drv /tmp/guix-tests/store/m60pqqzv507p7i4waffysnpv1pas8xsn-shepherd-file-system--sys-firmware-efi-efivars.scm.drv /tmp/guix-tests/store/2g6kwka5sp4x7cd5vfgav4awcl4ymxan-shepherd-user-homes.go.drv /tmp/guix-tests/store/a4hhg37g0bgg79s90dyndy19sfkc1bnb-shepherd-user-homes.scm.drv /tmp/guix-tests/store/awzwm1qisdwgnnk1g39nf7i7dj0d91pz-module-import-compiled.drv /tmp/guix-tests/store/hxnjyfvkybzwxqknil19wflaqad64jxp-module-import-compiled.drv /tmp/guix-tests/store/3wxv95j50h8xrn3q433rp99271va36cp-shepherd-root-file-system.go.drv /tmp/guix-tests/store/q4nbrgc4fcngi45pv3bsg443zxwdgs8v-shepherd-root-file-system.scm.drv /tmp/guix-tests/store/9zlxc9kgswhccf9192kd9xrk5l9dsi0s-module-import-compiled.drv /tmp/guix-tests/store/wjvppjq14hm9vyymkmd5qsswyy7i17c0-module-import-compiled.drv /tmp/guix-tests/store/4vhn8mvz80advyy97b73grrr3xa3vilx-shepherd-nscd.go.drv /tmp/guix-tests/store/gnmakai7cxbzdkr5sww1wvpwjgqiz02r-shepherd-nscd.scm.drv /tmp/guix-tests/store/527fsfhxc1a9ryn5a8lrdbxs7fy83l64-shepherd-term-tty6.go.drv /tmp/guix-tests/store/h4k92vm8jjx4lsr66mzc65mirip3j4bw-shepherd-term-tty6.scm.drv /tmp/guix-tests/store/4dsmds0m1lirgl0nzdl57n5siwm2mz6d-mingetty-1.08.drv /tmp/guix-tests/store/14ixg3cp2fpdijzbk4d8qn9s9w4g88yy-mingetty-1.08.tar.gz.drv /tmp/guix-tests/store/547904qqk8m4gwqcmq1l48qy65fn7m22-shepherd-console-font-tty5.go.drv /tmp/guix-tests/store/kay6v2f8rhvj72w9m0ya88l519l1nxrd-shepherd-console-font-tty5.scm.drv /tmp/guix-tests/store/9k8abzivz7v3x5m063cs9bnbsgbc0v0g-shepherd-syslogd.go.drv /tmp/guix-tests/store/rl8jfgwli3pfma3clksfld2hl2jrzp67-shepherd-syslogd.scm.drv /tmp/guix-tests/store/apjyy2r0k8s2ki9brz7l6092hdjsiggj-shepherd-urandom-seed.go.drv /tmp/guix-tests/store/024h3c4zjgslinr3nvh41wg6chz9c1ld-shepherd-urandom-seed.scm.drv /tmp/guix-tests/store/arczysi6hsqpawaa2kvsrqzkhhvymmh1-shepherd-guix-daemon.go.drv /tmp/guix-tests/store/m1p951xfjd1nwwlx8b5589f3jz8qqvdz-shepherd-guix-daemon.scm.drv /tmp/guix-tests/store/mwd8vj7h4rslp4qkri4dk8hnrfrj1ql1-module-import.drv /tmp/guix-tests/store/8x5s2m9sqdk6sppr4382b93ygsbaijbw-config.scm.drv /tmp/guix-tests/store/n3rn9ipfychllr8dar2rxcxx43kmxhbg-module-import.drv /tmp/guix-tests/store/ncd2b6k55azqmrzyllsjzdry93l77qn4-module-import-compiled.drv /tmp/guix-tests/store/qa6rw3g1mi42p1nycs51vgcgdaq7yk3d-module-import-compiled.drv /tmp/guix-tests/store/byib2n10y4vamwnc2mcjdll09sbw6z6a-shepherd-console-font-tty6.go.drv /tmp/guix-tests/store/9vhvzlzhz3pdi68rrhhs3kd444gvinzx-shepherd-console-font-tty6.scm.drv /tmp/guix-tests/store/d4llci3g9kqg8flzyiwy09ipkpcc14nm-shepherd-user-processes.go.drv /tmp/guix-tests/store/7kp78i7w8aj42n1d16bmnkbyxqz0f8h5-shepherd-user-processes.scm.drv /tmp/guix-tests/store/fa2ivfg3wxaw1bdq92jgl7hccbhr97c7-shepherd-console-font-tty2.go.drv /tmp/guix-tests/store/9snwb94i9ki1d18cf334ag9h4l3k3kc6-shepherd-console-font-tty2.scm.drv /tmp/guix-tests/store/fk7g2kb2sl9vwx52hyh5p19l9ksssgby-shepherd-loopback.go.drv /tmp/guix-tests/store/fx8kksvnkmalymxdy5q6al4lypygg656-shepherd-loopback.scm.drv /tmp/guix-tests/store/wdqm8d00abcy2f42bd4xl2wgvzp9nwmx-tear-down-network.drv /tmp/guix-tests/store/70212b113v6pbzc9n1avcvv9574bcdw3-guile-netlink-1.1.1.drv /tmp/guix-tests/store/38ajypya8gkjcz69h2ykiz4vvyac60qq-guile-netlink-1.1.1-checkout.drv /tmp/guix-tests/store/rrgm2mnmwsvnk596zmczk01v8fjkmvw8-module-import-compiled.drv /tmp/guix-tests/store/zjdznqsi1w8zwx2zslr7k6064ss1cqk9-set-up-network.drv /tmp/guix-tests/store/fpmxhh6ga5nlz0prh1kf2qc4f8qfpnsw-shepherd-console-font-tty3.go.drv /tmp/guix-tests/store/1hl7s95cnqvbnxlm543c7l33dkhflzgq-shepherd-console-font-tty3.scm.drv /tmp/guix-tests/store/h73ms04dmx1p014idk4k91bpairnil0l-shepherd-term-tty5.go.drv /tmp/guix-tests/store/vx60047x7pmyc4hm8vjdd4jcq70bqk9d-shepherd-term-tty5.scm.drv /tmp/guix-tests/store/hqch2hp1m5llqm0acfasi1xajb6wknvk-shepherd-mcron.go.drv /tmp/guix-tests/store/ijaisd847p10ccmkv04g64vgy72465b0-shepherd-mcron.scm.drv /tmp/guix-tests/store/b43n0fg0fmrn27znbq52mcj88s3mj2ri-mcron-job.drv /tmp/guix-tests/store/hgrp4wgiv8idb9rb0r3568r5nxpqxjxv-mcron-job.drv /tmp/guix-tests/store/if9ayb04iq839vzv37m306y6fifaf7l6-shepherd-console-font-tty1.go.drv /tmp/guix-tests/store/yrcchip5rj5w5fiyz01qcg2p1scd66a5-shepherd-console-font-tty1.scm.drv /tmp/guix-tests/store/jr0mbbpnsg45gjksxppchpkz497qqdsa-shepherd-file-systems.go.drv /tmp/guix-tests/store/i52rzjn72c2cdg9fk3ah922by5pnaynk-shepherd-file-systems.scm.drv /tmp/guix-tests/store/jy1zmy6w6n2b73ccz9fzqfqj718ahz95-shepherd-user-file-systems.go.drv /tmp/guix-tests/store/ysmdg2lv1lfsi3a9dfbj7jmz5xfq6a32-shepherd-user-file-systems.scm.drv /tmp/guix-tests/store/mi34xy94z2idqnbqss3lsrlywv56sc7j-shepherd-file-system--tmp-guix-tests-store.go.drv /tmp/guix-tests/store/5j4ys8qlg5hpgkwfiik0zg95f7iq5px5-shepherd-file-system--tmp-guix-tests-store.scm.drv /tmp/guix-tests/store/nhjsrkydg2j1p54nqy5h2a5azizvd4zg-shepherd-udev.go.drv /tmp/guix-tests/store/v843clfqz2gpjl147fns238qmh75jglw-shepherd-udev.scm.drv /tmp/guix-tests/store/gz0wkf28v9ss6d1m1ahmldss9v7v9nr7-module-import-compiled.drv /tmp/guix-tests/store/kvr4avidix1mdgbcsmszc7yra91fhs6m-udev.conf.drv /tmp/guix-tests/store/yhlcwiwmvy6as110708n8pw02sgpn6sy-udev-rules.drv /tmp/guix-tests/store/3aflpa7pa4awlygblgxjkkwx99yj54q9-fuse-2.9.9.drv /tmp/guix-tests/store/xq1mlgk5rw7ka30jdx4aj31sa2grg039-fuse-2.9.9.tar.xz.drv /tmp/guix-tests/store/rrxskzv964zilsi81wwam87ix2yxvr2c-fuse-2.9.9.tar.gz.drv /tmp/guix-tests/store/5iq94vsvj9g5ylvnsxjk0vhrnjlvyldx-alsa-utils-1.2.4.drv /tmp/guix-tests/store/2bfkk8g82aphfxphbk8ak8lgcqv7wgyl-alsa-lib-1.2.4.drv /tmp/guix-tests/store/bsc41dnqy1g2g0s2g36ai2cambjpmf69-alsa-ucm-conf-1.2.4.drv /tmp/guix-tests/store/q3cf9m524ahanwzkg921s9nzjwmzc5yx-alsa-ucm-conf-1.2.4.tar.bz2.drv /tmp/guix-tests/store/kwcp0mcd5zsg7qzwq4r88kijrpjmvxx8-alsa-topology-conf-1.2.4.drv /tmp/guix-tests/store/zsnmj62w05savi7v9qnyjy3v9abcrpk8-alsa-topology-conf-1.2.4.tar.bz2.drv /tmp/guix-tests/store/p1n4m081mi2nsmfwq0p5zppcg3yg71b5-alsa-lib-1.2.4.tar.bz2.drv /tmp/guix-tests/store/52i08rf16kmpyfxhib1526bgabrn28c8-libogg-1.3.5.drv /tmp/guix-tests/store/16qwdhhkzlkpd8wvsxv0xzqrvg8yc814-libogg-1.3.5.tar.xz.drv /tmp/guix-tests/store/53y6fad0d59jmnkcz544wbq38fjip7zk-libsndfile-1.0.30.drv /tmp/guix-tests/store/lqclr88wcxhj6ijkaqc3sdbfl3sz7ch2-flac-1.3.3.drv /tmp/guix-tests/store/zyanng5z4ksq329x4shlgdr6j5rh8ygv-flac-1.3.3.tar.xz.drv /tmp/guix-tests/store/pkz609irqk1d0lxkzd8krn9z9vpp794b-libsndfile-1.0.30.tar.xz.drv /tmp/guix-tests/store/zg1blp87srv2bw1r5qfz9yhksvjlms30-libsndfile-1.0.30.tar.bz2.drv /tmp/guix-tests/store/wijgv951ph20wn4l43yz4rj2mv2axcjy-libvorbis-1.3.7.drv /tmp/guix-tests/store/7qik7fi5i09c9cd6b71hfhg617dfpnb1-libvorbis-1.3.7.tar.xz.drv /tmp/guix-tests/store/yf42yz2b3cam6cagcmdzhk5vpwjkps4p-opus-1.3.1.drv /tmp/guix-tests/store/dz208rym5vxhkhl6zx9v2fvs1f8ks650-opus-1.3.1.tar.gz.drv /tmp/guix-tests/store/k9nqv6vwwgl0n8gyz8nvb1zgmi6rbvff-libsamplerate-0.1.9.drv /tmp/guix-tests/store/zg3djdgc9s0ybi3blbzwdkz8dbqpgnfq-libsamplerate-0.1.9.tar.gz.drv /tmp/guix-tests/store/pcblm0sf6g0dyx84plphsfrd57wbyhhs-alsa-utils-1.2.4.tar.bz2.drv /tmp/guix-tests/store/lylq6cmrlfgivgqw07lpk3x36r083biy-crda-3.18.drv /tmp/guix-tests/store/0iy3553svn6qaxsqi34sqmqvspxy380m-crda-3.18.tar.xz.drv /tmp/guix-tests/store/z76fdjjwhsyjfp13g6ybycbg5nnfdggn-crda-3.18.tar.xz.drv /tmp/guix-tests/store/8vaqpglndqjj0lkgjndsg0hdp916jhjr-wireless-regdb-2020.11.20.drv /tmp/guix-tests/store/g1nfrbbdvddf9b4l5xbkgvpfhcdmnbmd-wireless-regdb-2020.11.20.tar.xz.drv /tmp/guix-tests/store/v4xazqky7750pc2qqf65nxhy8hzan2hv-wireless-regdb-2020.11.20.tar.xz.drv /tmp/guix-tests/store/wkkacc1g5x79gmxzisrm1hiwvyd64z4k-90-kvm.rules.drv /tmp/guix-tests/store/x9hvp3w74msfmhs3xi75rkf66chaw3si-module-import-compiled.drv /tmp/guix-tests/store/xn7835n120pycqzqhfbsszk555hf0bvn-lvm2-2.03.11.drv /tmp/guix-tests/store/pjm81nfsixr57mzwv6j3n090sy6b204x-LVM2.2.03.11.tar.xz.drv /tmp/guix-tests/store/qbnmrqyxy66rnjxyv3xmcl3cg3184ml9-LVM2.2.03.11.tgz.drv /tmp/guix-tests/store/q22xja91xjgrjpaqvin3m3dla49b21hy-module-import-compiled.drv /tmp/guix-tests/store/pad8kcbkbs2mfgq8i1p4jxmr7c0vybfy-shepherd-file-system--sys-kernel-debug.go.drv /tmp/guix-tests/store/x772778v7ymnbmf6nff5kpvr13hbbxjj-shepherd-file-system--sys-kernel-debug.scm.drv /tmp/guix-tests/store/pas05i4iawcrzw3350h9r98fhj1m25nf-shepherd-file-system--dev-pts.go.drv /tmp/guix-tests/store/5rzi4ah3nah2ll3cc929fd4pdin9kifs-shepherd-file-system--dev-pts.scm.drv /tmp/guix-tests/store/pq15nn0yafddgpjy1dji5xxisinwwa8f-shepherd-virtual-terminal.go.drv /tmp/guix-tests/store/9fd06g155i7qp3aylnahdydypqsj2pfc-shepherd-virtual-terminal.scm.drv /tmp/guix-tests/store/pr1dapi4sz132sn79d256w48cxmfb4wx-shepherd-sysctl.go.drv /tmp/guix-tests/store/jvafzs09sf1rcj3a4prlagx6axbg84s0-shepherd-sysctl.scm.drv /tmp/guix-tests/store/52xsdyhmp3a5bkgj7jv734lrav9rbdnb-sysctl.conf.drv /tmp/guix-tests/store/r7vc685nkwa2v69889231bkchs3kbvry-shepherd-term-tty4.go.drv /tmp/guix-tests/store/3n75qdjnjgrkgcyqf324fq2lzxrzwld0-shepherd-term-tty4.scm.drv /tmp/guix-tests/store/s6lf90dgc1yjrvk78qiiw8bwf26q2i5a-shepherd-term-tty1.go.drv /tmp/guix-tests/store/9820wvllafyjjwki5nq1iqwm0kvv96d3-shepherd-term-tty1.scm.drv /tmp/guix-tests/store/wimi96my5cykp1vc5kixbyixfn2kkkf1-shepherd-term-tty3.go.drv /tmp/guix-tests/store/k5lvc8dasymviiakx0czajyxi0wkb4rv-shepherd-term-tty3.scm.drv /tmp/guix-tests/store/xjjfqkpvx5ycfgybsdc3k1nfy4cprj5z-shepherd-host-name.go.drv /tmp/guix-tests/store/by6kgpdrxvddir5g6k4c8kbnyjjqxc8l-shepherd-host-name.scm.drv /tmp/guix-tests/store/zd9fiqilx60yn7czrili99f5mwvikmx6-shepherd-console-font-tty4.go.drv /tmp/guix-tests/store/4y1w31irbp5ffc9zgajqr4hhm9fv4qf0-shepherd-console-font-tty4.scm.drv /tmp/guix-tests/store/zdsljy9svpkrdgqahcp79dfvi71jywa3-shepherd-term-tty2.go.drv /tmp/guix-tests/store/2cwsmqjlknkgc63dpvm5v2q0ikzgdvl4-shepherd-term-tty2.scm.drv /tmp/guix-tests/store/zy7dc1pjjii1vz875wcm83aywz0g0nl4-shepherd-term-auto.go.drv /tmp/guix-tests/store/agay8h16f1nnvhp4l1fni967l3z0fc3g-shepherd-term-auto.scm.drv /tmp/guix-tests/store/w8wl3kwvpi52iihxa2nsmb1dnwj25fli-module-import-compiled.drv /tmp/guix-tests/store/wws4xd6rhv9kvyf3qzcmp60g7f6d78w4-activate.scm.drv /tmp/guix-tests/store/1qynvw49rnrf8gbdfmql9wr0qnxs3z6z-activate-service.scm.drv /tmp/guix-tests/store/c4bx1jhwhvq2xx2b199d5ih760l3idin-activate-service.scm.drv /tmp/guix-tests/store/lfl2z97yr6r6iva1v2y4c851mcy84xhn-module-import-compiled.drv /tmp/guix-tests/store/dagrabysflq2f1lqp1z7hcr3i71gyfca-activate-service.scm.drv /tmp/guix-tests/store/4qvvh9dz4v6zyzr2kbqmhl2ssip5iy07-firmware.drv /tmp/guix-tests/store/kdqkirpml4xd4zich6i035lbxwkxdkff-ath9k-htc-firmware-1.4.0.drv /tmp/guix-tests/store/2vamx6irh3ynkmv05c430c73f2lsr0gj-ath9k-htc-firmware-1.4.0-checkout.drv /tmp/guix-tests/store/jipfzcdv5yj6jx7ld7j1s6r0r28xk1aa-ath9k-htc-firmware-1.4.0-checkout.drv /tmp/guix-tests/store/n0cw1a60ypwh557mjwg12h9mzyg4sdad-binutils-cross-xtensa-elf-2.33.1.drv /tmp/guix-tests/store/c7xkbfszmjr7mg5pgs4k6f25wa98arfp-binutils-2.33.1.tar.xz.drv /tmp/guix-tests/store/7mdbc0654zq1wjaprrfnj2w7nq1zkljz-binutils-2.33.1.tar.bz2.drv /tmp/guix-tests/store/x49j6ldvjf5f5zpac42c9fbrjlaq3s06-gcc-cross-sans-libc-xtensa-elf-10.3.0.drv /tmp/guix-tests/store/1x5dx260g6h28n6az37hclpq9cdcgdfj-libstdc++-headers-10.3.0.drv /tmp/guix-tests/store/4bjmwzhm6q4fkfzr86bpckmmbjjxwr5n-libstdc++-10.3.0.drv /tmp/guix-tests/store/gxp7fnmlmcif375r9bwdj1r3ndcjqgaf-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/3nvq0gkam8k20l0gc48hfjslcmgshixk-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/9jnsjis5r35yinyyawlc41hwb590gai6-isl-0.23.drv /tmp/guix-tests/store/wa4yvjq1svk7767z9c84pqpzs79ix10b-isl-0.23.tar.bz2.drv /tmp/guix-tests/store/d8l1jxzqd20ma3d5nl3mchwgkm713w1y-module-import-compiled.drv /tmp/guix-tests/store/fdx1lj479fbqnc0vfgb351gb0km6jkg8-mpc-1.2.1.drv /tmp/guix-tests/store/x20glm8arvb8v6pdhmnrzhc14k2hvbmw-ld-wrapper-xtensa-elf-0.drv /tmp/guix-tests/store/ncmzhy0y3xzg06mdwczx58c6nvy7n1hc-openfwwf-firmware-5.2.drv /tmp/guix-tests/store/l94sp53jfs13h8a3k23n49ygs1r3brwz-openfwwf-5.2.tar.gz.drv /tmp/guix-tests/store/n8545gsxsna2wkav1yd20m56dz2c8yiz-b43-tools-0.0.0-1.27892ef.drv /tmp/guix-tests/store/8si0b4bx61imy7p8k6md8ijb7ndxwh0s-b43-tools-0.0.0-1.27892ef-checkout.drv /tmp/guix-tests/store/g1cqpg3fg2znbxk90bvfagvnz7imwicn-activate-service.scm.drv /tmp/guix-tests/store/3hpca7axi08bvdy48v06w93l7i656dyf-module-import-compiled.drv /tmp/guix-tests/store/jv51zjsr89bn1qq2mi0x7kwly2z6fdfs-activate-service.scm.drv /tmp/guix-tests/store/m8h9xj59lg60wiy28j1zma3ijv1x3rhp-activate-service.scm.drv /tmp/guix-tests/store/nnxl09npxwmswwkl6kwa3jzqwf7hh376-modprobe.drv /tmp/guix-tests/store/p7ls8mpcjih57blfqpwq4imfgz7q1j7c-activate-service.scm.drv /tmp/guix-tests/store/s1j1919p16apd1cpxz1ibmj4shc5i18p-acl.drv /tmp/guix-tests/store/7igz808sygf9kiwhj7fjw71s5g0imsx2-module-import-compiled.drv /tmp/guix-tests/store/inki0769jxfpvzbk8jm3sky0mfgj2bk0-module-import.drv /tmp/guix-tests/store/vvy7bky90y4f3gxgn98hrvf0k4a8kg3x-activate-service.scm.drv /tmp/guix-tests/store/khd7n6cr2rxrvmppw54pcxw35a9zkp2r-raw-initrd.drv /tmp/guix-tests/store/4wzg2f1zv056ywpd9mpfrv9d4hkq2axq-guile-static-stripped-3.0.7.drv /tmp/guix-tests/store/1xq5rs4pscsgszmlc5izml9nrjhbifs2-gcc-7.5.0.drv /tmp/guix-tests/store/4572swx6ia9g2dqq8b5hcrazzv8v3w1n-glibc-2.33.drv /tmp/guix-tests/store/gq5b77lk64cqf8mhkd32jxp1i741cpdz-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/smsrnlbqgsjzl9n9sggv6dv7y7m9azpg-gcc-7.5.0.drv /tmp/guix-tests/store/7dl30lqn8x1ripjzbgpkfz9xmlm707zy-gcc-7.5.0.tar.xz.drv /tmp/guix-tests/store/4s95n8zhs5b2m4sj0q1kgkgy48vncpas-gcc-7.5.0.tar.xz.drv /tmp/guix-tests/store/21i644r94x8gswgmc5iss8wa62h0ncy4-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/ciyddip3x717k9g3i8f3a2gx14r5mi86-libunistring-0.9.10.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/d1mj63gqs8izim6ky57bk41xg6yzgdvj-pkg-config-0.29.2.drv /tmp/guix-tests/store/jbg2790c8haz1gl5k3lyr1s1z6wyiw4g-bash-minimal-5.1.8.drv /tmp/guix-tests/store/m2nrfckb4ff4r12m0mx77rlffdqql13c-libgc-8.0.4.drv /tmp/guix-tests/store/rg94n3mpkxblliwvg12mbvc0kzpdcn9s-libffi-3.3.drv /tmp/guix-tests/store/v1rvwqa4brbhfafr01i17vwsg0z5aprk-guile-static-3.0.7.drv /tmp/guix-tests/store/aq7plja293zcaahd2jlfqpb32m6b0f5w-init.drv /tmp/guix-tests/store/0f7a6d6qc2jc6mgirglfr023m74iji8f-linux-modules.drv /tmp/guix-tests/store/b9qd33i2s5jxl3cs7sgkwibdivbhrh19-module-import-compiled.drv /tmp/guix-tests/store/s26lr7s069dwydznixz07bn0qmpcbigp-linux-libre-5.15.10.drv /tmp/guix-tests/store/07n9ps8hpmbkbhwsbmkd6jk8jx9j5mqj-bc-1.07.1.drv /tmp/guix-tests/store/4w46qd2mgv12i9xrp7rrknsgx9xgvgzy-bc-1.07.1.tar.xz.drv /tmp/guix-tests/store/b3js201yr9f5iqs9frwq49hrlrbap0ja-bc-1.07.1.tar.gz.drv /tmp/guix-tests/store/77hnwm8qkdrk9kqva42hz8q1b5v0a4z3-elfutils-0.183.drv /tmp/guix-tests/store/lshhrjlv19fi8nzwd9dd6ma8nzx7gs7r-elfutils-0.183.tar.xz.drv /tmp/guix-tests/store/j188gxqdvzjh0pkrf2xgnginallxg49a-elfutils-0.183.tar.bz2.drv /tmp/guix-tests/store/g525wv7c3dya1ccwbp1p1b62whyn9dqc-linux-libre-5.15.10-guix.tar.xz.drv /tmp/guix-tests/store/c3s808k5xvc9lxy2ckdj8ryw15n8klni-linux-libre-5.15.10-guix.tar.xz.drv /tmp/guix-tests/store/4l57v4b3a4s1r0kfj2pvcln9m1pykbw9-linux-5.15.10.tar.xz.drv /tmp/guix-tests/store/wyirxncav87mpxzd77izq2lqwbzfhdxx-linux-libre-deblob-5.15.10-gnu.drv /tmp/guix-tests/store/ypxrlkgmmakhdma2k2b0s36bsna711hn-linux-libre-deblob-check-5.15.10-gnu.drv /tmp/guix-tests/store/rq0dwsih9817phny6kz3h9g9bk44gxs7-100gnu+freedo.patch.drv /tmp/guix-tests/store/zf7a8fgkq4w3cc44lsv934vmq47i85i5-linux-libre-arm-export-__sync_icache_dcache.patch.drv /tmp/guix-tests/store/a738f8asyhsl0frsgnrsqsanm1s8b4wc-e2fsck-static-1.46.4.drv /tmp/guix-tests/store/n8zb309g24wq727f3p4vlblkxxpsrqvf-e2fsprogs-1.46.4.drv /tmp/guix-tests/store/wzknjvhwrxp782k4kqqvs8mjmb1vcr03-module-import-compiled.drv /tmp/guix-tests/store/yf3l8m0wqkd1wc1r4zns4bzgsj78fis8-module-import-compiled.drv /tmp/guix-tests/store/r6vm6fspfkdw7nnxmlll33ym6amy9xvs-parameters.drv /tmp/guix-tests/store/wqjfykadv11c1876h8sr0ahfbwafb326-profile.drv The following profile hooks would be built: /tmp/guix-tests/store/73lirdk43w9p6k1ia4whirssh6m2fsps-ca-certificate-bundle.drv /tmp/guix-tests/store/gvc97b9pdpxkqawd2cixmfqp6z9prw22-emacs-subdirs.drv /tmp/guix-tests/store/mdw090aqgsk16mq57hz5pzwyrr8kdxgv-fonts-dir.drv /tmp/guix-tests/store/rxjdh5w5irhlqqf93hvjsa993c1abfp3-info-dir.drv /tmp/guix-tests/store/s1mx5kn5kyqllqrw5nxd4c02qsnxapfz-manual-database.drv /tmp/guix-tests/store/0apnsl2gwwj6han01d81la1xn91phrqc-linux-module-database.drv + guix system build t-guix-system-13177 -d accepted connection from pid 13275, user nixbld /tmp/guix-tests/store/myshk2r8b6sn7aqycjzd52y7js2q2yij-system.drv + grep '\.drv$' + guix system build t-guix-system-13177 -d accepted connection from pid 13282, user nixbld /tmp/guix-tests/store/myshk2r8b6sn7aqycjzd52y7js2q2yij-system.drv + guix system vm t-guix-system-13177 -d accepted connection from pid 13290, user nixbld /tmp/guix-tests/store/5w2nw855vlsq8ypkjmw7qa3s7q7sn3fa-run-vm.sh.drv + guix system vm t-guix-system-13177 -d + grep '\.drv$' accepted connection from pid 13297, user nixbld spurious SIGPOLL /tmp/guix-tests/store/5w2nw855vlsq8ypkjmw7qa3s7q7sn3fa-run-vm.sh.drv ++ guix system vm t-guix-system-13177 -d accepted connection from pid 13305, user nixbld spurious SIGPOLL spurious SIGPOLL + drv1=/tmp/guix-tests/store/5w2nw855vlsq8ypkjmw7qa3s7q7sn3fa-run-vm.sh.drv ++ guix system vm t-guix-system-13177 -d accepted connection from pid 13312, user nixbld + drv2=/tmp/guix-tests/store/5w2nw855vlsq8ypkjmw7qa3s7q7sn3fa-run-vm.sh.drv + test /tmp/guix-tests/store/5w2nw855vlsq8ypkjmw7qa3s7q7sn3fa-run-vm.sh.drv = /tmp/guix-tests/store/5w2nw855vlsq8ypkjmw7qa3s7q7sn3fa-run-vm.sh.drv ++ guix system image -t iso9660 t-guix-system-13177 -d accepted connection from pid 13319, user nixbld spurious SIGPOLL + drv1=/tmp/guix-tests/store/099p677jpqqlnkj06skzrpblxmzbir54-image.iso.drv ++ guix system image -t iso9660 t-guix-system-13177 -d accepted connection from pid 13326, user nixbld + drv2=/tmp/guix-tests/store/099p677jpqqlnkj06skzrpblxmzbir54-image.iso.drv + test /tmp/guix-tests/store/099p677jpqqlnkj06skzrpblxmzbir54-image.iso.drv = /tmp/guix-tests/store/099p677jpqqlnkj06skzrpblxmzbir54-image.iso.drv + grep 'label = "file-systems"' + guix system extension-graph t-guix-system-13177 accepted connection from pid 13333, user nixbld "20816608" [label = "file-systems", shape = box, fontname = sans]; + guix system shepherd-graph t-guix-system-13177 + grep 'label = "guix-daemon"' accepted connection from pid 13341, user nixbld "guix-daemon" [label = "guix-daemon", shape = box, fontname = sans]; + make_user_config group-that-does-not-exist users + cat + guix system build t-guix-system-13177 -n accepted connection from pid 13350, user nixbld + grep 'primary group.*group-that-does-not-exist.*undeclared' t-guix-system-error-13177 guix system: error: primary group 'group-that-does-not-exist' of user 'dave' is undeclared + make_user_config users group-that-does-not-exist + cat + guix system build t-guix-system-13177 -n accepted connection from pid 13359, user nixbld + grep 'supplementary group.*group-that-does-not-exist.*undeclared' t-guix-system-error-13177 guix system: error: supplementary group 'group-that-does-not-exist' of user 'dave' is undeclared + cat + cat + guix system build /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/t-guix-system-13177/config.scm -n accepted connection from pid 13369, user nixbld substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable substitute: guix substitute: warning: authentication and authorization of substitutes disabled! The following derivations would be built: /tmp/guix-tests/store/rwx44df4fzsm9pyj0n9d309780v2v9jr-system.drv /tmp/guix-tests/store/0faq5rk1hscha45yapv1lyc03j267566-profile.drv /tmp/guix-tests/store/03spvwpinh4ysdhs3zfsmxisf5ah84jj-usbutils-014.drv /tmp/guix-tests/store/21pmnj5l8wwv9j6565ami62ql6rdbivp-gzip-1.10.drv /tmp/guix-tests/store/5rffkc4lx8d86gj4fa4rvg0spps1p4v0-file-boot0-5.39.drv /tmp/guix-tests/store/3drxkc76igrw1fi4hblngm7lmwzvhbfg-gcc-bootstrap-0.drv /tmp/guix-tests/store/d6f0fa8x4if8asg5sf69aqma7nm265a0-glibc-bootstrap-0.drv /tmp/guix-tests/store/jvxnnz4bmgqfh6m8cgmmlv94pi68gwxl-glibc-2.25.tar.xz.drv /tmp/guix-tests/store/hcvxcl1hwj875z5f1h35f32khxafr9lc-gcc-5.4.0.tar.xz.drv /tmp/guix-tests/store/5h5z1far1zz5lb9z2aqj8w711z3qisnx-module-import-compiled.drv /tmp/guix-tests/store/6lwnac3ga3qs598j99n3vfc96fqi554h-file-5.39.tar.gz.drv /tmp/guix-tests/store/8j2q9fv5azb6sclr1b6ypjybpjybwb84-make-boot0-4.3.drv /tmp/guix-tests/store/irmyrsqw0m0mk8swb00ryf3ic6pqw2jf-bootstrap-binaries-0.drv /tmp/guix-tests/store/4x2n9xjb3qqm34vc9k2c1w9b9xm46agx-static-binaries.tar.xz.drv /tmp/guix-tests/store/msy4c035ih8ss7w3mazn0y6cvrwrmazj-binutils-bootstrap-0.drv /tmp/guix-tests/store/zr43wy48bl6lhld21ajilvj895q7jsqa-binutils-2.27.tar.xz.drv /tmp/guix-tests/store/vdg7a9kpy8rs12abqjyxr7d5idcwci68-make-4.3.tar.xz.drv /tmp/guix-tests/store/wy7isgmjyiwbzsyx1f3bmhw4kdi65l7i-make-4.3.tar.gz.drv /tmp/guix-tests/store/5rx3i7c94a787lns10xwgim1hq84m7v1-binutils-cross-boot0-2.37.drv /tmp/guix-tests/store/gp2iyp8vzj2904mha81vsx3a5l9ndkcq-binutils-2.37.tar.xz.drv /tmp/guix-tests/store/vj5dqqhka5p7qi20kh32396bd1y127al-binutils-2.37.tar.bz2.drv /tmp/guix-tests/store/p677ngbz80k4ld9dn87s65ni32v6lmjn-diffutils-boot0-3.8.drv /tmp/guix-tests/store/cpsrirfv2871swvx7slsdabnyma4h781-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/xsmnf0jmi7p4n60i8p1mkvpm05sp6a6w-findutils-boot0-4.8.0.drv /tmp/guix-tests/store/xl0b647qzhamil3s0w46970xp4lqzc09-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/m0hxwnqk3j0v7333n3ii2jqix1da025s-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/5w71j1ahwqsicxm3kvwcfak690fsdwm3-guile-3.0.7.drv /tmp/guix-tests/store/00rl26bz9iy645lfvjz3wz8zv2813cjj-pkg-config-0.29.2.drv /tmp/guix-tests/store/bhan5y2nxnwnz9bcxdy76h9rfq20wml2-pkg-config-0.29.2.tar.gz.drv /tmp/guix-tests/store/dp1ja89a8vkxgf1p4jc6r5ymaf3zf8qc-linux-libre-headers-5.10.35.drv /tmp/guix-tests/store/0nqx5jlmc5mk9nrfvab8sn3g33fssycs-m4-boot0-1.4.18.drv /tmp/guix-tests/store/6d9fq4zyksi8my2avvmf4ccca6x353am-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/wfv4vwpw1xv13b7yff3siichmhifi8j3-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/cxfvgfda8b95ld7yb98472bzr487akfl-bison-boot0-3.7.6.drv /tmp/guix-tests/store/dsmw8wfsxlq3nk1vrc8ni7a6387k0695-perl-boot0-5.34.0.drv /tmp/guix-tests/store/q45vcwi1vdnl1ivwaxk6v2xcd8xa4ang-perl-5.34.0.tar.xz.drv /tmp/guix-tests/store/aaqnz7s3w73pb173krlx673qpmism8f5-perl-5.34.0.tar.gz.drv /tmp/guix-tests/store/mzllf2r2i5rzjqy79fs13ny8vgn86qpr-bison-3.7.6.tar.xz.drv /tmp/guix-tests/store/k8iplw0kw2dmly8v5lamgplx04ggn15j-linux-libre-5.10.35-gnu.tar.xz.drv /tmp/guix-tests/store/s9pg6r6jza7r5f3m94k7sgwpynwpxwcd-flex-2.6.4.drv /tmp/guix-tests/store/d1zzhllih6bhzvnc80jsm43r9kmflr9z-flex-2.6.4.tar.gz.drv /tmp/guix-tests/store/ffc5rg7wnrjrpzrmbg22h351280xijm6-ld-wrapper-boot0-0.drv /tmp/guix-tests/store/fm6ink06dpxk87bqc6lgxx8ky74ia62x-gcc-10.3.0.drv /tmp/guix-tests/store/7khqqxqxi03q8abfi49crphk30wm65i8-mpc-1.2.1.tar.gz.drv /tmp/guix-tests/store/97d6m61x48g8n8fnrn0pqrhx2209110m-gcc-cross-boot0-wrapped-10.3.0.drv /tmp/guix-tests/store/ah3g5mnihalpr1sccip82sxfrr0vr1pz-gcc-cross-boot0-10.3.0.drv /tmp/guix-tests/store/a4v61rcb2masds25m6i38bk66xn7zgbg-gmp-6.0.0a.tar.xz.drv /tmp/guix-tests/store/xmsm1kzrmrari5chwcil4dgmrq8xjcqf-gmp-6.0.0a.tar.xz.drv /tmp/guix-tests/store/flzxa3z4k5qv55km5gwn4w4b5ncnsmwm-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/ix1j66481xr2xy267qj0b8c36a9yd7g7-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/vasq2n0j43fxvhr1gz3r8h7gfasq8j5r-libstdc++-boot0-4.9.4.drv /tmp/guix-tests/store/4pn6afwyavhi2fwggq250b9dkf4j9lj8-gcc-4.9.4.tar.xz.drv /tmp/guix-tests/store/ciw3b48qvhb5fx35hllb74czfcjp2zn0-gcc-4.9.4.tar.bz2.drv /tmp/guix-tests/store/z4vfg9vv6w1ak3j942b50z7a86f37qn3-mpfr-4.1.0.tar.xz.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/gm3v790gmxrcssw929w1dhinzph12gdy-gettext-boot0-0.19.8.1.drv /tmp/guix-tests/store/lvp6i19y0xxszb921nckl5hy0jwp3dlh-gettext-0.19.8.1.tar.gz.drv /tmp/guix-tests/store/gx0cfkdlx8ani5v80y7rcn25wcsak11j-texinfo-6.7.drv /tmp/guix-tests/store/v1diq15pcscjp1g1nba5difq7i5a8444-texinfo-6.7.tar.xz.drv /tmp/guix-tests/store/hnr0xg3bd3ba4qzrc71br1pywls01z9r-python-minimal-3.5.9.drv /tmp/guix-tests/store/dl06g703krs6wsjh13cil554baifr5v2-expat-2.4.1.drv /tmp/guix-tests/store/gckzpnh0im4a98l1c5r44g3442b20f13-expat-2.4.1.tar.xz.drv /tmp/guix-tests/store/ma9dns8jdkkvy3kvbiv0h6wbac88pi8a-Python-3.5.9.tar.xz.drv /tmp/guix-tests/store/qy27syldpl7c5amch4fx70b79pmxh0fi-Python-3.5.9.tar.xz.drv /tmp/guix-tests/store/j8bhbikxlay3j3q41qw0yl0gay5yrs6w-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/1yl394nf5ndwikn9c48d17fmbxfvcbgk-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/lrl0dhhb4072c0hrs81jl5sgks7a5nh4-bash-static-5.1.8.drv /tmp/guix-tests/store/0s1f5gk80rgqpvjbxf4ayf7vnjw71mxr-bash-5.1.tar.xz.drv /tmp/guix-tests/store/0614ryjqzr489495nq6d99jajmhqjiab-bash51-003.drv /tmp/guix-tests/store/2agrqh7i0sywnfv7f7b9m7mmgvmn8skw-bash51-007.drv /tmp/guix-tests/store/2rs4l6v390s5ybkypvpdikk34bfsb2wi-bash51-008.drv /tmp/guix-tests/store/8cd3hyh9h1dj3cndzrjwg82ry3k9fywr-bash51-004.drv /tmp/guix-tests/store/8cjan671yq08m76d7l0qrfjg5kg0i0f4-bash51-006.drv /tmp/guix-tests/store/90is400r9i58rv532wj0cm1yxyhfsw1k-bash51-002.drv /tmp/guix-tests/store/agfndag1jx1rlxnjzxm3ab4ncyk0ihb9-bash51-001.drv /tmp/guix-tests/store/hain1z6c9v2zgkxm57vabb8qiasgc44r-bash51-005.drv /tmp/guix-tests/store/vpym9p0qg5brhi62jqzjhggar0ika4zc-bash-5.1.tar.gz.drv /tmp/guix-tests/store/36i906s7ib2nj0gzzvw0hfyirrbx5lp7-glibc-intermediate-2.33.drv /tmp/guix-tests/store/7ky23iywrg5winwlpbgj5hl129qx13jw-gcc-cross-boot0-wrapped-10.3.0.drv /tmp/guix-tests/store/36i906s7ib2nj0gzzvw0hfyirrbx5lp7-glibc-intermediate-2.33.drv /tmp/guix-tests/store/d1b92fz4y431r62xsvkqbdd13i93lzfh-zlib-1.2.11.drv /tmp/guix-tests/store/ji48bhh10nv6djiz16a1cljnq08fdck7-zlib-1.2.11.tar.gz.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/fbn7qarm6adak53jg4dz1gy4p064gy9y-binutils-2.37.drv /tmp/guix-tests/store/lrc73gzhggn1l16dlsdj1lv34qsjfan7-libstdc++-10.3.0.drv /tmp/guix-tests/store/r94pzhn6yx0knmnlbn49134yrvwbs29b-ld-wrapper-boot3-0.drv /tmp/guix-tests/store/gkl3anjfh20qqp73mq0hmdknjsqp1zfa-bash-minimal-5.1.8.drv /tmp/guix-tests/store/4lxlikg47slp0mrcd25rlcm6qcii6kqj-libunistring-0.9.10.drv /tmp/guix-tests/store/w9zlnd1lsfx9i24f59im4zfrgr86qyif-libunistring-0.9.10.tar.xz.drv /tmp/guix-tests/store/gc355jps6lvgnhny001hs7zf7k6rbn3m-libffi-3.3.drv /tmp/guix-tests/store/40qj4rc7c1rjhbh4yl21z5qi8md2ialv-libffi-3.3.tar.xz.drv /tmp/guix-tests/store/1km3h7zb41pjrldqgq6gjny5f0aissi0-libffi-3.3.tar.gz.drv /tmp/guix-tests/store/nrn3byjrdgf1c0icybmisrkcn28ypjyx-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/7gnpyf9a1i789jvz9j8cr69jaj0x5p28-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/rcp4r9nkzi1jhb4z8bgmhq0cmqlmgqxa-libgc-8.0.4.drv /tmp/guix-tests/store/ifxf227928p46a44kadh3qwc3xgi7kll-gc-8.0.4.tar.gz.drv /tmp/guix-tests/store/91z5zk9cv2bryzxa94zqpbph3i5x0v0d-gzip-1.10.tar.xz.drv /tmp/guix-tests/store/bmzp76q0a1ihpd044dfjj160wb8fqgs8-grep-3.6.drv /tmp/guix-tests/store/2bxdmf4galrb85yv3gkdhkrcw8jxyidg-grep-3.6.tar.xz.drv /tmp/guix-tests/store/1zk1y70l49d03g9czi6w1pzngc43g212-grep-3.6.tar.xz.drv /tmp/guix-tests/store/dyvkgvsbx1iz19ad4vmjp8f25k70bziw-module-import-compiled.drv /tmp/guix-tests/store/rj6lyl5dpik9kp20q04lbpr1aq6jx466-glibc-utf8-locales-2.33.drv /tmp/guix-tests/store/3xx3dcm5zyfgjkvyal7azvkr13981w4j-module-import-compiled.drv /tmp/guix-tests/store/6623qs8y2ddd3fbgy4fhagkphx28pdq6-gzip-1.10.drv /tmp/guix-tests/store/m0xiw3dznzaaxw8izp2ywc1hc5hd3blj-coreutils-8.32.drv /tmp/guix-tests/store/afbnqhzv3bam6n593027krw63kjlppd0-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/bik73j39d1bb6ksn3x2xdc9h133kiigf-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/50h57gnjb225z2qzh580zcpqniiz07jb-diffutils-3.8.drv /tmp/guix-tests/store/55n6pa2bks7fk13p12bchw8lpi2sy88m-perl-5.34.0.drv /tmp/guix-tests/store/p0p0ab2zq1p1332h5x07wixh0r7am998-coreutils-minimal-8.32.drv /tmp/guix-tests/store/z2x6zgpv6gzyp12b4a5ikr6n75yws86b-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/6ank9bknb1f95kcvir5v0jnpzxa07ir3-tar-1.34.drv /tmp/guix-tests/store/vgkjb9gr1mc39k5c46arbjbks15b35cj-tar-1.34.tar.xz.drv /tmp/guix-tests/store/bnnng57rswby8xhvzy9vjwmwh1xc80m1-tar-1.34.tar.xz.drv /tmp/guix-tests/store/8k44mfp0hsvy3q4yxfrb0m6495zjf7dp-pkg-config-0.29.2.drv /tmp/guix-tests/store/cj7y0ngqdj3r2yx6grcqb1ppkgpyb8b8-bzip2-1.0.8.drv /tmp/guix-tests/store/5dpcig3kzm5vrskw80977ifgblkcffwr-bzip2-1.0.8.tar.gz.drv /tmp/guix-tests/store/dpgm59v7m8p8hi1ci2jv43a84l67qlqa-file-5.39.drv /tmp/guix-tests/store/g3vzcjpysp0hcl7wnwjykpi3ps1fgjyk-make-4.3.drv /tmp/guix-tests/store/9mk3x98kxqdz034rj1rmilij0grz3kc7-pkg-config-0.29.2.drv /tmp/guix-tests/store/g6hrlky5sy7nz3kg0whxq44xfpc6r8z8-patch-2.7.6.drv /tmp/guix-tests/store/600hnwvm1w09da6mrjfdvqkl0ld96gg7-ed-1.17.drv /tmp/guix-tests/store/5z89n7v0b8mnswpaiw3j9anva591lbva-ed-1.17.tar.lz.drv /tmp/guix-tests/store/6zfa9zfpig9kxc1ciaxhxlif7rj96h6k-lzip-1.22.drv /tmp/guix-tests/store/i2a9klhfkfyfrqfsqbmyy60mdgbxjb34-lzip-1.22.tar.gz.drv /tmp/guix-tests/store/a7b5882ma5bii2isrc81wad9qig922m9-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/h9837470b7xbdc5045rfq4q8p50pnayr-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/jqlmsrpnnww1qq08n9dm8wnk4y2jcl8f-findutils-4.8.0.drv /tmp/guix-tests/store/p62d7v83mfzh9q2gr238iw1iwzaa54bb-gawk-5.1.0.drv /tmp/guix-tests/store/jnl5s25mlvhhx7513mf7wxnjf9k12bwb-gawk-5.1.0.tar.xz.drv /tmp/guix-tests/store/lddc2s21apl8jzayr0qh8z4jv37qzgk6-libsigsegv-2.13.drv /tmp/guix-tests/store/p7ch1zpda76ng44lcylkmvkqj9p6rrbj-libsigsegv-2.13.tar.gz.drv /tmp/guix-tests/store/xdjpbx97b8xwxv0y5f3vbj269512m5za-sed-4.8.drv /tmp/guix-tests/store/a8fn7nd882wxpcxmfmlhdy9nn3hxq3h5-sed-4.8.tar.xz.drv /tmp/guix-tests/store/6a35xdllgbxwfk369rmz03qqh76m1i83-sed-4.8.tar.gz.drv /tmp/guix-tests/store/zirq8ypbjch79fc9xrkpm0d6lbb9im9q-ld-wrapper-0.drv /tmp/guix-tests/store/zvam0j9fwpnd11c43lawwamw1fxhdq8z-xz-5.2.5.drv /tmp/guix-tests/store/c2p3ba4bkm2ddllr61lf83ksy2ji326g-xz-5.2.5.tar.gz.drv /tmp/guix-tests/store/bwd5pzh2j9xqi7k5nndj52a78y0sq61a-python-3.9.6.drv /tmp/guix-tests/store/12ai3gxrj1m3ij8gv22sb5dgcpv3ng20-util-macros-1.19.3.drv /tmp/guix-tests/store/z4z0ha93rk5m4x9grynk62p7j054kry1-util-macros-1.19.3.tar.bz2.drv /tmp/guix-tests/store/19cjj4qn5nplk3x2sfammqpg9hlf9sbr-Python-3.9.6.tar.xz.drv /tmp/guix-tests/store/iria8q3qidpz2bjm49v2winn3vjxypp8-Python-3.9.6.tar.xz.drv /tmp/guix-tests/store/1s6xwrs17i1nl62vabiz3gbgf3ljld88-readline-8.1.1.drv /tmp/guix-tests/store/ckb9nzpjh8qcrxi0izalc673a372zxsj-readline-8.1.tar.xz.drv /tmp/guix-tests/store/4zjjf1h3imnzd43nzbr29ws926chi6gy-readline-8.1.tar.gz.drv /tmp/guix-tests/store/pgz10hw4hia626xbjlyhzir277nw2934-readline81-001.drv /tmp/guix-tests/store/wc435c6jb85m8f3xmcz5avwnqza1id91-ncurses-6.2.20210619.drv /tmp/guix-tests/store/3dgf4kwi1nvcy95nn020di0klkjg9s19-ncurses-6.2.tar.gz.drv /tmp/guix-tests/store/rzh9fakqivjd02wpx26wis4dh5mhmjjr-ncurses-6.2-20210619-patch.sh.bz2.drv /tmp/guix-tests/store/6d8ybzkz8rm5vcl79664443pqpa2hf2x-libxdmcp-1.1.3.drv /tmp/guix-tests/store/fkm1lq1yjjyi0g04qpp94c2g9z6zfq6v-xorgproto-2021.5.drv /tmp/guix-tests/store/gfn93s2dy2z4rqrbpmj3pz8gwfaf4wkd-xorgproto-2021.5.tar.bz2.drv /tmp/guix-tests/store/j63dxva124aj5n41h0g0g3h62wwdl04q-libbsd-0.10.0.drv /tmp/guix-tests/store/4qamifn14izjih5n74kaym42g0gbh1x3-libbsd-0.10.0.tar.xz.drv /tmp/guix-tests/store/jqgv2x635lvd45lkgizn8ww88mm38pkl-libXdmcp-1.1.3.tar.bz2.drv /tmp/guix-tests/store/8jiqwcn2fxs6zjp71pr4iz0l7kq62jgi-zlib-1.2.11.drv /tmp/guix-tests/store/amyqdn43835z8n4nr7mnm2v8438bfkrg-unzip-6.0.drv /tmp/guix-tests/store/5sfchzcg8c9jdly24h3hspbddfcxrgmv-unzip60.tar.xz.drv /tmp/guix-tests/store/g1laxgrn8h1zyrjy9gd9901sjzx69b33-unzip60.tar.gz.drv /tmp/guix-tests/store/hplrcllrlfjklmp6wi4pxq482gnvbqmi-bzip2-1.0.8.drv /tmp/guix-tests/store/b2axffmpy7xpra7ad1q05j47nvr1wvk4-libx11-1.7.2.drv /tmp/guix-tests/store/8kr3mbm12vs5h453w43mbv24qh2i369z-libX11-1.7.2.tar.bz2.drv /tmp/guix-tests/store/l1vjnxwvn0n2pj717i8ankxgqr37qjaq-libxcb-1.14.drv /tmp/guix-tests/store/1sv0g93b0fpbsqm91qrd8rzsi4ghprg1-libxcb-1.14.tar.xz.drv /tmp/guix-tests/store/8ngxgsybz3sfw773wj43v9hfdi8gk1m6-python-minimal-3.9.6.drv /tmp/guix-tests/store/c9lcckp47bak9j8ksxjc6lac7fhlqi8r-zip-3.0.drv /tmp/guix-tests/store/ywkmbnkp6n7jpqx1j1q80lha47ivmr3a-zip30.tar.gz.drv /tmp/guix-tests/store/k9jkyk4qwbcwh9nd9yvhghgkmpz8wrg5-libffi-3.3.drv /tmp/guix-tests/store/94iz0h14l7wvg9m7kwv9sycs0bq1khnb-libffi-3.3.tar.xz.drv /tmp/guix-tests/store/kkly0bjdn3vckm8daniz6y9jrs42idz0-expat-2.4.1.drv /tmp/guix-tests/store/lxp25j1rqh9g4akh9ya7ck8vhaiz0q8k-tzdata-2021e.drv /tmp/guix-tests/store/g6ssndxfwf9f2584zdyvd85hkxxhgs02-tzdata2021e.tar.gz.drv /tmp/guix-tests/store/yyajwl02cfrwaprvxxbn96wy6nzzgv6j-tzcode2021e.tar.gz.drv /tmp/guix-tests/store/npdcrdnmz4xc181ndn4lz5qy36ai2l5v-openssl-1.1.1l.drv /tmp/guix-tests/store/hwppn7f1mws18zsk2n53klrwlpmlr124-perl-5.34.0.drv /tmp/guix-tests/store/gqx7l2gzp88gif0az3dqg0r3wl0yij3w-coreutils-minimal-8.32.drv /tmp/guix-tests/store/jcn6z8hnhyls6g48hk8y5x5kzhliv6d5-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/wb6kx05hi2a99pbcac0i6yd176sll04i-perl-5.34.0.tar.xz.drv /tmp/guix-tests/store/w49g2dpvf7ryrifm52gyv43mjm9gmadq-openssl-1.1.1l.tar.xz.drv /tmp/guix-tests/store/9cyf1qifhj2h699r562q4lflx66bqvws-openssl-1.1.1l.tar.gz.drv /tmp/guix-tests/store/ggdnn1b7zfnixx3y8p7pa5f7rrslgil0-xcb-proto-1.14.drv /tmp/guix-tests/store/4g0ciqbdh73xkcx6iyzvxx458fy72vj6-xcb-proto-1.14.tar.xz.drv /tmp/guix-tests/store/nicc7434l857m6pn1nldrl1iycvfa6z2-xcb-proto-1.14.tar.xz.drv /tmp/guix-tests/store/w0q72700i2v48ik05jaak38g4n1340pk-python-minimal-wrapper-3.9.6.drv /tmp/guix-tests/store/xdk1lfrcd51g7i2i7lkmbyjpyzipc2zm-bash-5.1.8.drv /tmp/guix-tests/store/fshyvm6adcq7hw62v89zisypdl5ilxd9-bash-5.1.tar.xz.drv /tmp/guix-tests/store/vkixsak7qv5jsim76sa7zkq0sjm8ffv0-libpthread-stubs-0.4.drv /tmp/guix-tests/store/hwdxl7fny9sh7034hfkcxjma8pcy107n-libpthread-stubs-0.4.tar.bz2.drv /tmp/guix-tests/store/w0dwmy34rs10n7rh100j3c1v7fdk1q95-libxau-1.0.9.drv /tmp/guix-tests/store/5fdjjbsmgaf73lmfbwp1syzi9dpfj4ki-libXau-1.0.9.tar.bz2.drv /tmp/guix-tests/store/z4scfly9fws2q3k097x2fiyml2xjms6q-libxslt-1.1.34.drv /tmp/guix-tests/store/0fgn8iqagrz9d8hzakkjbcfyh95l7mm7-libxslt-1.1.34.tar.xz.drv /tmp/guix-tests/store/1da1kh5yvmxq3kspiqgsfdnrnqrh17qi-libxslt-1.1.34.tar.gz.drv /tmp/guix-tests/store/8l20rv7jrwmb0lbrljj1q16dlqr5gsb0-libgpg-error-1.42.drv /tmp/guix-tests/store/k1wvwaxbn0zxdkn42ipghkjk3ralg5db-libgpg-error-1.42.tar.bz2.drv /tmp/guix-tests/store/lyb9a6nkfl8g0bgyjnn239w8ikrjjgib-gettext-minimal-0.21.drv /tmp/guix-tests/store/3hdq83yb29ijw91bqijzx896y06a11m5-gettext-0.21.tar.gz.drv /tmp/guix-tests/store/3w6zpyvj10b7yj0zjskixwkxaf49q48w-libunistring-0.9.10.drv /tmp/guix-tests/store/hizh2pv4afqhci3fspmnwkl24qvz7mmf-libxml2-2.9.12.drv /tmp/guix-tests/store/20icgpa30z6rlkbqwn141p9pbi14n37m-libxml2-2.9.12.tar.xz.drv /tmp/guix-tests/store/7rpjscyfv3gwj8fwc39xhymq0qxrngrh-libxml2-2.9.12.tar.gz.drv /tmp/guix-tests/store/fy16mi1xm2vmbhj017ggfxg4a0h77nim-xz-5.2.5.drv /tmp/guix-tests/store/kjfzhznvhq6ygrqn76zwxpnyq746n3az-libgcrypt-1.8.8.drv /tmp/guix-tests/store/0272fnn9cjcp9lkv586jsim8qq7aq8if-libgcrypt-1.8.8.tar.bz2.drv /tmp/guix-tests/store/m79hnhjw3i1y99xwf7rg771xhf99hdvy-xtrans-1.4.0.drv /tmp/guix-tests/store/8jwhbqwafy7haqjkk15bmx8cg1ybyhp7-xtrans-1.4.0.tar.bz2.drv /tmp/guix-tests/store/di8hlsnfacip72sxzhi8k8fd0pzrv7zk-gdbm-1.20.drv /tmp/guix-tests/store/7yjcgjpgnh7szk10rdki8wqpnvnzhs8b-gdbm-1.20.tar.gz.drv /tmp/guix-tests/store/psxi5c3yvv4xm3mif8ddaswmjp0wbk28-sqlite-3.36.0.drv /tmp/guix-tests/store/zf5y36j726cfri6m6c7951hw0i499rrz-sqlite-autoconf-3360000.tar.xz.drv /tmp/guix-tests/store/a84rbsxnyx15jdg82xdn164qa96dnn9k-sqlite-autoconf-3360000.tar.gz.drv /tmp/guix-tests/store/pxrv528rakvqw4sjjlb0wmnvjyia39w9-libxext-1.3.4.drv /tmp/guix-tests/store/73whp8srb8nr5c5zn11xrrq0nl0sa1wh-libXext-1.3.4.tar.bz2.drv /tmp/guix-tests/store/v7y9lvr7ca443v56c3rxvgm1rgwp81ci-tcl-8.6.11.drv /tmp/guix-tests/store/s1g0w4mmh61sjiwhby8xc5hd8jnx46xy-tcl8.6.11-src.tar.gz.drv /tmp/guix-tests/store/xmb8zw25ydf9qncq91waj3c4hpdnbsjh-tk-8.6.11.1.drv /tmp/guix-tests/store/1kk2vqp36s9d5594hbd40f2pbzls7xnz-tk8.6.11.1-src.tar.xz.drv /tmp/guix-tests/store/8dnfigpzdy1hdhfa46gix97zfnvn2lv7-tk8.6.11.1-src.tar.gz.drv /tmp/guix-tests/store/2lbg1pwja5lnn0jd69pr7rqc1wf73mn4-libxft-2.3.3.drv /tmp/guix-tests/store/a42jslaiw3n7pbr73f9nqx5jga5lny9b-libXft-2.3.3.tar.bz2.drv /tmp/guix-tests/store/g1cg0xh5ii9mc9zwxf0ahlfj74zr9r5x-fontconfig-minimal-2.13.94.drv /tmp/guix-tests/store/b081xw509nqg9jchl062lllxsp3gixwf-font-dejavu-2.37.drv /tmp/guix-tests/store/0dm5a4akpbvz5adfck7z5n71k3grnq6h-dejavu-fonts-ttf-2.37.tar.bz2.drv /tmp/guix-tests/store/bd7scd6k3x51i3y9r7gbajqhd4a8jq7y-tar-1.34.drv /tmp/guix-tests/store/3hbcvhf4yl83hy918rv05rfq0yg16grv-tar-1.34.tar.xz.drv /tmp/guix-tests/store/bw6h4j46crzwmw15xq1mj4fg2hwym9xi-module-import-compiled.drv /tmp/guix-tests/store/kwcb79jcnimag8dsp16p0xyivpz4yf9c-gzip-1.10.drv /tmp/guix-tests/store/gnn656w5ai6h3y71lzq6aflc69p5b8si-freetype-2.10.4.drv /tmp/guix-tests/store/913xvnkyjyr9wpy5yyq4ald01vynvxj2-freetype-2.10.4.tar.xz.drv /tmp/guix-tests/store/p218ymga1ixpjhqvkkwx5jr74ln7qcy7-libpng-1.6.37.drv /tmp/guix-tests/store/ds8l06mgv1llghrqqydj8v244ck0gss0-libpng-1.6.37.tar.xz.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/3y8z12v0g2ai2hr9rfwlrvm25dxz3bm4-util-linux-2.37.1.tar.xz.drv /tmp/guix-tests/store/ksjqykwy7gykgdpjyc01bdh2fg3mmblr-util-linux-2.37.1.tar.xz.drv /tmp/guix-tests/store/h8828pl50ix2h5p87vykbqak1v9zq4rm-file-5.39.drv /tmp/guix-tests/store/z131mia9hl1qclyhsfyhh9jxm04c9gcf-net-base-5.3.drv /tmp/guix-tests/store/1b9jlbrqhjl1f6lmhb24h7v88jrsr0xi-netbase_5.3.tar.xz.drv /tmp/guix-tests/store/nh1kzsk0kaip51ys6yigh7za0b4n0abc-fontconfig-2.13.94.tar.xz.drv /tmp/guix-tests/store/3hzm9r3k2gzfinka6m0vfn3ny7fk734i-fontconfig-2.13.94.tar.xz.drv /tmp/guix-tests/store/w537jrzzh9517wcnq8dg4hkcf31yfri6-gperf-3.1.drv /tmp/guix-tests/store/avqyx04y2by5q8sh0bn658dm8l2gbf3i-gperf-3.1.tar.gz.drv /tmp/guix-tests/store/y567js4v5n504frabyip2lfbs3d8c9s9-libxrender-0.9.10.drv /tmp/guix-tests/store/aajf4cc26g4y84h7kzgmsxqz8pkvyica-libXrender-0.9.10.tar.bz2.drv /tmp/guix-tests/store/cm100g7rscllnj0biscirhas9xxri54w-usbutils-014.tar.xz.drv /tmp/guix-tests/store/fks2jq3fqflm3n0fvyrkcr3g4r1kb56z-libtool-2.4.6.drv /tmp/guix-tests/store/bphi7f415ca2fksfcjnixy661321llxb-libltdl-2.4.6.drv /tmp/guix-tests/store/r6d7n4ilf0f7cfaxyyikjcpmvjmcir5r-libtool-2.4.6.tar.xz.drv /tmp/guix-tests/store/g6msfm26i8b5h396504c8110yibnh7l8-help2man-1.48.3.drv /tmp/guix-tests/store/0d6iv542mz1li1lai6v0dc6pzikq5b8r-help2man-1.48.3.tar.xz.drv /tmp/guix-tests/store/7xam65p8mwva5k7xf7fi931600x5qi93-perl-gettext-1.07.drv /tmp/guix-tests/store/468lblrdf3cv2w8a3j3r48blb7vb1ymk-gettext-1.07.tar.gz.drv /tmp/guix-tests/store/5bb0bvrqz67ijc9ihw938dlb0rrh0srw-module-import-compiled.drv /tmp/guix-tests/store/pl3xwmvlg60isx6aq8gn52h7jamq0c07-m4-1.4.18.drv /tmp/guix-tests/store/xjsp9pbxvr0hwpi5ykzlz1kinkjcxybb-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/pnhz6swwip33aa2pzp16jqjb6p1nvcaa-automake-1.16.3.drv /tmp/guix-tests/store/pgvp468v34dplcwzcw4km0j03wj73lz6-bash-minimal-5.1.8.drv /tmp/guix-tests/store/pwnhk4lmjcb626qj1d9l4zhi87gfns5p-autoconf-wrapper-2.69.drv /tmp/guix-tests/store/2pqyydqw0z0zf2vhdw6xs3wfnbhza0qd-guile-3.0.7.drv /tmp/guix-tests/store/azrmgrz2mshmic3hmiwmbl81x6v719d0-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/c7dmh3kaihk8n1ya0b4bqdmgmjjzyham-libgc-8.0.4.drv /tmp/guix-tests/store/dwpdx1cxzk3yxxlxzpxl7ykj3hsqx6ky-autoconf-2.69.tar.xz.drv /tmp/guix-tests/store/ry30lchbhfr56ddqxblgdy37ab7irxnj-autoconf-2.69.drv /tmp/guix-tests/store/qry2r79hhzyl31nr6ry1pqs4b86ykv09-automake-1.16.3.tar.xz.drv /tmp/guix-tests/store/9mhn9vqx0x9smnqkgd609mrh9r3m8w38-automake-1.16.3.tar.xz.drv /tmp/guix-tests/store/r4rjin6gzz0bcaiwmsb2hvgcjq7hmag8-libtool-2.4.6.tar.xz.drv /tmp/guix-tests/store/nyvbwmp5r4fvhvzikcf8b4kig7pd3g3g-libusb-1.0.24.drv /tmp/guix-tests/store/wminr6yzj5j504qx7s5k0zm1q3l9d8yl-libusb-1.0.24.tar.bz2.drv /tmp/guix-tests/store/pryrccddxpjp6rhg9dg63bfj1bxqr9ws-eudev-3.2.9.drv /tmp/guix-tests/store/41lndimrmc5h40wjqwbdbsj98fkmpwgi-kmod-29.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/hiaa99jhg9xibrw26a4gx07ncb1vp42m-zstd-1.5.0.tar.gz.drv /tmp/guix-tests/store/64i36988f5cw6y2cmjyvs70rqxhqxkqc-kmod-29.tar.xz.drv /tmp/guix-tests/store/fplbsi54rvw8krf6rqv86p5514p5lhbk-kmod-29.tar.xz.drv /tmp/guix-tests/store/96qg9y2lrwq5ai7n4dp6n5v5hg1rbhrc-docbook-xml-4.2.drv /tmp/guix-tests/store/4xa6bmg4fysxsi7fcaqcln3dzbch3jbq-docbook-xml-4.2.zip.drv /tmp/guix-tests/store/cm8zp3pqpg7c94yhpzfmkrmhhsny6ykl-python-wrapper-3.9.6.drv /tmp/guix-tests/store/frv94krkjsrdy4n0h78zjhbygv6iza09-docbook-xsl-1.79.2.drv /tmp/guix-tests/store/5c1aprdmpq422i3lz6gavkirf1vz7xl9-docbook-xsl-1.79.2.tar.xz.drv /tmp/guix-tests/store/3bz1xi8mifzvvihbff8fjpp5fs4ybiib-docbook-xsl-1.79.2.tar.bz2.drv /tmp/guix-tests/store/z3fp9gnyy3n3g27jqflhb7l46cqygxww-eudev-3.2.9-checkout.drv /tmp/guix-tests/store/j8rf89mfp8xklyz4c5fwpfrjmcm4031q-eudev-3.2.9-checkout.drv /tmp/guix-tests/store/11jcipdfmlnygkksr489gq0420lsnq7p-guile-zlib-0.1.0.drv /tmp/guix-tests/store/xhx26v8vkr3arnw630z4hjrsf2hzymq3-guile-zlib-0.1.0.tar.gz.drv /tmp/guix-tests/store/1nxdsds0mhd1lbgiar5qrd1yf2fpz4an-gnutls-3.7.2.drv /tmp/guix-tests/store/23j6x323q3rc4nqvapmw41h5p22vcxrk-which-2.21.drv /tmp/guix-tests/store/1nvf74rjkzjxp59kcck0wgjbdfn0vfs3-which-2.21.tar.gz.drv /tmp/guix-tests/store/3wrg5lcgzysjr5srqdfsl61svva1k3ks-gnutls-3.7.2.tar.xz.drv /tmp/guix-tests/store/rn6k3anl07fkgpsqgz9r478vw5dmdy81-gnutls-3.7.2.tar.xz.drv /tmp/guix-tests/store/bha2smigk61y51cl0brvr1ds6wiscrik-texinfo-6.7.drv /tmp/guix-tests/store/bwdfif6x0805bv262gcg26yj0i8pmahc-libidn2-2.3.1.drv /tmp/guix-tests/store/g1gf7w2l8jqi2fvakfla7wsi30idhs1x-libidn2-2.3.1.tar.gz.drv /tmp/guix-tests/store/hnilzisybg688ddgizx3w5d63w8qs05g-gmp-6.2.1.drv /tmp/guix-tests/store/wwlwl85r9hg1cknaw9wjagp2qgqy62mm-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/y5m24mds14ncjlrwldfng8xkmmjhjj3h-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/k3sxxnpd3rpxb6c2idc1k4wj3ll1cyq8-nettle-3.7.3.drv /tmp/guix-tests/store/ash166sr7hzjjfh3kc8qrg8j9zd3bxac-nettle-3.7.3.tar.gz.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/nljx6lmvcpmvhysmykn7p34gbsisri10-socat-1.7.4.1.drv /tmp/guix-tests/store/rkfa70mbh893zvvgzkw7fxjskj27n5cm-socat-1.7.4.1.tar.bz2.drv /tmp/guix-tests/store/rhd80g918d5ig6z136wn6r809s4qp5wk-datefudge-1.23.drv /tmp/guix-tests/store/0yzp4sn3iddyjjszlxffd9n227yvms7z-datefudge_1.23.tar.xz.drv /tmp/guix-tests/store/dwcd2jc7jfnyl8kg4k0hs9722pilczjw-datefudge_1.23.tar.xz.drv /tmp/guix-tests/store/s4gbsg874c932hy6kvxzpv0khfc9ih5p-p11-kit-0.23.22.drv /tmp/guix-tests/store/8jmsds3s0j33mkr6wjni6ywzr0cribzd-p11-kit-0.23.22.tar.xz.drv /tmp/guix-tests/store/sxxpsj6q99zhxxzabqhc4nrk8ri05z55-libtasn1-4.17.0.drv /tmp/guix-tests/store/rbf07kjifkgxbs2dyns6k9qp00i9mm84-libtasn1-4.17.0.tar.gz.drv /tmp/guix-tests/store/vcyfmww6m86bh1hbbkf9c1s1mfcbdbl6-net-tools-1.60-0.479bb4a.drv /tmp/guix-tests/store/09k8xbs5m1d5b5i4xbr5xv4833ps0yyf-net-tools-1.60-0.479bb4a.zip.drv /tmp/guix-tests/store/wdmrfjybsq9nb2v1zagr9nc0gc2amxwf-iproute2-5.15.0.drv /tmp/guix-tests/store/3gzp4wxrxblp5z27kmknjqccg9zwvcan-iptables-1.8.7.drv /tmp/guix-tests/store/3dr5pwp604s695mx7zyzyygm5nfj3kl3-libnftnl-1.2.0.drv /tmp/guix-tests/store/hqadr2qrs8aj4w2cb8bhg49zgndw4vpa-libmnl-1.0.4.drv /tmp/guix-tests/store/zcxykwwyg4hd3a6g18g5hh27gsjmivkx-libmnl-1.0.4.tar.bz2.drv /tmp/guix-tests/store/y46dhypls1ygjnsskm9xm9gz1n6k9y4r-libnftnl-1.2.0.tar.bz2.drv /tmp/guix-tests/store/7vpjgw85wsraa2a7bp7ln5ilcdk3sbvx-bison-3.7.6.drv /tmp/guix-tests/store/90an45ybmxxdk2j5j9fv0ji8q7iyyiav-flex-2.6.4.drv /tmp/guix-tests/store/yzyjm7g0zaa5gzfqyyg2r4nqib0nj27f-bison-3.7.6.drv /tmp/guix-tests/store/znp4jcsv6rjw93am0db8c2smkaywj1ni-iptables-1.8.7.tar.bz2.drv /tmp/guix-tests/store/idxr9ffaks89mrbx1yjly4ibwhif0i0x-iproute2-5.15.0.tar.xz.drv /tmp/guix-tests/store/r754ad1aprcp89353a6qjakps2walryc-bdb-6.2.32.drv /tmp/guix-tests/store/h1wymwl4qwbcapsidm5zzglkhyq0cfpr-db-6.2.32.tar.gz.drv /tmp/guix-tests/store/f6lajahpqi1dd9crj60g1mbkik0yaamz-git-minimal-2.34.0.drv /tmp/guix-tests/store/14ri30vi1hxr0rsjv8pypbgvc4fvkvya-curl-7.79.1.drv /tmp/guix-tests/store/1nxdsds0mhd1lbgiar5qrd1yf2fpz4an-gnutls-3.7.2.drv /tmp/guix-tests/store/6va9q19n8h6j6h1cn9pkb8dwm9f0wvrk-mit-krb5-1.19.2.drv /tmp/guix-tests/store/ji5s8y4cw4nbf83h85h9lzs1fz1ljb0y-krb5-1.19.2.tar.xz.drv /tmp/guix-tests/store/mzyfxingdk4xvk4z37fsbk1192sdmf4w-krb5-1.19.2.tar.gz.drv /tmp/guix-tests/store/8hkyk814a2042g5cbmaz8d37kg6158bf-curl-7.79.1.tar.xz.drv /tmp/guix-tests/store/rr2517yxgyayknjyfv70j79m9k4gfn7d-curl-7.79.1.tar.xz.drv /tmp/guix-tests/store/jjzdbgvha4lxmxgihvm0iyj8hmkr9cap-nghttp2-1.44.0.drv /tmp/guix-tests/store/3qchlvj4csg1nd06ya59lxj5r5qq7bda-nghttp2-1.44.0.tar.xz.drv /tmp/guix-tests/store/4y27gha09kld75zshnmyia57xmq9mjjs-cunit-2.1-3.drv /tmp/guix-tests/store/s98b1fzvmhdziamv2858fz9k6g69xgzb-CUnit-2.1-3.tar.bz2.drv /tmp/guix-tests/store/60z6gh840cqa4lrnzfwx0iw2xnrqghph-jansson-2.13.1.drv /tmp/guix-tests/store/36fdhi8is3d52wcqpjk7sr7xh79xvb10-jansson-2.13.1.tar.bz2.drv /tmp/guix-tests/store/hmz6j0m3l356zwf5qhii500fgbxsl0vd-c-ares-1.17.2.drv /tmp/guix-tests/store/95p5v1wqiih9i1jwnrsc8vzvhjdxl8lk-c-ares-1.17.2.tar.gz.drv /tmp/guix-tests/store/irmq4qan6pd9irm70xalv20ygb1n7vqm-jemalloc-5.2.1.drv /tmp/guix-tests/store/b90sxmfg5bn0qmb6kz9vs2lxy12pq4f6-jemalloc-5.2.1.tar.bz2.drv /tmp/guix-tests/store/kgvidm7g4c95ayvyb9hidjqbrlwq2210-libev-4.33.drv /tmp/guix-tests/store/j9hk17nyqdv3pj81nsa77njxl3pr9jjj-libev-4.33.tar.gz.drv /tmp/guix-tests/store/kyc7hx0zj21kry7mxj8ks6sid1apvl6x-libidn-1.37.drv /tmp/guix-tests/store/6jcak9dw49dz4dl84206wzgr4n09vnk0-libidn-1.37.tar.gz.drv /tmp/guix-tests/store/gnj35c1cx3d65n0nffwb0vjskp8znxj1-git-2.34.0.tar.xz.drv /tmp/guix-tests/store/w3al8qd0l6y6h5ji67ampfck8qf25biy-guile-json-4.5.2.drv /tmp/guix-tests/store/2jsvq6g3mm0zd2bfysm3d5x0l9qignqh-guile-json-4.5.2.tar.gz.drv /tmp/guix-tests/store/zczss9jzfvg6w3218pyxf9rp3rc5p53k-module-import-compiled.drv /tmp/guix-tests/store/082awpzp75l8s1pqf31yym1y5lvlg1g5-shadow-4.8.1.drv /tmp/guix-tests/store/gf16p699ahr7vbz0hadybq22c928k5rv-linux-pam-1.5.1.drv /tmp/guix-tests/store/c92m79y0gc6m80gf926j38428b12f82i-Linux-PAM-1.5.1.tar.xz.drv /tmp/guix-tests/store/8qxkyympyn7imadwvgy4lzlqzbj8ganw-Linux-PAM-1.5.1.tar.xz.drv /tmp/guix-tests/store/m6dams3882kszqiwy4v4m4kkc1jybj8i-shadow-4.8.1.tar.xz.drv /tmp/guix-tests/store/jnmwcp0li2jbz9dp3bkmz9q91waqn1rb-shadow-4.8.1.tar.xz.drv /tmp/guix-tests/store/0qnjl5yfwgqw9za6jlji3wiin7x0cm1l-nvi-1.81.6.drv /tmp/guix-tests/store/92si81ir5290ikwqw1s55hrbdy02wank-nvi-1.81.6.tar.xz.drv /tmp/guix-tests/store/wr2w5zi22h6g0j0rr58ph2rl95cpi1gc-nvi-1.81.6.tar.bz2.drv /tmp/guix-tests/store/11vvvvwwd3ssyla9jjsy0kal6jsg2kg1-lzip-1.22.drv /tmp/guix-tests/store/1i9rb17bz35zswpdics7q5pnk8hd6m66-procps-3.3.16.drv /tmp/guix-tests/store/xwdwvpgbkqk0afqnmn8vyivgr137305i-procps-ng-3.3.16.tar.xz.drv /tmp/guix-tests/store/23k5bd2sk1mlimyvv2hvihbki4i8j8cl-guile-gcrypt-0.3.0.drv /tmp/guix-tests/store/lcfbv652p20b6rcm3w61z1dg3bi4z94q-guile-gcrypt-0.3.0-checkout.drv /tmp/guix-tests/store/27ic97iwcqsqcmrhj67lx16j8wi3x0qz-grep-3.6.drv /tmp/guix-tests/store/h15q26zy0r6f9jskz77bybi08myqliv0-grep-3.6.tar.xz.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/hvih1zpzxk0mj9qpfwh02cxn0cn9zwj9-pcre-8.45.tar.bz2.drv /tmp/guix-tests/store/2gvqyn8k7ywbkc3fqhwkzqjgvfcn6bds-e2fsprogs-1.46.4.drv /tmp/guix-tests/store/60ajy8fhp2pfznlx5ippk3y5lh05rqgg-e2fsprogs-1.46.4.tar.xz.drv /tmp/guix-tests/store/2hm1x5jxgiyjc3kazz5bfsayl9lvd6q6-wireless-tools-30.pre9.drv /tmp/guix-tests/store/21gv30k4s1czzskzwwbvbsymlph0kj56-wireless_tools.30.pre9.tar.xz.drv /tmp/guix-tests/store/h2ck7l3mz3mr3qs168y7lxr3psgrr52z-wireless_tools.30.pre9.tar.gz.drv /tmp/guix-tests/store/3m7dfgmlw64rqsn3wghs0iz5f4353hdd-guile-zstd-0.1.1.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/ghmy8vjyc8r3yjkz4daczs351s4635ml-guile-zstd-0.1.1-checkout.drv /tmp/guix-tests/store/40mp2k0naxpiapiq8dz8pzkhxcvvzx65-findutils-4.8.0.drv /tmp/guix-tests/store/kwlld6yi8abb567a1s52z11ravaiz3yn-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/5xyc3mla67b13wbw356b027jlpwab1fx-rottlog-0.72.2.drv /tmp/guix-tests/store/g08crmldhqd0bwjh6p5cci1fpgzp5cq0-mailutils-3.13.drv /tmp/guix-tests/store/2h38i16d77zgiy1bvivl52xkjrgckhai-gsasl-1.10.0.drv /tmp/guix-tests/store/2klvswdlbhk7l5iswilki1ahjyvxj96w-libntlm-1.6.drv /tmp/guix-tests/store/bqhxn8jc0nbhwyi509ngfvw5dn0s6z69-libntlm-1.6.tar.gz.drv /tmp/guix-tests/store/lhpigb262sclzqbn48c7pg3sk92gvgla-gsasl-1.10.0.tar.gz.drv /tmp/guix-tests/store/7j22nfv73l9nyzv62nrn4vs7zj0v3fqy-libiconv-1.15.drv /tmp/guix-tests/store/plw5fmmhgglydkkrgzdia2fy3v0b6i6q-libiconv-1.15.tar.xz.drv /tmp/guix-tests/store/d4jafkvzzkpp6qhn0kxc40m0ilchpcly-libiconv-1.15.tar.gz.drv /tmp/guix-tests/store/8gyikhrn92yak2q7jx61f3rgqiabr2my-dejagnu-1.6.2.drv /tmp/guix-tests/store/1kib6rr5lm94fvpzb04pqs4aycgbj2dk-expect-5.45.4.drv /tmp/guix-tests/store/p1zzypvrfzd20c8f1j7m5galz7z6zaqr-expect5.45.4.tar.gz.drv /tmp/guix-tests/store/6zjlx0wqrpg9lw639rbphdgnazm3rvaw-dejagnu-1.6.2.tar.gz.drv /tmp/guix-tests/store/vz7vgsp307z1b2g3bi2p43kln8hprpng-mailutils-3.13.tar.xz.drv /tmp/guix-tests/store/1d7dfrxpznpz3ly4jjpxagzflmy48qpb-mailutils-3.13.tar.xz.drv /tmp/guix-tests/store/p8c0xszsgb2g8h553rkk8k824x9s69b2-rottlog-0.72.2.tar.xz.drv /tmp/guix-tests/store/n3nfzafj0z3h0vhhaknxvdkb0irxf5jv-rottlog-0.72.2.tar.gz.drv /tmp/guix-tests/store/rsxj25ipcp5kzdgmgd59lfhdyijn1vgg-coreutils-8.32.drv /tmp/guix-tests/store/bfqcx4ji79m0igvagplbhha9h3hkhqgb-attr-2.5.1.drv /tmp/guix-tests/store/2pn4vdkzbg5gwjqskby89v8nrn84b66y-attr-2.5.1.tar.gz.drv /tmp/guix-tests/store/gg0897h8bc5p6ljc4yq74b2c4x7qsdsh-acl-2.3.1.drv /tmp/guix-tests/store/fdrp2n3bzzjzdb8im056pgcp98ccscna-acl-2.3.1.tar.gz.drv /tmp/guix-tests/store/nyc558r8806f7b4f8cwp2mdxp1qgx0aj-libcap-2.51.drv /tmp/guix-tests/store/1l45dy2rjh880s0k4mij9iwj4b6lwzk0-libcap-2.51.tar.xz.drv /tmp/guix-tests/store/63wvgyi3jk3aa3vbbhx14cbqnqivxh0n-bash-completion-2.8.drv /tmp/guix-tests/store/rws4frwzrw3fwd8nk53axbxjjbwsim5j-bash-completion-2.8.tar.xz.drv /tmp/guix-tests/store/x5mynqylgv1vrs9gmf63dfdih7n63q0w-bash-completion-2.8.tar.xz.drv /tmp/guix-tests/store/6lsh62vk0kn2h2j78ny6samgjl69jcl2-guile-avahi-0.4.0-1.6d43caf.drv /tmp/guix-tests/store/jy86h73gpmiy9m60q14nq2fixjklnnls-guile-avahi-0.4.0-1.6d43caf-checkout.drv /tmp/guix-tests/store/li355kl0hi6367fjm1m0j3dkyx715hnx-module-import-compiled.drv /tmp/guix-tests/store/qqadvi6vj5hxn3i86w8nhswpl0r78z4d-avahi-0.8.drv /tmp/guix-tests/store/05mxrlvm0zl5rdhcnpncnfkwlzcccfwb-avahi-0.8.tar.xz.drv /tmp/guix-tests/store/kv5zjaqcw6m0dsqb6d1ifpsp6iza8mx7-avahi-0.8.tar.gz.drv /tmp/guix-tests/store/63hzg9lj4qbc0yzjcqldmkj0l5x4brjm-libdaemon-0.14.drv /tmp/guix-tests/store/cizg1dvmf4l2n1vyr2p9rdi1hc0g8m1f-libdaemon-0.14.tar.gz.drv /tmp/guix-tests/store/akwd6b9vagad50v50plfa2j7q1mh6h0z-glib-2.70.0.drv /tmp/guix-tests/store/22qy2xj02x5al8jxzq6i5zqcwfsx29yi-meson-0.60.0.drv /tmp/guix-tests/store/9mn0kdb31jrchnp3zzgnvmgzcm1cd7ij-ninja-1.10.2.drv /tmp/guix-tests/store/lg5j257z460kqn5y2zpq9095qpyvvdx8-ninja-1.10.2-checkout.drv /tmp/guix-tests/store/gkxhhd51vbqrrv4x3bycsy2k12f5d0fm-meson-0.60.0.tar.xz.drv /tmp/guix-tests/store/jv39rkg0s8lmmag8r5x30mai1x5136r6-meson-0.60.0.tar.gz.drv /tmp/guix-tests/store/j4rdkmgmv5gf07mh13q2p8sizfqi0zcx-module-import-compiled.drv /tmp/guix-tests/store/2r6rbqbvgqi0msmajqz1ylv3hgv18p2r-libelf-0.8.13.drv /tmp/guix-tests/store/jxrg02rgaymp91llhihyygvj2mnar895-libelf-0.8.13.tar.gz.drv /tmp/guix-tests/store/lhrcf8n28hh7a70slzcjcbwv8x876k7q-dbus-1.12.20.drv /tmp/guix-tests/store/f1pv7sj0vb1f4cff2xrlyfh5yykrvdvv-itstool-2.0.6.drv /tmp/guix-tests/store/p94shj49z9m8j2wq3jmskxvi7gbpzia9-itstool-2.0.6.tar.bz2.drv /tmp/guix-tests/store/xdi5126485gsw6mvx37vc6n5wr36yhfy-python-libxml2-2.9.12.drv /tmp/guix-tests/store/ddwzrp96zh4fch63w0n81acc65dc5n1q-libxml2-2.9.12.tar.xz.drv /tmp/guix-tests/store/igkmyldvyjb57jg0kwhjsm0ddksk700a-xmlto-0.0.28.drv /tmp/guix-tests/store/wppi02xzax3c4ivvbhhfpsn9j9j1l52m-xmlto-0.0.28.tar.bz2.drv /tmp/guix-tests/store/qvrk2k11sm7wfgzxlc7mh46lp2s5iybl-dbus-1.12.20.tar.xz.drv /tmp/guix-tests/store/43mj9x70809bvm0xds686lf0xn5id1n9-dbus-1.12.20.tar.gz.drv /tmp/guix-tests/store/w1df50wgkyql0b8sj1cn65qn1jn098kh-doxygen-1.9.1.drv /tmp/guix-tests/store/6rbfyfard7972xp7gdlai8hsv2hsq4zn-module-import-compiled.drv /tmp/guix-tests/store/ln972qkvma2g6qwwcba09g1gmh1pamnh-cmake-minimal-3.21.3.drv /tmp/guix-tests/store/1mwnr87746w4yw62b7jxbbmd8dbc9rsv-libuv-1.41.1.drv /tmp/guix-tests/store/jljx74ak5ql238hg9hxipa17wmchmq04-libuv-v1.41.1.tar.gz.drv /tmp/guix-tests/store/59qygq2wky37iyjq9jl39b9zgbaj6yd7-cmake-3.21.3.tar.xz.drv /tmp/guix-tests/store/q6wx3cw7cynrx74l67dyqcdvlrvsqf5k-cmake-3.21.3.tar.gz.drv /tmp/guix-tests/store/adzkdxigm9w7v6w26nrwpjzy50dzrhyb-libarchive-3.5.1.drv /tmp/guix-tests/store/3j5idg9r07m0bj5d3kr157y4h63z296l-libarchive-3.5.1.tar.xz.drv /tmp/guix-tests/store/sjk59gnkp4vmkp60rq02pb2z5c0nik9d-lzo-2.10.drv /tmp/guix-tests/store/n01vi6wwqgrcgfwblyj944g4wk3z1b76-lzo-2.10.tar.gz.drv /tmp/guix-tests/store/mapkpngb78vc71h6hidaq1y1haimy9r5-rhash-1.4.2.drv /tmp/guix-tests/store/0c7n3q8x5ayj5ll7m16b9cl8yiwzdrcm-rhash-1.4.2.tar.gz.drv /tmp/guix-tests/store/pg9qr99nqpl4ibhih23dvsly9srcrird-jsoncpp-1.9.4.drv /tmp/guix-tests/store/9ksb8j9yl8y3mw76c02isd5c1zi7kgbi-jsoncpp-1.9.4-checkout.drv /tmp/guix-tests/store/4mdija5vd7149a9v9mwdmznw1pjgdfvp-jsoncpp-1.9.4-checkout.drv /tmp/guix-tests/store/vrn18j4438yk8x266hxm9yj1h338ij5w-cmake-bootstrap-3.21.3.drv /tmp/guix-tests/store/mxdsa1lnahn5hah35dkwpvlhdidrb5b9-cmake-3.21.3.tar.xz.drv /tmp/guix-tests/store/np2m2v8p5hv89ffc1xd8kkjmc9x6dwvx-doxygen-1.9.1.src.tar.gz.drv /tmp/guix-tests/store/w4s80qcss3rvlnrqaznrnc9xx2b4hzhk-yelp-tools-3.32.2.drv /tmp/guix-tests/store/h3bk6giywb5dzhmlk2y3ypgzbaif1b2h-yelp-xsl-41.0.drv /tmp/guix-tests/store/63k0rqrvvqk30d2z0xha13bwid3sh5si-intltool-0.51.0.drv /tmp/guix-tests/store/i10li6jbqagg9mg77pvh813bz1zwpa1z-intltool-0.51.0.tar.xz.drv /tmp/guix-tests/store/5d6qr6jjk5nkmgsnkj73asahwa4ync42-intltool-0.51.0.tar.gz.drv /tmp/guix-tests/store/y2ndd5cyxiwy2n48a0is6vzcnwlw60fn-perl-xml-parser-2.46.drv /tmp/guix-tests/store/rrrrxprhj5v5kdxi5yf0sljhi3gndzq6-XML-Parser-2.46.tar.gz.drv /tmp/guix-tests/store/fsfrm6cpnmjalwkygqpx95afj75w3vsb-yelp-xsl-41.0.tar.xz.drv /tmp/guix-tests/store/vdcv3rxkk4dj6n06kh25fpfpk48sa42r-mallard-ducktype-1.0.2.drv /tmp/guix-tests/store/jdq6fhxdf28djx2avfwlpppq1wp8miin-mallard-ducktype-1.0.2-checkout.drv /tmp/guix-tests/store/vwfl23gk5shi4bslm74bixm45y7lajfc-yelp-tools-3.32.2.tar.xz.drv /tmp/guix-tests/store/x6vqn652f2kkdg0wx4mckn6nspqz43dd-docbook-xml-4.4.drv /tmp/guix-tests/store/0ksyjfjvnwf0rw3xq4b43khd19dnqxsb-docbook-xml-4.4.zip.drv /tmp/guix-tests/store/lw3vp2q5gazfwjnfh9f5i9mxyrsaqjh6-glib-2.70.0.tar.xz.drv /tmp/guix-tests/store/dwqa9sp2cs7sphy7psa1sspw8zyqs0yz-glib-2.70.0.tar.xz.drv /tmp/guix-tests/store/na8q08f52nzbhfq7k420yjbpbvcws9d1-module-import-compiled.drv /tmp/guix-tests/store/jvdj9bd8wdw01qvsh6cwlznfwg1xmf3f-libevent-2.1.12.drv /tmp/guix-tests/store/w358xfjmb9w4ny9bd4p2rl0lf8smqp13-libevent-2.1.12-stable.tar.gz.drv /tmp/guix-tests/store/6mfsxnxizis59daqirwwfijhqhbdvn7j-wget-1.21.1.drv /tmp/guix-tests/store/01avib9v6ryk2hqanbs7y4ln5k1a301v-perl-net-ssleay-1.88.drv /tmp/guix-tests/store/y2s3s7lii6lhznvsznzhq4f8mfsvwvlb-Net-SSLeay-1.88.tar.gz.drv /tmp/guix-tests/store/1953wjqf3sw2lwc7x207rnhy4pkp8bzd-libpsl-0.21.1.drv /tmp/guix-tests/store/npx78j0nqw43j8h6gkx5v8q537x0zkm9-libpsl-0.21.1.tar.gz.drv /tmp/guix-tests/store/4q65h7xhy8kbkzj30s7rh1s8nlggf259-perl-uri-5.05.drv /tmp/guix-tests/store/mxnkl5rzx474bzfqh5i6p89d3f60k7ps-URI-5.05.tar.gz.drv /tmp/guix-tests/store/rk3pc5h676kyn657malaykjjjvzc1wk7-perl-test-needs-0.002009.drv /tmp/guix-tests/store/dd45gmkf8hkmw6cr5qy1m1hsz2m48qn7-Test-Needs-0.002009.tar.gz.drv /tmp/guix-tests/store/6k1m77xqsh752q5fa6v5nk9amfvlsxhr-perl-io-socket-ssl-2.068.drv /tmp/guix-tests/store/qmfh434pi0c69swdbjz9wlfgksqhh7m6-IO-Socket-SSL-2.068.tar.gz.drv /tmp/guix-tests/store/8hrzpc4pywrdb5098f74frg4yrkwc985-perl-http-date-6.05.drv /tmp/guix-tests/store/sqg1rxy4x3l5hpmp20ciacx0ixcy6fpg-HTTP-Date-6.05.tar.gz.drv /tmp/guix-tests/store/cpcnsdnsdrq8djdv29f53qgw98lll49r-perl-lwp-mediatypes-6.04.drv /tmp/guix-tests/store/252bgkdf5826m39sg6p5ir6lzlz1dm6w-LWP-MediaTypes-6.04.tar.gz.drv /tmp/guix-tests/store/9wsfba3n6cgwrnyd0nk7rb6p30qj7vra-perl-try-tiny-0.30.drv /tmp/guix-tests/store/7kp5adkbkzgsw1k1hfyd21m6pamr4waj-Try-Tiny-0.30.tar.gz.drv /tmp/guix-tests/store/msmy7w894jb3rbwdjmqb829l4p5jrqg4-perl-test-fatal-0.014.drv /tmp/guix-tests/store/5v0pk6x5ryq2pr9qpmmvqp2cn7vbnw0r-Test-Fatal-0.014.tar.gz.drv /tmp/guix-tests/store/fa76fa752fsm2v4ylin9rh52d2chn4mn-perl-io-html-1.00.drv /tmp/guix-tests/store/1w2ps966mwp7y09qyqwacwyhal6mr8n3-IO-HTML-1.00.tar.gz.drv /tmp/guix-tests/store/i4ysglrmbga9xbj7aiq5v0hif8dw2l1a-perl-http-daemon-6.01.drv /tmp/guix-tests/store/gg97lch2yfiqd3r65jkn00riq9hq9z5q-HTTP-Daemon-6.01.tar.gz.drv /tmp/guix-tests/store/jdaymicps378ky4drdmzw8xdln0mn481-perl-http-message-6.18.drv /tmp/guix-tests/store/pvkhl924lzyvbb5d8s10smjizipggfdf-HTTP-Message-6.18.tar.gz.drv /tmp/guix-tests/store/zrzvkl33h6gfj7m2w8v04ib39lpdz1mc-perl-encode-locale-1.05.drv /tmp/guix-tests/store/jxjn1n3s55g3i068gc7vqp2vqg6bk1pm-Encode-Locale-1.05.tar.gz.drv /tmp/guix-tests/store/q7xl9i21gpwsg5n3af4mjg7yp1wjyp50-wget-1.21.1.tar.lz.drv /tmp/guix-tests/store/7dn7yzsc72spw0lvr7f5h42nkkgq3jib-nano-6.0.drv /tmp/guix-tests/store/gzsiy44bjlzvqlikwf784ahs5ddcgda8-nano-6.0.tar.xz.drv /tmp/guix-tests/store/7qc6clvvrd2vwmrk57bgnk7c86kckv8h-guile-bytestructures-1.0.10.drv /tmp/guix-tests/store/z95qj605zqwkdjk763wby0j34kqrwzbh-guile-bytestructures-1.0.10-checkout.drv /tmp/guix-tests/store/9qjk58067ri761nrw8n58y2cb1zl5nm4-isc-dhcp-4.4.2-P1.drv /tmp/guix-tests/store/g5vzh6a63kl79m419dmb0c3050zkm1d5-inetutils-2.0.drv /tmp/guix-tests/store/jsajnsc9fwq36pxmgyg4f7kldx4l4wdz-inetutils-2.0.tar.gz.drv /tmp/guix-tests/store/pil4h0njnpq18aav1qidghbz4fgzk0d8-sed-4.8.drv /tmp/guix-tests/store/bhj4c2q1732gkqrgdvw8kz663vssda4f-sed-4.8.tar.xz.drv /tmp/guix-tests/store/smfkla2d81jbyfgjbsmrllkn8jp39cmi-bind-9.11.36.tar.gz.drv /tmp/guix-tests/store/y8n2xdnxxhq3yx9i4gjqhm72f8jkil22-dhcp-4.4.2-P1.tar.xz.drv /tmp/guix-tests/store/68m02wgg1q5vm7x3jj3raz9fxfsmxkxl-dhcp-4.4.2-P1.tar.gz.drv /tmp/guix-tests/store/bpb10bqfavcxpmix4lw1pb8mykgalynk-gawk-5.1.0.drv /tmp/guix-tests/store/yqszk13mlq0bm6cw4xk8dfs8x5s72brk-libsigsegv-2.13.drv /tmp/guix-tests/store/cnw03bpim0dmbp6kvnsqgw0rm1b2wk60-psmisc-23.4.drv /tmp/guix-tests/store/08simppg2pdjj3fa5vj5z2jr4nsshdfd-psmisc-23.4.tar.xz.drv /tmp/guix-tests/store/cz7npp4iaygyfnn0rn9nxzz48s3pac7a-iw-4.14.drv /tmp/guix-tests/store/87mnm374vq13lsyxnklhlqk3clh12w5p-libnl-3.5.0.drv /tmp/guix-tests/store/00869marixcrqj5axm0bm3by8nxh1pd9-swig-4.0.2.drv /tmp/guix-tests/store/64vl8sv5q10x0wx5qz2yr1a966grs27k-boost-1.77.0.drv /tmp/guix-tests/store/6wf8ybg4ad5ndbsykaffzyrifh4rjxj6-boost_1_77_0.tar.bz2.drv /tmp/guix-tests/store/ahxbd7r4pwpz7plklqq9jr1rk48xv3zl-tcsh-6.22.03.drv /tmp/guix-tests/store/glxl883f74gazyldc9rjzqcnh1qgb1xk-tcsh-6.22.03.tar.xz.drv /tmp/guix-tests/store/5ggczxi2i04vd81yh42v7sg0lr0bv5fs-tcsh-6.22.03.tar.gz.drv /tmp/guix-tests/store/mwgh318v1ma3idnj3l4vsbn71yh9rkhx-icu4c-69.1.drv /tmp/guix-tests/store/97bz00wrbbwn79skw5m5a22qz7hwrrlg-icu4c-69_1-src.tgz.drv /tmp/guix-tests/store/sdw1p14wrcjqjz0r3jmsywy0lh3nms0r-swig-4.0.2.tar.gz.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/ixby5dqrz40a1kvm0hbvbiannz4fdl8f-libnl-3.5.0.tar.gz.drv /tmp/guix-tests/store/jycsgdab94fq1x9ll5lmk1jkcgd409sx-libnl-doc-3.5.0.tar.gz.drv /tmp/guix-tests/store/v9nnd7qj0ikm0jd20rwjsghz9rrnnkk9-iw-4.14.tar.xz.drv /tmp/guix-tests/store/dskvmzxj8js5bgliqb0y55v1bplzy78p-glibc-utf8-locales-2.33.drv /tmp/guix-tests/store/k7xjyqm9krkbv9qvw87z7dcwnc828lgn-glibc-2.33.drv /tmp/guix-tests/store/4978fq5br4v48dk27vk71yllddnn3kzm-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/kbwm91cmwawdj4cr3cwfkwxpfpjgg0ml-bash-static-5.1.8.drv /tmp/guix-tests/store/zjsnvvk557wmb5w2i962mq60fynrk6jz-linux-libre-headers-5.10.35.drv /tmp/guix-tests/store/f1jvl67m012mpcvnwmq3zcnw8ldvbsyp-mcron-1.2.1.drv /tmp/guix-tests/store/52qw4jxc97diz360jlbhqjwyrsvxxv0a-mcron-1.2.1.tar.gz.drv /tmp/guix-tests/store/f6qwlxh95h8kspn0c8rf7qlmzf1d570m-mg-20210609.drv /tmp/guix-tests/store/jlfzl42fs15znvh7bjsjkzb4j7hiy3vn-diffutils-3.8.drv /tmp/guix-tests/store/ksqy4pgivydykas6p5vr55vhm85ywlp4-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/npmm1196qbjwzi9n0kyzjd0ggv0c1lib-mg-20210609-checkout.drv /tmp/guix-tests/store/pphf5gq1nspncfvlbz04yq7b6nj4f965-mg-20210609-checkout.drv /tmp/guix-tests/store/fpmwwkafs0ppcp478m82vsk4qbqb6bxl-pciutils-3.7.0.drv /tmp/guix-tests/store/p8bzhrqn88y4v6sysrkpld645vnv3mf1-pciutils-3.7.0.tar.xz.drv /tmp/guix-tests/store/7zj0chwvkz7bgkhvji1q7khz6538z2gv-pciutils-3.7.0.tar.xz.drv /tmp/guix-tests/store/fv1ln5rj47mlqq73180h9m08c3ia14c3-guile-git-0.5.2.drv /tmp/guix-tests/store/16bfl9b4p7flj0yydzy9gk6rqprc62p5-libgit2-1.3.0.drv /tmp/guix-tests/store/faq7i03czy6h6mm4r7lsqb66b1dd7rbl-libssh2-1.9.0.drv /tmp/guix-tests/store/sc0g4yp60knb191j626s8w8ch8izq8qr-libssh2-1.9.0.tar.xz.drv /tmp/guix-tests/store/xpzp6f37h255rhp2cv4ymcl3j94ay9v5-libssh2-1.9.0.tar.gz.drv /tmp/guix-tests/store/kkbd2js27kxhfgkj29vsw7jkk8sz1m9y-pcre2-10.37.drv /tmp/guix-tests/store/19qkl32ja8ib1a7lsh4gwrj37drcrp4j-pcre2-10.37.tar.bz2.drv /tmp/guix-tests/store/rwnrwvajwlphc2mszywvrbncwbjaw0kz-libgit2-1.3.0-checkout.drv /tmp/guix-tests/store/fnfhqmvxkgcmchkz8kh03n7xbs7dhdbw-libgit2-1.3.0-checkout.drv /tmp/guix-tests/store/xlndcmn1i91dlrccxxac31iaj1r2msqq-http-parser-2.9.4-1.ec8b5ee.drv /tmp/guix-tests/store/fijh42jbpl81hxbzvxnk7ffyacm457zg-http-parser-2.9.4-1.ec8b5ee-checkout.drv /tmp/guix-tests/store/cxf51006n7d0c21skq3aswfnjg7l6zg0-http-parser-2.9.4-1.ec8b5ee-checkout.drv /tmp/guix-tests/store/k8gr1hl42xfv4b36355r37yz841dw4qx-0001-url-treat-empty-port-as-default.patch.drv /tmp/guix-tests/store/bz7d9qwsmal6099r8dizwj9km37dm7xd-guile-git-0.5.2-checkout.drv /tmp/guix-tests/store/w5w120h3a0hzjahcbasg2q24q30nhag5-guile-git-0.5.2-checkout.drv /tmp/guix-tests/store/g17zvd9vf2yyadylx3v4ic4c1wm2l5kz-guile-readline-3.0.7.drv /tmp/guix-tests/store/g8r5k2ws8v7ysy0j7s1bk7zhzgj2siqz-kbd-2.4.0.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/8b9skn33p8x39l70ypvpw464gm8hik82-kbd-2.4.0.tar.xz.drv /tmp/guix-tests/store/r8iwyrjc5f2pkr7xjvvxps1fi8w62bqq-kbd-2.4.0.tar.xz.drv /tmp/guix-tests/store/g98b81dhda9q4gbqbfzjd14dy37f0qan-guile-ssh-0.13.1.drv /tmp/guix-tests/store/h2g0wf0p18lwmrpm5v8ah44xgw0n4sd1-libssh-0.9.6.drv /tmp/guix-tests/store/01ymca8l0xg5149nncyc8wb64123p5f0-libssh-0.9.6.tar.xz.drv /tmp/guix-tests/store/kymj24blqlkmgvp42255kn7y526q7x0b-guile-ssh-0.13.1-checkout.drv /tmp/guix-tests/store/3h9fajz0hyjicpjcx3x6kr39w4b4jw7v-guile-ssh-0.13.1-checkout.drv /tmp/guix-tests/store/glj6vpavn6hsq4mn6mv4ljajrwphhpnd-less-590.drv /tmp/guix-tests/store/yccr1pc9hpqqk14mfasvcppqj4cl04as-less-590.tar.xz.drv /tmp/guix-tests/store/madpyki5i3q3r4sh9sdivm7db8nhydkc-less-590.tar.gz.drv /tmp/guix-tests/store/jf7imq8fj831wfmp8x89cswxq1vnp2h8-util-linux-with-udev-2.37.1.drv /tmp/guix-tests/store/jm3jb8p39zaf6dimvgdlsqbsbq5x5rb1-guile-colorized-0.1.drv /tmp/guix-tests/store/1mi82141ikz1qv34bhrsh23dga5ml303-guile-colorized-0.1-checkout.drv /tmp/guix-tests/store/k1xws21mxn355ck2jjmdvdy0wlqnwy5l-guix-icons-0.1.drv /tmp/guix-tests/store/45pic93zs22dvh7kncbl30czrqmgaqkz-module-import-compiled.drv /tmp/guix-tests/store/666b3184y9jlxm2b6b64k2q08nqc1b15-guile-rsvg-2.18.1-0.05c6a2f.drv /tmp/guix-tests/store/6nnsb5ij49hqrb38j1xzd51mkignsygs-cairo-1.16.0.drv /tmp/guix-tests/store/1vwqa9dkwhggp5i5c6f4r5mhrm9jnr05-libpciaccess-0.16.drv /tmp/guix-tests/store/1633zavvypdlxn33xscws5dixkxk2xvj-libpciaccess-0.16.tar.bz2.drv /tmp/guix-tests/store/2cz4hv6dgp1l25c4jjvrq0afbrbcma0s-gobject-introspection-1.66.1.drv /tmp/guix-tests/store/49i46bq4kmzasvkl55d2a7is0p5ygf8h-gobject-introspection-1.66.1.tar.xz.drv /tmp/guix-tests/store/wpk723agq2ywwsnrpjpfsllid19y9547-gobject-introspection-1.66.1.tar.xz.drv /tmp/guix-tests/store/6f82h68g03inanl5236x60vil6j76awg-libdrm-2.4.107.drv /tmp/guix-tests/store/8sx78yf9lfd5nx3f1yl4bbb271vxilqj-libdrm-2.4.107.tar.xz.drv /tmp/guix-tests/store/950nfjl37002pjyxkzmb003mq5xlix6z-libspectre-0.2.9.drv /tmp/guix-tests/store/l07rpf0f1yvxzgn8yji1zc5ya2g2zqx2-ghostscript-9.54.0.drv /tmp/guix-tests/store/5rh6x6j9gfl82193sxlvb474pb3nkrwc-ghostscript-9.54.0.tar.xz.drv /tmp/guix-tests/store/xx5hnbs01aba5dk246zqmvl9qwh9j460-ghostscript-9.54.0.tar.xz.drv /tmp/guix-tests/store/5vnml2rg59fipa1r0akrdw6fdnjfy46c-font-ghostscript-8.11.drv /tmp/guix-tests/store/azlxx6qzgwjm6yyy0z05jbdxrpm02crq-ghostscript-fonts-std-8.11.tar.gz.drv /tmp/guix-tests/store/9vvj3igk13pfxfq47yamfw5vm7kvaz3l-libjpeg-turbo-2.0.5.drv /tmp/guix-tests/store/9300n7xf7nakazm93nkz4s2lmjznfw65-nasm-2.15.05.drv /tmp/guix-tests/store/0402pfph3s15mnib10rkxc3qx8wk1r7j-nasm-2.15.05.tar.xz.drv /tmp/guix-tests/store/zhvkblzv4r36kqi3dp5mizra85384a21-libjpeg-turbo-2.0.5.tar.gz.drv /tmp/guix-tests/store/jmliaf57fyx77wq1rk5ja0h05mn11sc9-jbig2dec-0.19.drv /tmp/guix-tests/store/xkis6w40kr8l1n91y8xhdyn3q0ngrggr-jbig2dec-0.19.tar.gz.drv /tmp/guix-tests/store/mnyf11gpi02b1j6b30282cksn6p29iw1-libpaper-1.1.24.drv /tmp/guix-tests/store/j2kvglmqz8k2lwkfc09l230fkrf825k9-libpaper_1.1.24.tar.gz.drv /tmp/guix-tests/store/rgr3isbphrcg13zwzc2xycg49604knf1-libtiff-4.3.0.drv /tmp/guix-tests/store/c28gr8dky7a1pv83rznvc7zc7xa63852-tiff-4.3.0.tar.gz.drv /tmp/guix-tests/store/p3nbj46s3pa9m8jpmq570jd0dfssb8h6-libspectre-0.2.9.tar.gz.drv /tmp/guix-tests/store/a551rjad05wa1j4fa6f6ria10w7wkzqg-module-import-compiled.drv /tmp/guix-tests/store/bb84qa9qwh8qgglq969nm40kgh7l8z7g-pixman-0.40.0.drv /tmp/guix-tests/store/2kppbr9qf9m8wjr4hnfmlwww2bp85xy9-pixman-0.40.0.tar.xz.drv /tmp/guix-tests/store/ig0j6nwczg9jl5xn2bvi9bczy71z00za-pixman-0.40.0.tar.gz.drv /tmp/guix-tests/store/qwhkcj6gifhipdx0bykh8k508iv20wv0-cairo-1.16.0.tar.xz.drv /tmp/guix-tests/store/5rl93jh93l4lk72ayjkvy9pk1k9q5wvp-cairo-1.16.0.tar.xz.drv /tmp/guix-tests/store/rxws90r8xdblf9zm6v85k5gnb72sjwag-poppler-21.07.0.drv /tmp/guix-tests/store/0gdx1ggq4bdvyzbiprl8akbx0qfag00f-lcms-2.12.drv /tmp/guix-tests/store/id06kx2lmfyzwygvai01njzgdpvgxmgi-lcms2-2.12.tar.gz.drv /tmp/guix-tests/store/6lnqgvpwjxlc0mdc3wnys6zvylpzy571-cairo-1.16.0.drv /tmp/guix-tests/store/8i18wrimi8q61nrvf3ldf3fir1m5kgjc-openjpeg-2.4.0.drv /tmp/guix-tests/store/2zjfjys3k0nbwmsnwzmm1hdg4n8kg5cb-openjpeg-data-2020.11.30.drv /tmp/guix-tests/store/dhvvb83w2mlqflgvy1600sicnn4ny7gm-openjpeg-data-2020.11.30-checkout.drv /tmp/guix-tests/store/z73n3cdwj0jbw5frn2jffyai2nzb6pld-module-import-compiled.drv /tmp/guix-tests/store/54nawf3lmxbipflmpwzb0zwpkan6zpkh-openjpeg-2.4.0-checkout.drv /tmp/guix-tests/store/pjrd3y75k6s05mcvacawa1d1hjaqhiz6-poppler-21.07.0.tar.xz.drv /tmp/guix-tests/store/akwd6b9vagad50v50plfa2j7q1mh6h0z-glib-2.70.0.drv /tmp/guix-tests/store/cpb9gxknn6zdszgwfmr2lplkrbpq2mmy-shared-mime-info-1.15.drv /tmp/guix-tests/store/849616pvharfhc6r4p8kflz647d4mm3b-shared-mime-info-1.15.tar.xz.drv /tmp/guix-tests/store/knz970wh9br51388mhnrfj0lfa7xfkdl-guile-cairo-1.11.2.drv /tmp/guix-tests/store/i1zcl2pd4r8agw87xa2hhzj7jzfjdp3h-guile-cairo-1.11.2.tar.xz.drv /tmp/guix-tests/store/psqszs75zic5lxkw9nf654xmajg6pq81-guile-cairo-1.11.2.tar.gz.drv /tmp/guix-tests/store/w5g9vfpwj4n5kg5ay3b3wzac34zxhria-guile-lib-0.2.7.drv /tmp/guix-tests/store/sqq1f975w3mv5mhripygm7mf8qpingcp-guile-lib-0.2.7.tar.gz.drv /tmp/guix-tests/store/l9ywwqvvdzwyf244618hprsclq2wazbj-librsvg-2.40.21.drv /tmp/guix-tests/store/0r7iyfdx2njcgqi4bsbgrncn0xmf58pr-libgsf-1.14.47.drv /tmp/guix-tests/store/scqlzp3wrmjxiiwqvd6z5vz10gskny78-libgsf-1.14.47.tar.xz.drv /tmp/guix-tests/store/x3yfjx440ziw2afiykklvczhbvcn1hfk-docbook-xml-4.5.drv /tmp/guix-tests/store/y7p9gwd0l4d1ljbb5arp3fc9gqbyh4f3-docbook-xml-4.5.zip.drv /tmp/guix-tests/store/xwgkkzn7v0lfjc5vjj5nbk73rfn74h9b-gdk-pixbuf-2.42.4.drv /tmp/guix-tests/store/6ms48d12d6h6p4mlbvy2pc92z7k59mag-gdk-pixbuf-2.42.4.tar.xz.drv /tmp/guix-tests/store/jv424rnsi01kjqrq04970gpk5cnqihw7-docbook-xml-4.3.drv /tmp/guix-tests/store/rym91smpacy7q9m2vlr0n23znr84lxq4-docbook-xml-4.3.zip.drv /tmp/guix-tests/store/518rx93g9y0dq7mbwhdpr0dqyzxcd0bl-libdatrie-0.2.13.drv /tmp/guix-tests/store/cqp8x0bnpjkxiy949h7c5kyivyrj8s4k-libdatrie-0.2.13.tar.xz.drv /tmp/guix-tests/store/8i3kns3w97qgixhn4q7wb5n6yjyvy8sp-pango-1.48.10.drv /tmp/guix-tests/store/b1a1ndzgxjc5r856wqkp0m65yczvdy39-harfbuzz-2.8.2.drv /tmp/guix-tests/store/frbfs7dcw5rkrmny4iwxyv6s3whq8paa-harfbuzz-2.8.2.tar.xz.drv /tmp/guix-tests/store/wgjj3bjv2gx0xdml240cpj0ws558y29m-graphite2-1.3.13.drv /tmp/guix-tests/store/3vlz4jvai3ijrg5y196y528fkwfgzx6s-graphite2-1.3.13.tgz.drv /tmp/guix-tests/store/j02az1xlma527fwlnjq1h668q3y8vl3l-python-fonttools-4.6.0.drv /tmp/guix-tests/store/1d43ppzhvv8ss51649knyyqqiy50zl0m-python-pyparsing-2.4.7.drv /tmp/guix-tests/store/2mjimlk8rz6yb79r9qbb3v2f232m9qkc-pyparsing-2.4.7.tar.gz.drv /tmp/guix-tests/store/1h2lyrlgj97g3n16wwhc79c7ln2l024l-python-pytest-runner-5.2.drv /tmp/guix-tests/store/4im9x2mbmjl1cn21s7l9kl29kn5wmw0j-python-six-bootstrap-1.16.0.drv /tmp/guix-tests/store/fz8jx0fx1i03ax2sf3c33r9y069ixahm-six-1.16.0.tar.gz.drv /tmp/guix-tests/store/ggwznmj631clj16p3xjixh1x2yphbabg-pytest-runner-5.2.tar.gz.drv /tmp/guix-tests/store/mqg9wwykz0dmqjmm6zdh9wp5iqg9x9yw-python-setuptools-scm-6.3.2.drv /tmp/guix-tests/store/pirnb59cw9wr18ar7h2d195zhr74l3sy-setuptools_scm-6.3.2.tar.gz.drv /tmp/guix-tests/store/sklgjna5vkzr1kd9rp8czvnd3yvqlqhr-python-tomli-1.2.2.drv /tmp/guix-tests/store/72ikfq0yinwmnhiyxjwcgvzp5bwq78zn-python-flit-core-3.4.0.drv /tmp/guix-tests/store/v5qfxqkfbigl8ls0jpiki8jjzsj0fwql-flit-3.4.0.tar.gz.drv /tmp/guix-tests/store/yqplrl93igh8b2j8l3lcgkmqky2rddna-python-toml-0.10.2.drv /tmp/guix-tests/store/vgq2xxs4ami7pwd2r00f9jqzhd2a2l4r-toml-0.10.2.tar.gz.drv /tmp/guix-tests/store/c66fzdc43r5gnxm5cw2cs51swhyq3imj-python-pypa-build-0.7.0.drv /tmp/guix-tests/store/jams5qd3hs82bjqa55x7r2wqzglgcyjz-build-0.7.0.tar.gz.drv /tmp/guix-tests/store/sbn7vfhnjf0dv6vw732k2vkwf9yvjjqs-python-pep517-bootstrap-0.9.1.drv /tmp/guix-tests/store/w0cz8xk3pf2nzgibfdf3i3i3yb20hcy6-pep517-0.9.1.tar.gz.drv /tmp/guix-tests/store/w2a8nw7lpi8jv4hbp1pa0xb9gv94c56f-python-wheel-0.33.6.drv /tmp/guix-tests/store/ghnsg29srfi8xhjzq069a667zb883cfc-wheel-0.33.6.tar.gz.drv /tmp/guix-tests/store/w893c4ik91b1a8lkziqnm18i6kgbvx5d-python-packaging-bootstrap-20.0.drv /tmp/guix-tests/store/qxvrgxg6q9smn6z8nlrqrwnif93x9pww-packaging-20.0.tar.xz.drv /tmp/guix-tests/store/13xp6id4887qq28b6sc6h9wzhlkbksc8-packaging-20.0.tar.gz.drv /tmp/guix-tests/store/rla4c0kgqjcm16l79hqc54hxscai5n7k-tomli-1.2.2.tar.gz.drv /tmp/guix-tests/store/5p0bvvky448923k7fylsdzgsv8fdppww-python-py-1.10.0.drv /tmp/guix-tests/store/cvhnybips1n2cy2yaw0yfhy1ar4lqphv-py-1.10.0.tar.gz.drv /tmp/guix-tests/store/83x000x8nqk95j7xcxiswn62fzq1l8g0-python-attrs-bootstrap-21.2.0.drv /tmp/guix-tests/store/73jn0glzgd211jicb55dfp81m55k255w-attrs-21.2.0.tar.gz.drv /tmp/guix-tests/store/jknvfj1msw0c1qs0d3day2zc5244jsbq-python-more-itertools-8.2.0.drv /tmp/guix-tests/store/clv9p0c7v9l5y2v6yl9z23nl4psb6csx-more-itertools-8.2.0.tar.gz.drv /tmp/guix-tests/store/l5ghzm4xa5hp8bvrr7zk9hrmcrzk90nw-python-pytest-6.2.5.drv /tmp/guix-tests/store/2r79s4gaz7qp0310ky8ny9qzsxngl3g4-python-sortedcontainers-2.1.0.drv /tmp/guix-tests/store/4w8xkhsgjwr6xjr6jvmpcd16fxf8pfvs-python-filelock-3.0.12.drv /tmp/guix-tests/store/rmimazya2r7xxbivh7y2w5w49387abzb-filelock-3.0.12.tar.gz.drv /tmp/guix-tests/store/6wivz10hfixa5jy9788zdxcbv0l16wls-python-appdirs-1.4.3.drv /tmp/guix-tests/store/j79g0cbd6ijr44zqffdqwy4ps84wpal7-appdirs-1.4.3.tar.gz.drv /tmp/guix-tests/store/fqcnc4pm0nlpq4p9gjn23qqx8dnnns8m-python-distlib-0.3.1.drv /tmp/guix-tests/store/jv28qccm9b1byfsga3677rznvrawlgrr-distlib-0.3.1.zip.drv /tmp/guix-tests/store/ih7z1b3a6lrkrjr7zwvgq3cm0p09lhm6-sortedcontainers-2.1.0.tar.gz.drv /tmp/guix-tests/store/6hwhxayicrwk3lg9a8v2cb5nn7lvq3vv-python-mock-3.0.5.drv /tmp/guix-tests/store/acvv5nylvrrg6x6597nhybhv540gnv5m-python-six-1.16.0.drv /tmp/guix-tests/store/n6xfvp2qp1b6q8kmlxcbflgmn1vbq5ca-python-pytest-bootstrap-6.2.5.drv /tmp/guix-tests/store/6k7ji090bd9xgl89drg7mg72b38hfhmd-pytest-6.2.5.tar.gz.drv /tmp/guix-tests/store/p69x7vz4k9v8rzp07hqqznr1y7qvpi5b-python-iniconfig-1.1.1.drv /tmp/guix-tests/store/p5m9njda55z5wlahnxja3hxbd7hj1l26-iniconfig-1.1.1.tar.gz.drv /tmp/guix-tests/store/pgm55978kw09r2ymcl12wz12xaagl2ly-python-wcwidth-0.1.8.drv /tmp/guix-tests/store/w2cdb3kc9s3w00cfcir2ydlmljdb2k0r-wcwidth-0.1.8.tar.gz.drv /tmp/guix-tests/store/r8hhnw5h7n5dpyml45273ixag5vz290v-python-pluggy-0.13.1.drv /tmp/guix-tests/store/cyw49jzinnn3dysmlsff31j718p59y4s-pluggy-0.13.1.tar.gz.drv /tmp/guix-tests/store/wjdmpalck3l6df3f5ggdryhf90v4v3mj-mock-3.0.5.tar.gz.drv /tmp/guix-tests/store/9fjdiiy3rf18wgy9kw3q1n1nrs72m4s0-python-nose-1.3.7.drv /tmp/guix-tests/store/p6r6akibgmldl4rsqnm763mpsiqydmr5-nose-1.3.7.tar.gz.drv /tmp/guix-tests/store/cc907ag3kvv1qanzfzn512qxq4i5dabp-python-xmlschema-1.2.5.drv /tmp/guix-tests/store/16lzr4lakg8cdcjmif35jf0wknybf41q-python-xmlschema-1.2.5-checkout.drv /tmp/guix-tests/store/fybsdvq2d2vwm6k7jlk26k8nivbngp0n-python-elementpath-2.0.3.drv /tmp/guix-tests/store/yqynjpjmk3gndv32p4j54nx3zg3l1qdf-elementpath-2.0.3.tar.gz.drv /tmp/guix-tests/store/k841ad1fk364xn2i28457377x67aii3v-python-lxml-4.6.3.drv /tmp/guix-tests/store/kgll9h1rj15ja2k4wlikww4jnl2vh1yd-lxml-4.6.3.tar.xz.drv /tmp/guix-tests/store/rv5z8vvw51i198jfqmyn1nbmj1y9zhzz-lxml-4.6.3.tar.gz.drv /tmp/guix-tests/store/wvk1hnlgjljijvsiv7jqcn5w6kry8jpa-python-hypothesis-6.0.2.drv /tmp/guix-tests/store/g14wbkgrq2d5dxxk544s8s6qxpi00xkn-hypothesis-6.0.2.tar.gz.drv /tmp/guix-tests/store/rchdn7fkqzhkhyhc3vc16qfr8xr5lw4w-fonttools-4.6.0.zip.drv /tmp/guix-tests/store/bz0fz8qvgpd72zjnzpz5km09hdbzx2wn-libthai-0.1.28.drv /tmp/guix-tests/store/3cw20nvvzakssdrhiilwp0l0a7qwn6dz-libthai-0.1.28.tar.xz.drv /tmp/guix-tests/store/d5kih80xiplf7cmnslqgdyzcj8frn4zy-fribidi-1.0.9.drv /tmp/guix-tests/store/dd8n4rcqdlw1swx78ww2hyci13qci8lm-fribidi-1.0.9.tar.xz.drv /tmp/guix-tests/store/qb1nsf5jahi9444ng6g0navi9agsaskk-pango-1.48.10.tar.xz.drv /tmp/guix-tests/store/dy6hd89lb65wqf97wn6768pcs0yjfvvb-pango-1.48.10.tar.xz.drv /tmp/guix-tests/store/hm5p7xl3ad97k70nqp9ydij4da2l31zk-libcroco-0.6.13.drv /tmp/guix-tests/store/03ddw7xmnib10zap1z2nyn9fpqpv8wmz-libcroco-0.6.13.tar.xz.drv /tmp/guix-tests/store/6cvwsd8snmnc25606gfvdmw7gf0c6l83-libcroco-0.6.13.tar.xz.drv /tmp/guix-tests/store/s21fp4h91fgjg1n2jmrjwmdkd5ijz05h-librsvg-2.40.21.tar.xz.drv /tmp/guix-tests/store/sxi5wqkgj4v0w92rdfglk4fpld1dh2lr-guile-rsvg-2.18.1-0.05c6a2f.tar.xz.drv /tmp/guix-tests/store/rfy46yh6r8lza6l20qyhjkw1pd2lwm0h-guile-rsvg-2.18.1-0.05c6a2f.tar.gz.drv /tmp/guix-tests/store/d2qcs74lib84ayjbx0kdbnnnrcndc7y4-imagemagick-6.9.12-4.drv /tmp/guix-tests/store/0zgpdz9ygz4sli5wwd429mnkd426ac4s-graphviz-2.49.0.drv /tmp/guix-tests/store/5myq09qf466wka0b5fzpfmcvcikq2300-libxaw-1.0.14.drv /tmp/guix-tests/store/9ah006xxmdjr2hc9srmfnh55x0xslyn9-libxpm-3.5.13.drv /tmp/guix-tests/store/c81ixkb0abyckywhfmnp3966i2fnz40y-libxt-1.2.1.drv /tmp/guix-tests/store/h6yxfd4fm8zsvyygb3zzvna8hsys6536-libice-1.0.10.drv /tmp/guix-tests/store/l0ydvipidjilav2xkfc9d8x593scp7xh-libICE-1.0.10.tar.bz2.drv /tmp/guix-tests/store/mp66vbanf751fr8xslddhwsh9sw9jlwj-libsm-1.2.3.drv /tmp/guix-tests/store/7ir6rvz3ijm3bi7d6hyrnkpzxa3nibgg-libSM-1.2.3.tar.bz2.drv /tmp/guix-tests/store/pspndz27fi9lr0m7nafmbyy0vg44xsdf-libXt-1.2.1.tar.xz.drv /tmp/guix-tests/store/2jja5ci203vghx0g9va4wfak90rdjwfw-libXt-1.2.1.tar.bz2.drv /tmp/guix-tests/store/s97ngr3x783qxh2yk03lkjhka4vj0dqk-libXpm-3.5.13.tar.bz2.drv /tmp/guix-tests/store/gagrzik18ii9w65j4ki8zchcrx97i9dd-libXaw-1.0.14.tar.bz2.drv /tmp/guix-tests/store/wlpmac7biws74w8gfs4fd1bab65rg535-libxmu-1.1.3.drv /tmp/guix-tests/store/3qh8q3j64dfcdkscrmfspary1h0s4rk7-libXmu-1.1.3.tar.bz2.drv /tmp/guix-tests/store/kx2igpxh0yn94klc72w5q0j3iyaibfk6-gts-0.7.6.drv /tmp/guix-tests/store/7wdbwbs2lmq4ljp29kvj3n89lwlyhdbv-gts-0.7.6.tar.gz.drv /tmp/guix-tests/store/wj2wwpcgvsw0rljdwkjwgadqsrjiqqgx-graphviz-2.49.0.tar.xz.drv /tmp/guix-tests/store/xa7r2qdzcyl4mavpigr3jdf8bxpfxr27-gd-2.3.2.drv /tmp/guix-tests/store/wij1b56irx5hfbpc65l1fyyid7w4zlfx-libgd-2.3.2.tar.xz.drv /tmp/guix-tests/store/kjcf53firqwhmaah3ih1cwkkm6qk76mi-libgd-2.3.2.tar.xz.drv /tmp/guix-tests/store/ganfj86w0mwg26wf178k3k7fn3a31gii-ImageMagick-6.9.12-4.tar.xz.drv /tmp/guix-tests/store/7pivcm45q4hw5jra2jpgbi4qd5ssipp8-ImageMagick-6.9.12-4.tar.xz.drv /tmp/guix-tests/store/is2i0k7647r82lav7n4l117alz5l5kcs-fftw-3.3.8.drv /tmp/guix-tests/store/13x9yk166is9c0kyq5mb9qw72krngnxm-fftw-3.3.8.tar.gz.drv /tmp/guix-tests/store/rdc732dgcpdp087ycy1j9rxvp8xg8n60-guix-artwork-2f2fe74-checkout.drv /tmp/guix-tests/store/yxaka5dzh5kh3zlpjkvrziib7lv5jhxa-guile-lzlib-0.0.2.drv /tmp/guix-tests/store/258q9gcnija62sq31aqiflkvlzr1227s-guile-lzlib-0.0.2.tar.gz.drv /tmp/guix-tests/store/xgv6x1w0p18xidfkvd8skb1ksvpwln8j-lzlib-1.12.drv /tmp/guix-tests/store/6xijr98z01455mpp61fdcb6rrd7ivgfv-lzlib-1.12.tar.gz.drv /tmp/guix-tests/store/yyjr2rikcc16qvb2anc60jfv7f8k3f82-guile-sqlite3-0.1.2.drv /tmp/guix-tests/store/i9vlr1isl4chnqcyqr031bvzcv2vzw83-guile-sqlite3-0.1.2-checkout.drv /tmp/guix-tests/store/mc3gnkfpjwnglbs46ka049kl8ghnzmd4-patch-2.7.6.drv /tmp/guix-tests/store/0yaz8903406bdjggf3qci4xfl3v9v1vw-ed-1.17.drv /tmp/guix-tests/store/pksym19g14alxabzbvkvdvbhdbmii5rf-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/nhbr7xzlz6hai88brw7klrhn0jhkbvjj-sudo-1.9.8p2.drv /tmp/guix-tests/store/vrmjmliigr4cjjdg7rbadj4hzivasg62-groff-1.22.4.drv /tmp/guix-tests/store/p8lbfpyyqyx0qvx3pbhy84gzsc5yykhn-groff-1.22.4.tar.gz.drv /tmp/guix-tests/store/vrv2lnpjyh1hcrxjf66rr9a4zqz3x60i-psutils-17.drv /tmp/guix-tests/store/p8lxnszfcd4db52k2jgjgma6z261ccpn-psutils.tar.gz.drv /tmp/guix-tests/store/w5csmfhyia8irry3sx36kyfly8bdardw-sudo-1.9.8p2.tar.xz.drv /tmp/guix-tests/store/1wx1ypdnq8nh1c6p5ys9m9pl1k8dzzd5-sudo-1.9.8p2.tar.gz.drv /tmp/guix-tests/store/rkkpd7b5xklw29fxsxnfb3ajdv8yfzj4-man-db-2.9.4.drv /tmp/guix-tests/store/3qvn6zj3apw6vnprlj7akinpwzz1ky5x-man-db-2.9.4.tar.xz.drv /tmp/guix-tests/store/f1w548d30n4p6zjd573aw5vlvxzkflwz-libpipeline-1.5.3.drv /tmp/guix-tests/store/mhpl6hr81nh5hc3nz8fmszf44aq2s52d-libpipeline-1.5.3.tar.gz.drv /tmp/guix-tests/store/gy4ky336kyffswp0864rnzm12j7lbcgx-groff-minimal-1.22.4.drv /tmp/guix-tests/store/rmcpxjv7lz78alzgsa3nspqqggjkxy02-info-reader-6.7.drv /tmp/guix-tests/store/sd3cwl4rq49ci499hpxhkgvixr1yz01s-shepherd-0.8.1.drv /tmp/guix-tests/store/gk3x735dci3qaw541pl9l90z0f5w248b-shepherd-0.8.1.tar.xz.drv /tmp/guix-tests/store/xpcy4xvdh1psxz8s6rfa26hffblgykvs-shepherd-0.8.1.tar.gz.drv /tmp/guix-tests/store/y3b6ydmh2hdj6nqh227fpj8888d2c3xc-guix-1.3.0-16.10ceb3e.drv /tmp/guix-tests/store/63ckcgkk5ijfa36g3dyhmlmnrk7abgmc-po4a-0.63.drv /tmp/guix-tests/store/04kg0x46kjrjhxrmwqddd0kmzg6yskfd-perl-cpan-meta-2.150010.drv /tmp/guix-tests/store/3xbblh9q03wkinhppx94lsyw4cznd9pq-CPAN-Meta-2.150010.tar.gz.drv /tmp/guix-tests/store/7cxa6x3fs3mb2hblvnzigjnzskmdx2ih-perl-parse-cpan-meta-2.150010.drv /tmp/guix-tests/store/gyxah97nb34z2l70ghyzgc0ypn86l5dx-perl-cpan-meta-yaml-0.018.drv /tmp/guix-tests/store/5ngr6g0iqi4dj8s27yrfybv38nqrzzz6-CPAN-Meta-YAML-0.018.tar.gz.drv /tmp/guix-tests/store/vca8zzap8k41maynsxbxna3ldmcn4gkd-perl-cpan-meta-requirements-2.140.drv /tmp/guix-tests/store/kd2gq3315fyp62vik956s13kbm05fsqn-CPAN-Meta-Requirements-2.140.tar.gz.drv /tmp/guix-tests/store/05sjz0rc22jvmbx96cs2dqxxs44sbhx8-texlive-fonts-latex-59745.drv /tmp/guix-tests/store/033x5fzq5q8vr6j13armc7r1ca4xwhdj-texlive-fonts-latex-59745-checkout.drv /tmp/guix-tests/store/7l5z7snlsga3fw2flfaffcxsyr6j5vvy-subversion-1.14.1.drv /tmp/guix-tests/store/501mancxh5qh5188h3paqs4pk4fq8b5y-serf-1.3.9.drv /tmp/guix-tests/store/66d050g2wvpnsc493993jdcr0aax2mvy-apr-1.7.0.drv /tmp/guix-tests/store/n4iifygzr0z00q0yanfn2ilr49dvdwxi-apr-1.7.0.tar.xz.drv /tmp/guix-tests/store/mvmxxxv9329799j8k90mspfb3bs9fcjg-apr-1.7.0.tar.bz2.drv /tmp/guix-tests/store/d54vkrhnid9ih38kj5ylcx9xdpzbzbh1-serf-1.3.9.tar.xz.drv /tmp/guix-tests/store/wqp9kx7a7zhkic9dyr8dd9ydn2h9p7sm-serf-1.3.9.tar.bz2.drv /tmp/guix-tests/store/j1x5mizgcj8d336yjyprmfj581jymyr6-module-import-compiled.drv /tmp/guix-tests/store/y1x2iw8b9kpg3i84x05nrg6g3iddg01v-scons-3.0.4.drv /tmp/guix-tests/store/azxdh47x6m9zyrhj44jqw3x7dwqs7dbs-scons-3.0.4-checkout.drv /tmp/guix-tests/store/z3f881dri1cf7vycm2pw02vc628cgjbf-apr-util-1.6.1.drv /tmp/guix-tests/store/ix7s1881lq6rhnwf5999ad8h8lnqggik-apr-util-1.6.1.tar.bz2.drv /tmp/guix-tests/store/9hjylqx90b24zc48i1rs87fn1laxcbaq-lz4-1.9.3.drv /tmp/guix-tests/store/5kyr84znk1llqw0hk0wfgq6pv94c90ys-valgrind-3.17.0.drv /tmp/guix-tests/store/s7njaa84r894m76jfq3gvv4k7iav4j5r-valgrind-3.17.0.tar.xz.drv /tmp/guix-tests/store/nkxjl1qkpnhh6wg6zklyf59qjk6cpx7d-valgrind-3.17.0.tar.bz2.drv /tmp/guix-tests/store/ncjw157s7k071ih8r48gvf5qjkq4skpk-lz4-1.9.3-checkout.drv /tmp/guix-tests/store/g8xy3126li96808909l5ybaxyw6wkisb-subversion-1.14.1.tar.bz2.drv /tmp/guix-tests/store/ws0j4ngxinicvp5fs0sdqmwswq7xbjrh-utf8proc-2.5.0.drv /tmp/guix-tests/store/1jxh04yx9h1a6xg6hnp37m015wfam52d-GraphemeBreakTest.txt.drv /tmp/guix-tests/store/4bnmlj9xn83mws5626hhv24n1zi78f63-utf8proc-2.5.0-checkout.drv /tmp/guix-tests/store/vmlk6mkr23fywyyz3gg19gah64nzbdb5-NormalizationTest.txt.drv /tmp/guix-tests/store/v9nimga3xxn0pf7qdl5xr51yi4z0bwk6-module-import-compiled.drv /tmp/guix-tests/store/1xw6j6c6w8dpalm826x3c5qbv9pwdqvr-texlive-metafont-59745.drv /tmp/guix-tests/store/bkri74603h5ivpi2n8z4nbas3ghs7f2d-texlive-metafont-59745-checkout.drv /tmp/guix-tests/store/z276lcx4zcvaf5z3lw3ziig3fmpxdb8b-texlive-bin-20210325.drv /tmp/guix-tests/store/5hschmgyxcc7gnm6p1pz0cpk70fbzb1s-ruby-2.7.4.drv /tmp/guix-tests/store/p0y6mj365xhh7g30m3z9vmxijik1i89s-ruby-2.7.4.tar.xz.drv /tmp/guix-tests/store/xn88a8ymv5ykrnxg3l6c9b5vzkmywiip-ruby-2.7.4.tar.gz.drv /tmp/guix-tests/store/67dbd2w2g0rnvvpxd7yshwb2fhj18cdm-texlive-20210325-source.tar.xz.drv /tmp/guix-tests/store/hagdw0vlzdsjlb9w560y280vacwa8z7m-texlive-20210325-source.tar.xz.drv /tmp/guix-tests/store/6nkf0a3rsj2sx3hjfwnahi3blivrwyhw-zziplib-0.13.72.drv /tmp/guix-tests/store/rrx87idvzsb2nsyd7c3pcdr23yb21l5b-zziplib-0.13.72-checkout.drv /tmp/guix-tests/store/fxmpyib9fp1bzlf7rprrp5b7y1shck6w-mpfr-4.1.0.drv /tmp/guix-tests/store/fzgnb4xd6nflqfb6kgnxilrb6fk3n0xz-teckit-2.5.10.drv /tmp/guix-tests/store/i4zdw3m62k1dp3i24sz7f2hrya6hs05v-teckit-2.5.10.tar.gz.drv /tmp/guix-tests/store/nrkwb1sgmxi9xl5mbb6yf91v9m5iyhfq-potrace-1.16.drv /tmp/guix-tests/store/d8dp47hxx385s5h89zrw48yfbyay6rva-potrace-1.16.tar.gz.drv /tmp/guix-tests/store/qwcsql4dlchvyqgnmn2gqzwv9888fccc-fontforge-20201107.drv /tmp/guix-tests/store/0f4v143sf9hrkqmqs5ysjazlzhzi5sh0-libxfixes-6.0.0.drv /tmp/guix-tests/store/knm8n2122bxqf1dibappak4hpcc376q2-libXfixes-6.0.0.tar.bz2.drv /tmp/guix-tests/store/9qpacnnjw43zmf85adjky00rxy4aix33-libuninameslist-20200313.drv /tmp/guix-tests/store/wbxi070izyy2s6iklq7rx6hmgs44n68l-libuninameslist-dist-20200313.tar.gz.drv /tmp/guix-tests/store/ahx9v6vhrfvaq06ac394426hsczhmx30-fontforge-20201107.tar.xz.drv /tmp/guix-tests/store/n32nvwp2h8x6h8lsb3idxq72v13v2pwj-libspiro-20200505.drv /tmp/guix-tests/store/3zbl7jx0dlw41z4z60f439zhdd5169sf-libspiro-dist-20200505.tar.gz.drv /tmp/guix-tests/store/nmp0vl6aalsnqz0pbfzgb6pqgnjvi4zf-libxi-1.7.10.drv /tmp/guix-tests/store/xpwxn95cj41w1cmv4rfh1faccw57aqpi-libXi-1.7.10.tar.bz2.drv /tmp/guix-tests/store/yk929yppgq25xj9gmdks0lmqn6x8x3ph-libungif-4.1.4.drv /tmp/guix-tests/store/cgbwr56isj6jk92na66sxchm832n0x42-libungif-4.1.4.tar.bz2.drv /tmp/guix-tests/store/rsya1dr99cz50xq76f6pbrw1nx0qpzxa-texlive-scripts-59745-checkout.drv /tmp/guix-tests/store/vwk86m4ighfxaajsn4l7682xhy2ymczv-config-0.0.0-1.c8ddc84.drv /tmp/guix-tests/store/s68h2c2i3ryhydxzf2ssblpmmxk5p66z-config-0.0.0-1.c8ddc84-checkout.drv /tmp/guix-tests/store/y361fhjx3r74hwaa76mblzywrfmlx6xg-texlive-20210325-extra.tar.xz.drv /tmp/guix-tests/store/y6kyfa9xlx9rjnzcdmyw8nvngs44bis5-texlive-cm-59745.drv /tmp/guix-tests/store/ghpaza4260x6ly1h37ba5k807gc06784-texlive-cm-59745-checkout.drv /tmp/guix-tests/store/0jh1m2pa24fc4m3vp52vnkzvjhvsa077-texlive-hyphen-estonian-59745.drv /tmp/guix-tests/store/09k9vnd7dkb19hv8dhc34glkzbidg6vs-hyph-utf8-scripts-59745-checkout.drv /tmp/guix-tests/store/0dq37vis4zy2zd99bag4i0iq78mw4a1v-ruby-hydra-0.0-0.5abfa37.drv /tmp/guix-tests/store/1ysmk5fxbscxw9n4diiy3yx5adr8dnq5-ruby-byebug-11.1.3.drv /tmp/guix-tests/store/26b4mg3jqhlihsmgm978d2c8fl49i7i5-module-import-compiled.drv /tmp/guix-tests/store/2w24j95bmgdlwvayzgq1qa7f8xadqrkp-ruby-pry-0.13.1.drv /tmp/guix-tests/store/6wji78gb9pc5xii8sk5q171hmvrb7yx1-ruby-coderay-1.1.2.drv /tmp/guix-tests/store/9kawpyx5ba9fb681q3am22zjhgg1jzg5-coderay-1.1.2.gem.drv /tmp/guix-tests/store/bh98fdf928gv0q4n0ymma8xx7330bi35-ruby-method-source-1.0.0.drv /tmp/guix-tests/store/38f3hpg9nqpf1mpry9sp75gdznss019f-method_source-1.0.0.gem.drv /tmp/guix-tests/store/9dhf047aj852m27x46nmdq4b7zsd87lf-ruby-rspec-expectations-3.8.2.drv /tmp/guix-tests/store/i8wd4c75bz0i2hindg6fn7z7rwa1i5b4-ruby-diff-lcs-1.3.drv /tmp/guix-tests/store/cqxs3af7wl5s0lwn38wvy5v6273p13pm-diff-lcs-1.3.gem.drv /tmp/guix-tests/store/ky6mah67sg1gxqla03h0206z404sa0mi-rspec-expectations-3.8.2.gem.drv /tmp/guix-tests/store/rda40n9ii53nqi64c3f81vgij23d0g6l-ruby-rspec-support-3.8.0.drv /tmp/guix-tests/store/21y62wg9lhlbjdww03p446xsvnfcams7-rspec-support-3.8.0.gem.drv /tmp/guix-tests/store/bg2j2mqwggbmba2l6rs7mvcmigj3vp14-ruby-rspec-3.8.0.drv /tmp/guix-tests/store/4y4rkfii0f69xz4dr8xblfassd1z52z3-rspec-3.8.0.gem.drv /tmp/guix-tests/store/pabv5svh0fi3qakfkm193gxc60dbp9ny-ruby-rspec-core-3.8.0.drv /tmp/guix-tests/store/8l88vbzk9l56vxqllbhf0jdvd7qzsirl-rspec-core-3.8.0.gem.drv /tmp/guix-tests/store/qcvzzkfnkyzp5z95jhyyzc2ip0ia1lxn-ruby-rspec-mocks-3.8.0.drv /tmp/guix-tests/store/6d8qa6l899fp00yhhny22skia4j07lnh-rspec-mocks-3.8.0.gem.drv /tmp/guix-tests/store/wvq32r4jcin03byw74znklr0z8qvkyw3-pry-0.13.1.gem.drv /tmp/guix-tests/store/2xh580sg6g239mjzyda0d2m4x2s71jc7-ruby-netrc-0.11.0.drv /tmp/guix-tests/store/4gvgqk1mv282ds4crvlv95jbq32smk1q-ruby-minitest-5.14.4.drv /tmp/guix-tests/store/hycy6gnkzsw8my91n1zg27jpdx6mgi9j-minitest-5.14.4.gem.drv /tmp/guix-tests/store/w2p8dj5pvjb0g4sfniwdhiv265kkby4m-ruby-hoe-3.21.0.drv /tmp/guix-tests/store/hgrxcazfldahc04f9n6sc5j6pr0nlw54-hoe-3.21.0.gem.drv /tmp/guix-tests/store/97qwpdhz5x8n3ia17599q8sy4fn21avy-netrc-0.11.0.gem.drv /tmp/guix-tests/store/6h0pvl76javnv12cw88bdz21hppya526-ruby-rubocop-1.10.0.drv /tmp/guix-tests/store/07g51pfc3kqji3qsizy1f8ivfb64h33g-ruby-bump-0.7.0.drv /tmp/guix-tests/store/8kyyav29z5rx8r0lg39ndc91gd4dpxsc-bump-0.7.0.gem.drv /tmp/guix-tests/store/30z0lizhqz6r3xqhy43i5gwbp0vhvd2n-ruby-docile-1.1.5.drv /tmp/guix-tests/store/9x16xh52jrksjdgx4qp7ii1pl2l5419m-docile-1.1.5.gem.drv /tmp/guix-tests/store/5g012b5cip9yhpcj07b946q4jh43c6g6-ruby-stackprof-0.2.17.drv /tmp/guix-tests/store/1q06r0pq2nvqdpcqdqqf8s5k0d7h5bip-ruby-mocha-1.13.0.drv /tmp/guix-tests/store/02lnrd9jma1nxl1h3fczcad93h5j23k3-ruby-instantiator-0.0.7.drv /tmp/guix-tests/store/0byv9wgigil4c80hsik820afxhpgb0ax-ruby-power-assert-1.1.5.drv /tmp/guix-tests/store/514snacixlp7g53y6ialz6z5xk0ija68-power_assert-1.1.5.gem.drv /tmp/guix-tests/store/vqjmr8l2ahknl228l319p20glq46syvs-bundler-2.1.4.drv /tmp/guix-tests/store/hvnmwp7n0dvj0dahfn42ay0g2nbwz9bl-bundler-2.1.4.gem.drv /tmp/guix-tests/store/5ac160n1w9zmk0iyn3vrhqprk3j5v03n-ruby-blankslate-3.1.3.drv /tmp/guix-tests/store/n5wa6k3fjxlqkwssyb3vcvgchg5klc6v-blankslate-3.1.3.gem.drv /tmp/guix-tests/store/s989ma6vcqcgk2pciahirrnfk9p79yy2-ruby-test-unit-3.4.4.drv /tmp/guix-tests/store/cy85lpk0k0wzhh5mn8rp4136sxdgy5ps-ruby-packnga-1.0.4.drv /tmp/guix-tests/store/kjq3j8ni1c3dk7alnj339ghqvp6mjlj8-ruby-yard-0.9.25.drv /tmp/guix-tests/store/bfcwd393pdrkkr91gjjh90nsdplpdrvv-ruby-yard-0.9.25-checkout.drv /tmp/guix-tests/store/nmjvrv4k6jxjkv98km2b8xyhigw8c87w-ruby-locale-2.1.2.drv /tmp/guix-tests/store/5a76rxgzgpiazkk8wvwalawmjlpwifbn-locale-2.1.2.gem.drv /tmp/guix-tests/store/r9vmnbr2zvy7zjqhradqnqdqcg39yd6i-packnga-1.0.4.gem.drv /tmp/guix-tests/store/v2r729q0axbk3m1nc2fq4zhr8m5cnp9i-ruby-text-1.3.1.drv /tmp/guix-tests/store/fh16xjhr77xh6hlq047kq7wmv0jb3wcz-text-1.3.1.gem.drv /tmp/guix-tests/store/yl064v4hw0kbk4al6pw7cphksqhs757a-ruby-gettext-3.1.7.drv /tmp/guix-tests/store/v0asfhwjggf98vfnvq24rydsa53mdwzl-gettext-3.1.7.gem.drv /tmp/guix-tests/store/hslnwnxxhplv5s4yybrw6a4s21la9m33-test-unit-3.4.4.gem.drv /tmp/guix-tests/store/zjb137yzvp0nmifbkfhlbj756chpr6wj-instantiator-0.0.7.gem.drv /tmp/guix-tests/store/053mv7y6n1a1hypwi1nmj4vn06gczpxj-mocha-1.13.0.gem.drv /tmp/guix-tests/store/4sk5201rg0qmp1lmljl0m222kfbqxrz7-ruby-introspection-0.0.4.drv /tmp/guix-tests/store/gimy8279zh3nw7fngwln4ik0cdk2df38-ruby-metaclass-0.0.4.drv /tmp/guix-tests/store/86w5iy89v8ccpizv14f0hck23iadqc8c-metaclass-0.0.4.gem.drv /tmp/guix-tests/store/pxxkh2xhd2q59cvq69wg77ms6c27i4b9-introspection-0.0.4.gem.drv /tmp/guix-tests/store/8dhn1zvvl8167n919bl9p92ny2nx6xw7-ruby-rake-compiler-1.1.1.drv /tmp/guix-tests/store/9pjgzxz6b3271yh5igzn1053vl1b589w-rake-compiler-1.1.1.gem.drv /tmp/guix-tests/store/js7fdhfm8z411czqx0hhmbk1i5i14333-stackprof-0.2.17.gem.drv /tmp/guix-tests/store/62dyfwxlz939skk3hdzzjr7bsax59wz4-ruby-rubocop-rspec-2.2.0.drv /tmp/guix-tests/store/pmjna5gqv7rcigy49igjshs0n3wfvn4c-ruby-rubocop-rspec-2.2.0-checkout.drv /tmp/guix-tests/store/7652z4wd9n4akn79w0cf4fb81k4l35jc-ruby-rubocop-1.10.0-checkout.drv /tmp/guix-tests/store/7fvyf1w7rv98x7ld33zavy3ywqxc2m7p-ruby-hashdiff-1.0.1.drv /tmp/guix-tests/store/0inr1a5kv6jqqqsxpwn874bs4dk49a0j-ruby-rspec-expectations-2.14.5.drv /tmp/guix-tests/store/0wpfzi41r15awjl1i972k6bhppwv2vil-rspec-expectations-2.14.5.gem.drv /tmp/guix-tests/store/bhfxf6n0qmykxnki79sk3mdninllygjd-ruby-rspec-mocks-2.14.6.drv /tmp/guix-tests/store/9874b00jaans6n95czizpm8p4myg2ppi-rspec-mocks-2.14.6.gem.drv /tmp/guix-tests/store/fh3cq8bqvbknplz5l932y45wxmh8v8qs-hashdiff-1.0.1.gem.drv /tmp/guix-tests/store/n90i8gy8xfmnm1csmli37zwz25d8bjkw-ruby-rspec-core-2.14.8.drv /tmp/guix-tests/store/f73prc25qp5s40plz26xhyyw5qxhqw1j-rspec-core-2.14.8.gem.drv /tmp/guix-tests/store/sw722sandc4q3z2q6rsr3k0jbn24zbsv-ruby-rspec-2.14.1.drv /tmp/guix-tests/store/blmgy1wml1jiywqlzm5q7g0vsm93flvq-rspec-2.14.1.gem.drv /tmp/guix-tests/store/8znqjirknqfzy0kw8qcirfy1dlcnyx6k-ruby-rubocop-performance-1.9.2.drv /tmp/guix-tests/store/qz1i3v4pfif9ki9zb56bm2ahgdpcdgay-ruby-rubocop-performance-1.9.2-checkout.drv /tmp/guix-tests/store/ak191g08768f6vkffd4862vrmwx4c70i-ruby-progressbar-1.10.1.drv /tmp/guix-tests/store/sga6ry8js1gg2jyy2ip7ah5hwyiiqgw2-ruby-progressbar-1.10.1.gem.drv /tmp/guix-tests/store/barpbg063hfrgdsi16s4dkq04i9kp6xq-ruby-parser-3.0.0.0.drv /tmp/guix-tests/store/1y38xv3z2yls22as9yh8s2lx20n4sa0i-ruby-cliver-0.3.2.drv /tmp/guix-tests/store/rj6qrzd987wm8298fzhw8fmjrpkby1qz-cliver-0.3.2.gem.drv /tmp/guix-tests/store/8mglqpwk0s8pq8hcg74wkcdp4s54jy2r-parser-3.0.0.0.gem.drv /tmp/guix-tests/store/8qm7n1ync8y0cf2fn5fq12l7xmfk8j0b-ragel-6.10.drv /tmp/guix-tests/store/i0vm7zlh5nsd7f4drlqqdhdlwqh27pw3-ragel-6.10.tar.gz.drv /tmp/guix-tests/store/gixqhdsqvp70qrzp7mrkn4hq27p4sly9-ruby-json-2.1.0.drv /tmp/guix-tests/store/knv0k9lsz5ajbfj23mgdhyyhr0hqbpgj-json-2.1.0.gem.drv /tmp/guix-tests/store/lrm0k0zfba7ilb9acpz9m4paka69nq8m-ruby-simplecov-0.17.1.drv /tmp/guix-tests/store/j6fdkjd9qzhmiwjnp7wagfb4sg2z3gnk-simplecov-0.17.1.gem.drv /tmp/guix-tests/store/pr9kr5aa0lmxpbbpfpcqvxr1s8x9ga95-ruby-simplecov-html-0.10.2.drv /tmp/guix-tests/store/jk7z42xmya0ghbpz5qql3z8ifhh84lbh-simplecov-html-0.10.2.gem.drv /tmp/guix-tests/store/p89153h77a88k9l2d2cqrxk19h7fargs-ruby-ast-2.4.2.drv /tmp/guix-tests/store/254blxdxglj3gj18bhajbssmc5axjg2x-ruby-ast-2.4.2-checkout.drv /tmp/guix-tests/store/2c857zqjak3c0xiamk2bfq6kz2iwf9x9-ruby-domain-name-0.5.20190701.drv /tmp/guix-tests/store/03khk7fhkswi7jv5yvw4pyk9hdzaqm48-ruby-tzinfo-data-1.2021.1.drv /tmp/guix-tests/store/1cmwqrzk230ym91g1znpyr1jpdfn1sib-ruby-tzinfo-data-1.2021.1-checkout.drv /tmp/guix-tests/store/fg47liyppziz4hgfl7lzbxsmj4c4n4kg-ruby-tzinfo-2.0.4.drv /tmp/guix-tests/store/7vqvi6pm10azixnafka3qz3kf1h6fmla-ruby-tzinfo-2.0.4-checkout.drv /tmp/guix-tests/store/p9rl8vc22dx7pddkhkagiddyx766953n-ruby-concurrent-1.1.5.drv /tmp/guix-tests/store/8p1pck5f7hizcdjg1j7rznyy3p3y205k-ruby-concurrent-1.1.5-checkout.drv /tmp/guix-tests/store/jhx40532r42q1w4l72hd5ap92nzjfs2m-tzdata-for-ruby-tzdata-info.drv /tmp/guix-tests/store/5xyv88lb1gsh9shy786ngc8qa531z1xk-tzdata2021a.tar.gz.asc.drv /tmp/guix-tests/store/qsa5s6m02i62vck7q62q3r6s0zw0r99j-tzcode2021a.tar.gz.asc.drv /tmp/guix-tests/store/sins7ly7xirxvxc08yw0xwfl4fr1pzvi-tzdata2021a.tar.gz.drv /tmp/guix-tests/store/zclshcmjlqq7zcgjvqcq1qcyb65rgx9j-tzcode2021a.tar.gz.drv /tmp/guix-tests/store/061r263pipd3fpyfqrhrjbjxzmsll5rh-ruby-i18n-1.7.0.drv /tmp/guix-tests/store/y4myj60x799pk1dxyrhwa9042v4jzmjw-i18n-1.7.0.gem.drv /tmp/guix-tests/store/46wjdzvp2ga3ip4dwy2iijjpsnlxlchf-domain_name-0.5.20190701.gem.drv /tmp/guix-tests/store/4jqlnyq78lsmqb1g6rpzs3hawxcf052s-ruby-shoulda-3.5.0.drv /tmp/guix-tests/store/6hylimcqh76xq1sjrkzg5mks7cr2q5gd-ruby-shoulda-matchers-2.8.0.drv /tmp/guix-tests/store/hm672xwh1bp1vrc80fqqcn1zjlm5v2pz-ruby-activesupport-6.1.3.drv /tmp/guix-tests/store/msx4ky62gxj0865hml70wqd1k0rpclgz-activesupport-6.1.3.gem.drv /tmp/guix-tests/store/s11mwmn1ngq35lmm4hyw1vz5ah2244z1-ruby-zeitwerk-2.4.2.drv /tmp/guix-tests/store/2b105vgchir450373fa56f30njwx7gg3-ruby-builder-3.2.4.drv /tmp/guix-tests/store/87rlrdp0xcj1dwvrklqyh9r3g95j15x3-builder-3.2.4.gem.drv /tmp/guix-tests/store/801qik2lwza1wkqqscndi3p5r5bxi2lz-ruby-zeitwerk-2.4.2-checkout.drv /tmp/guix-tests/store/9m1plyv8jmdjra00f4768n6xk6bmxkwa-ruby-ansi-1.5.0.drv /tmp/guix-tests/store/p6fp3x8a3q826f16cygg60q2n993xkhd-ruby-ansi-1.5.0-checkout.drv /tmp/guix-tests/store/g2xabwjldyajhaacvkmscxbhnmzy2hmm-ruby-minitest-focus-1.1.2.drv /tmp/guix-tests/store/c3f0yikhlqw96k658vwd11n01bmrwi9r-minitest-focus-1.1.2.gem.drv /tmp/guix-tests/store/zpzlzr6diac9xkvdp1j156g5lrq21xbw-ruby-minitest-reporters-1.3.6.drv /tmp/guix-tests/store/7bq2dfcbnp611qqkv8slc21shpk95iip-minitest-reporters-1.3.6.gem.drv /tmp/guix-tests/store/82l5370rprgal98d7jijnzzcyybjgr9k-ruby-maruku-0.7.3.drv /tmp/guix-tests/store/2dd8nc8lmzkdibr1ypza2s83212rkarf-ruby-nokogiri-1.10.9.drv /tmp/guix-tests/store/b2fxg2i2rlm2j5mzwal2b6548fvi38xd-ruby-pkg-config-1.2.5.drv /tmp/guix-tests/store/rr0nhvrwinx30n221mkkxwa451vx6fh5-pkg-config-1.2.5.gem.drv /tmp/guix-tests/store/cm41f11gn2gz1vp7izrabz0cmhnrx9vy-nokogiri-1.10.9.gem.drv /tmp/guix-tests/store/j8ciqchr1jqb0cyaykl2mqmcvngr3kfg-ruby-mini-portile-2.4.0.drv /tmp/guix-tests/store/clb0dzyvmlygrm71agnvxf6v8lzy058i-mini_portile2-2.4.0.gem.drv /tmp/guix-tests/store/991ycmi0xqrrfi5s8wbcgh2hwk3f078y-maruku-0.7.3.gem.drv /tmp/guix-tests/store/kz7krrqglhj73145gyab4vqkn4qxbmn4-ruby-tdiff-0.3.3-1.b662a604.drv /tmp/guix-tests/store/4ffbrk1ji8c806gjhvbf379qp3schp5d-ruby-rubygems-tasks-0.2.5.drv /tmp/guix-tests/store/xzzpfww7080f2w2yp1ddh9k572smy7gc-rubygems-tasks-0.2.5.gem.drv /tmp/guix-tests/store/l6wryykpzzg7b6imkkkwjqqmsc3ivdfg-ruby-tdiff-0.3.3-1.b662a604-checkout.drv /tmp/guix-tests/store/z2960r5kclhjn62fid4pzaiha44h27xh-ruby-nokogiri-diff-0.2.0-1.a38491e4.drv /tmp/guix-tests/store/ka06a79pbln5bccambpang1cw36b1wwm-ruby-nokogiri-diff-0.2.0-1.a38491e4-checkout.drv /tmp/guix-tests/store/vdklsvakz5gkc7iyg0pvqmhj6rqbsx7r-shoulda-matchers-2.8.0.gem.drv /tmp/guix-tests/store/fzh6fnfpb74c909c399kwvlqmv2hvrdf-ruby-shoulda-context-1.2.2.drv /tmp/guix-tests/store/hcs0gx3wwkdd92z6k7vim37k38zrz4wb-shoulda-context-1.2.2.gem.drv /tmp/guix-tests/store/y96fyaybzd4kyi3hpwlsazhs1j4wa1az-shoulda-3.5.0.gem.drv /tmp/guix-tests/store/ar402dq1346frgprz2lbrjrncrjs7lkj-ruby-unf-0.1.4.drv /tmp/guix-tests/store/81n8d2b7ssvar6dba8axb4ls4ajg8gn6-unf-0.1.4.gem.drv /tmp/guix-tests/store/jvqmk9skm6s9gmnjkxri238jikjya6s6-ruby-unf-ext-0.0.7.6.drv /tmp/guix-tests/store/63i32snyls5yqx0459nsvzi57s09g8b6-unf_ext-0.0.7.6.gem.drv /tmp/guix-tests/store/404hn9glql7z6a8msp4m86rkxxgghq0j-ruby-rest-client-2.0.2.drv /tmp/guix-tests/store/5q0sn0rc3f3bdf2sml63sn00yh4zgdx2-ruby-http-cookie-1.0.3.drv /tmp/guix-tests/store/8id5vl445p9km07lwj1pdzfqs6z20gs6-ruby-sqlite3-1.4.2.drv /tmp/guix-tests/store/8lnx7zdvkvrvgxc8rw9qpzvc76bwd5iz-ruby-mini-portile-0.6.2.drv /tmp/guix-tests/store/80i0sjgz0k58iwvm4lqm9a1x98mbaiqq-mini_portile-0.6.2.gem.drv /tmp/guix-tests/store/jyw2733d5vqrsb5gkimnr6cbjam27wck-sqlite3-1.4.2.gem.drv /tmp/guix-tests/store/fhjzbzy53zw09sf36vkdr5s3av6gv4fb-http-cookie-1.0.3.gem.drv /tmp/guix-tests/store/i9dcbld1h77c6dlz705gzd93pa4vanaf-ruby-addressable-2.7.0.drv /tmp/guix-tests/store/9z637vk5q097lg1ifrbfwmcjgz35k796-ruby-rspec-its-1.3.0.drv /tmp/guix-tests/store/xckn24dh0hfhwmx5hiqd2km4861lna28-ruby-rspec-its-1.3.0-checkout.drv /tmp/guix-tests/store/h9p8h4amkx2qdaib9k8aax8bsgpqyynp-ruby-idn-ruby-0.1.0.drv /tmp/guix-tests/store/1spqrxdrwp5g8ni7hcrjwh5m0dh10jz4-idn-ruby-0.1.0.gem.drv /tmp/guix-tests/store/k4l32ygzzkvaqdapxmapys4939ckms09-ruby-public-suffix-4.0.5.drv /tmp/guix-tests/store/y18v285grbrrxvir9wshqb1bxa53kwqm-public_suffix-4.0.5.gem.drv /tmp/guix-tests/store/mdciv99f1aqf5ar913h0hlca9q9l92l7-addressable-2.7.0.gem.drv /tmp/guix-tests/store/vnfbxp6di0lfr519gcbs8569n691llg8-ruby-rack-2.2.3.drv /tmp/guix-tests/store/19xmw0a5yr76layfk6xpkk2n96zfak83-ruby-minitest-global-expectations-1.0.1.drv /tmp/guix-tests/store/5csdmfy54q7y30gglv1whj3pwfvsv92m-minitest-global_expectations-1.0.1.gem.drv /tmp/guix-tests/store/zg9cjlyzwn4hpbyrhh8h6bijvhl63pr9-ruby-rack-2.2.3-checkout.drv /tmp/guix-tests/store/v9wfj9rl4qwqh0lck3hpcl2r7qg0zyz5-ruby-rack-2.2.3-checkout.drv /tmp/guix-tests/store/xnqsbi6pygn3i23jbv5vw95gc6ngjjra-ruby-sporkmonger-rack-mount-0.8.3-1.076aa2c.drv /tmp/guix-tests/store/yyxgsxqlq2rg8isf6k3aafv3a8k37j8z-ruby-sporkmonger-rack-mount-0.8.3-1.076aa2c-checkout.drv /tmp/guix-tests/store/ihdqbx5l0jvbsssvplfhs703rb0cji5r-ruby-mime-types-3.1.drv /tmp/guix-tests/store/1qw0g42dpp7sx7nrl5ra44738cikjq91-ruby-minitest-rg-5.2.0.drv /tmp/guix-tests/store/f20xmn9gy6bw725x59p9hqx94pij26m3-minitest-rg-5.2.0.gem.drv /tmp/guix-tests/store/35ziwidzi8qr14i5gz02gxfy3kdhn4hg-ruby-minitest-hooks-1.5.0.drv /tmp/guix-tests/store/77p7vi2kcc3ybnixayir2bg7ccika5y4-minitest-hooks-1.5.0.gem.drv /tmp/guix-tests/store/7spwq687ymknss2xb7dz75akxlk6zndj-ruby-sequel-5.47.0.drv /tmp/guix-tests/store/igq2lasd8yrxrp8b432hcka6b6an0gk1-sequel-5.47.0.gem.drv /tmp/guix-tests/store/5ydd9fjxgzqfak9dhsj7754d4v7lq5ic-ruby-fivemat-1.3.7.drv /tmp/guix-tests/store/5xcrb9gs1zn7pzg8b7n0xdaq2sicj9cg-fivemat-1.3.7.gem.drv /tmp/guix-tests/store/6qaw6lgpgvbqvhjnhhgkfqckzf4xflzz-mime-types-3.1.gem.drv /tmp/guix-tests/store/h1hd25r8csxf8zm22l79m0j6kd0lv8s5-ruby-minitest-bonus-assertions-3.0.drv /tmp/guix-tests/store/70q9a54ym66aqc70amfa7d4aysl2xac0-minitest-bonus-assertions-3.0.gem.drv /tmp/guix-tests/store/jy473bciz8rfnby3vgyrbxik9cyjm0hm-ruby-minitest-moar-0.0.4.drv /tmp/guix-tests/store/hw126lv8jaf0skr9d620nbf0z99nkrh7-minitest-moar-0.0.4.gem.drv /tmp/guix-tests/store/x9q98982k44wiyc46z05vrqd4p9w7v1s-ruby-minitest-pretty-diff-0.1-1.11f32e93.drv /tmp/guix-tests/store/8hlvcj67b1cyn5bq8ihvnbxf71ycnwib-ruby-turn-0.9.7.drv /tmp/guix-tests/store/040kcqdsqdwi0hp7i9z21byfaw0spif1-turn-0.9.7.gem.drv /tmp/guix-tests/store/hghy8mazabw7ss323qwz3r4l4jj5v1np-ruby-minitest-4.7.5.drv /tmp/guix-tests/store/kdanpxd8g2lwnnvjp8az14nhd8p1pvz4-minitest-4.7.5.gem.drv /tmp/guix-tests/store/g3l964jj5qnwhhwwm6ml3gh31z6lga0l-ruby-minitest-pretty-diff-0.1-1.11f32e93-checkout.drv /tmp/guix-tests/store/k0awd8kd1fznwc5nb029khym08k5r08y-ruby-mime-types-data-3.2016.0521.drv /tmp/guix-tests/store/xa8c9dagwcrq8hgs7rjdj60000xlpk9p-mime-types-data-3.2016.0521.gem.drv /tmp/guix-tests/store/q0n10knrnpfpbshcyz2knxs7b5ffqr9y-ruby-webmock-2.3.2.drv /tmp/guix-tests/store/cwhj57zhhw7pvc1yj13qi84ssxnbkqlz-webmock-2.3.2.gem.drv /tmp/guix-tests/store/xmnlr7pd83mgi08wirk1swkdnzb1611b-ruby-crack-0.4.5.drv /tmp/guix-tests/store/g8kbyhpxspqy5s5fna02y2r4kapv1rjg-crack-0.4.5.gem.drv /tmp/guix-tests/store/zwfv00krspzqj5pixd70js5gx5ll5p5i-rest-client-2.0.2.gem.drv /tmp/guix-tests/store/mgnh4i8gy4h2g0sgbgki2fdd0fvilhyw-ruby-kramdown-2.3.1.drv /tmp/guix-tests/store/31vdsdslls46g68rnghy193m0f754wvb-ruby-afm-0.2.2.drv /tmp/guix-tests/store/fzfc19d7dw5hn7xr5faqd23xvxs7i3cs-afm-0.2.2.gem.drv /tmp/guix-tests/store/43jas2hyrk52cxa6agzcyvcavzs1rm0s-ruby-hashery-2.1.2.drv /tmp/guix-tests/store/4if1fkx9n6n787rwmkna42h82rd0a2jm-ruby-qed-2.9.2.drv /tmp/guix-tests/store/mdf6snihkfzn07hij3gzdl75byyq7g26-qed-2.9.2.gem.drv /tmp/guix-tests/store/xpjys77v688za59rq74365gcz9b6165x-ruby-brass-1.2.1.drv /tmp/guix-tests/store/p57z1zfsn8375vvnbv6wac6pk0aqqll7-brass-1.2.1.gem.drv /tmp/guix-tests/store/666sfqprgla548313har51jgxb1nkl41-ruby-rubytest-cli-0.2.0.drv /tmp/guix-tests/store/k6cslw21a7ky2csry89rrxqgpafqjc96-rubytest-cli-0.2.0.gem.drv /tmp/guix-tests/store/v006bla1gycdazbardcwf90a199ga2a1-ruby-rubytest-0.8.1.drv /tmp/guix-tests/store/ydai14fnf0rvraa1cgvbljk0jnpsl34j-rubytest-0.8.1.gem.drv /tmp/guix-tests/store/b7p0fnzmzi5g8hhvv6xr1rqah1rqxqwf-ruby-ae-1.8.2.drv /tmp/guix-tests/store/i7whphpla9n9vr023921lxydqp1w41q7-ruby-ae-1.8.2-checkout.drv /tmp/guix-tests/store/g9s2zwlk92qqbcbhfa8qz9dwv6lcq0q4-hashery-2.1.2.gem.drv /tmp/guix-tests/store/ym2p67izjv1wndzr1al1549hs1z59sd9-ruby-lemon-0.9.1.drv /tmp/guix-tests/store/gi9y18cf0s5s7rkhmcimz9h1zbhxbzpj-lemon-0.9.1.gem.drv /tmp/guix-tests/store/6jf9piyjl2g69hzgwwx98rqhrb3skzby-ruby-ttfunk-1.6.2.1.drv /tmp/guix-tests/store/9l0dn2bav9y4sdfd9dlfgc244vdf080j-ruby-ttfunk-1.6.2.1-checkout.drv /tmp/guix-tests/store/70kzl6ck5djxzxh08y7l5bhz4zqh7j26-ruby-rc4-0.1.5.drv /tmp/guix-tests/store/h44lkkx6wijqns6i24hqi4w7dm4r66aq-ruby-rc4-0.1.5.gem.drv /tmp/guix-tests/store/al5fkg0j9cb096jpjycbhxkyf7lg26pv-ruby-pdf-inspector-1.3.0-1.00ee4c9.drv /tmp/guix-tests/store/9f5x4ch0x6xh7l1mgfq36ydfgwxbvbg2-ruby-pdf-inspector-1.3.0-1.00ee4c9-checkout.drv /tmp/guix-tests/store/dc8fb3shhj7vzsd2yw4sqanfg0p02pr0-ruby-pdf-reader-2.4.0.drv /tmp/guix-tests/store/130v7g2jnr7dayq3j4j4xxdynz498mkr-ruby-cane-3.0.0.drv /tmp/guix-tests/store/bcd0sfpbas9zx2z48pfaqjn5ql68mfzp-cane-3.0.0.gem.drv /tmp/guix-tests/store/qr7h6nghdpjy9ksxaki61kvw81365sij-ruby-parallel-1.21.0.drv /tmp/guix-tests/store/0qcc4a1d3vnyyiiskwfv1p37p3y1hnrf-ruby-activemodel-6.1.3.drv /tmp/guix-tests/store/6jgjn7ajkd7viapj749g2vzwf7pd833k-activemodel-6.1.3.gem.drv /tmp/guix-tests/store/117r31vqiirn2rv73m3pwj6q0q4m8z7q-ruby-rspec-rerun-1.1.0.drv /tmp/guix-tests/store/0npbj0hk2y3w8mzvr549f1a7wc4xypk9-rspec-rerun-1.1.0.gem.drv /tmp/guix-tests/store/6fsgm0g0g8jk9cccj2blfx42fy9gh55h-ruby-mysql2-0.5.2.drv /tmp/guix-tests/store/9zckpns68w91p514g9blbywrqwfaz9yj-mariadb-10.5.12.drv /tmp/guix-tests/store/151c3209b5zd756l6spf58mcs35y8fvy-mariadb-10.5.12.tar.xz.drv /tmp/guix-tests/store/9yx5x2jcrbqm3cqvzldmgmmq0idm77pl-mariadb-10.5.12.tar.gz.drv /tmp/guix-tests/store/f8q4d9jkq06xqf4l6fwa5fr8yzyx89d9-libaio-0.3.112.drv /tmp/guix-tests/store/yag9j7ycgkbzdgid4wxknyai0m11bag3-libaio-0.3.112.tar.gz.drv /tmp/guix-tests/store/f51ikkqcdjdax4s85kc97x9i961g40sz-ruby-mysql2-0.5.2-checkout.drv /tmp/guix-tests/store/l8hdza408kkagfhh18kanff5qqd0zsm2-ruby-parallel-1.21.0-checkout.drv /tmp/guix-tests/store/pz7ypifip13hxgyrglnj8w052q52znaq-ruby-arel-9.0.0.drv /tmp/guix-tests/store/cn34zl7v5jvbmi6c8r2j299rvsf4gy99-arel-9.0.0.gem.drv /tmp/guix-tests/store/v70y4lhwznp95iya704909m3jc8ycf3c-lsof-4.94.0.drv /tmp/guix-tests/store/9a1r4a89q64mkad3sb4jcxydvmxaqlxa-lsof-4.94.0-checkout.drv /tmp/guix-tests/store/d6khsi3qjydiqphrpy9xm5kaiafh578r-lsof-4.94.0-checkout.drv /tmp/guix-tests/store/z2v6b1wn5v968wvcwh35gv17dagafklr-ruby-activerecord-6.1.3.drv /tmp/guix-tests/store/3zz2gvjnjk3725i04z64mi5fdhw2jy28-activerecord-6.1.3.gem.drv /tmp/guix-tests/store/drlw0knmnxkmlj32xf4c7pxxzs5yc6ix-ruby-pdf-reader-2.4.0-checkout.drv /tmp/guix-tests/store/gkixgzzsvq99xb5i58kxcbxzp5dabd2v-ruby-morecane-0.2.0.drv /tmp/guix-tests/store/x98k79pjyrwi78xbhh17fxpqsq8qk2lg-morecane-0.2.0.gem.drv /tmp/guix-tests/store/l57k39caqxl4ig8xln18z1q67h2f5pzv-ruby-ascii85-1.0.3.drv /tmp/guix-tests/store/whdhzci53rl9bpv4awdmqncp5l2n1hgk-Ascii85-1.0.3.gem.drv /tmp/guix-tests/store/hwlci2qadlqvym3mp50ya0jw0hy4irrv-kramdown-2.3.1.gem.drv /tmp/guix-tests/store/miqj0j6mpqxrrdggk1qh2q2ldbqvxfq6-ruby-pdf-core-0.8.1.drv /tmp/guix-tests/store/i1qrqgd97mwlm539k8yfqc2b319jk7k1-pdf-core-0.8.1.gem.drv /tmp/guix-tests/store/q8n4m7va674ncm7vrvmqrijpfhxn0cyd-ruby-prawn-2.2.2-1.d980247.drv /tmp/guix-tests/store/gn2cdgm98p2h75j9kby1v99dpsrrnnv1-ruby-prawn-2.2.2-1.d980247-checkout.drv /tmp/guix-tests/store/nybn91vlww1v687r9mmylrzwnm1bk8fr-ruby-prawn-manual-builder-0.3.1.drv /tmp/guix-tests/store/vdl6dp97y8fqj3c5whm3ygi1qr8nmx8l-prawn-manual_builder-0.3.1.gem.drv /tmp/guix-tests/store/s7l2pq5y7lgg74686l2yzqd6nw30n3pk-ruby-prawn-table-0.2.2.drv /tmp/guix-tests/store/lf0xdsqas2yz3wm2765p9lxz4m3d4w25-prawn-table-0.2.2.gem.drv /tmp/guix-tests/store/p8nfnc4np9xbavy053b179b8cyqmfbmf-ruby-bacon-1.2.0.drv /tmp/guix-tests/store/83ms1n1ps34g6dwpc115x4w6gc4qmdd7-bacon-1.2.0.gem.drv /tmp/guix-tests/store/vdgw321mxmhqj08fz0c6wyv3ymzy3lrx-ruby-bacon-colored-output-1.1.1.drv /tmp/guix-tests/store/bnkhh7840r791v396c4lybq3yh0rmihr-bacon-colored_output-1.1.1.gem.drv /tmp/guix-tests/store/vklv44jl4mlg1k7pbgyxdrl6z6gry8z2-ruby-racc-1.5.2.drv /tmp/guix-tests/store/d75yalanpx3ahfdm0rcc9c8grcdvc4vg-racc-1.5.2.gem.drv /tmp/guix-tests/store/zinh68yk28gjlrnas61pzaahdzk5qmmq-ruby-json-pure-2.3.1.drv /tmp/guix-tests/store/c4dn8iy88pnm8339aznlq1nbm46pxqqj-json_pure-2.3.1.gem.drv /tmp/guix-tests/store/bx64lyx0a70y8nrrmprmzvkw9rlp6ifp-ruby-webmock-3.11.2.drv /tmp/guix-tests/store/45a4irglhg55ia3kmbq0z07kxcpan35k-webmock-3.11.2.gem.drv /tmp/guix-tests/store/c4drwfbpqzpvhyq0w44j3hf21isx174c-ruby-rainbow-3.0.0.drv /tmp/guix-tests/store/7iq31r3v62md57sfvpxnzdjvx84bwygq-rainbow-3.0.0.gem.drv /tmp/guix-tests/store/cb0hmmlcrp7dr0kc999npxm692xdxqa9-ruby-unicode-display-width-1.6.0.drv /tmp/guix-tests/store/lfjjy555s4i5z6a52myy8q3fr3qdxmk1-unicode-display_width-1.6.0.gem.drv /tmp/guix-tests/store/gldidddmj314hkdxbsxxj59zzqrmafli-ruby-rubocop-ast-1.4.1.drv /tmp/guix-tests/store/hrffa6gb1jcqpw8zg8hw6d8qay54i995-ruby-rake-13.0.1.drv /tmp/guix-tests/store/kv5z6cr4zyk0qiwx4kvyvxmbn3j340i3-rake-13.0.1.gem.drv /tmp/guix-tests/store/ivkwnrwdilyhl6xb5nxdhlc6v9rj6n7j-ruby-rubocop-ast-1.4.1-checkout.drv /tmp/guix-tests/store/w5sl68kz8b5ms4gjbhb0vx5sw7dfqqvj-ruby-oedipus-lex-2.5.2.drv /tmp/guix-tests/store/7rm0044kprrmwliprl9z8j26dv19mr6y-oedipus_lex-2.5.2.gem.drv /tmp/guix-tests/store/h6ylwhrd6z6vznmskxzq11wix2wrq4nx-ruby-rubocop-1.10.0.drv /tmp/guix-tests/store/kf8jdmww66ghf9fmqnvdsa3jq2g22i8k-ruby-regexp-parser-2.0.0.drv /tmp/guix-tests/store/fydm9h2hsixpdhcps0zl9yjzkylvmp4p-ruby-regexp-property-values-1.0.0-1.03007a6.drv /tmp/guix-tests/store/2n3c02ln0iwl8sv9a3vzldpvgyd1agf7-ruby-regexp-property-values-1.0.0-1.03007a6-checkout.drv /tmp/guix-tests/store/67v0kql10pj4cvxrp9q4klaf48j55xw8-ruby-character-set-1.4.0.drv /tmp/guix-tests/store/6gxam9q0wmdbqn4kkqmxdsfjrwsaq4jl-character_set-1.4.0.gem.drv /tmp/guix-tests/store/hmnaw048bffhiwb3dm7a144jxph9g37b-ruby-range-compressor-1.0.0.drv /tmp/guix-tests/store/h913hb1kp56j3z2r6zvknb9g4b57afsj-ruby-range-compressor-1.0.0-checkout.drv /tmp/guix-tests/store/snzvfjsla2y4p4h02rlgk2hzashr42lf-ruby-regexp-parser-2.0.0-checkout.drv /tmp/guix-tests/store/z66grpmkmsdlil5pvqqpkwrjs2x57cx0-ruby-test-queue-0.4.2.drv /tmp/guix-tests/store/rk8mc4jaihp7cwacvpawgw71fq692jha-test-queue-0.4.2.gem.drv /tmp/guix-tests/store/8rz2bs0pqa31ci5mk4y71kynf1586dzr-ruby-octokit-4.18.0.drv /tmp/guix-tests/store/inh5vnpi9774m3zk3kw7mbrbilcqvw6j-ruby-faraday-0.15.4.drv /tmp/guix-tests/store/7qnf9fkzrwp3i2c3ygq1wwll4a6xsmn4-faraday-0.15.4.gem.drv /tmp/guix-tests/store/s2bps14a75dz773f3nmlk61digryysqp-ruby-multipart-post-2.0.0.drv /tmp/guix-tests/store/6kqnwa1j7vpc8wcdhsh6v8g4fy3ajv43-multipart-post-2.0.0.gem.drv /tmp/guix-tests/store/sig7brrhmgl9ldvahwfhvwdkmr3v7939-octokit-4.18.0.gem.drv /tmp/guix-tests/store/wq34lfyywzxd1bah1p3x9dsnzk455grq-ruby-sawyer-0.8.2.drv /tmp/guix-tests/store/c5b3xikja96qcdwks44wgi038b70p98i-sawyer-0.8.2.gem.drv /tmp/guix-tests/store/cx6w555qhxnix1949qm06aw6jr0rj76p-ruby-byebug-11.1.3-checkout.drv /tmp/guix-tests/store/m9r6521w8nphnm954gzqkfrn9gzlsixp-ruby-byebug-11.1.3-checkout.drv /tmp/guix-tests/store/hpz8ihw4hri3qvix3ip81sklvgsjacd5-ruby-chandler-0.9.0.drv /tmp/guix-tests/store/sp6jh0yc8zryd4fk3npk5iif8qqzg93s-chandler-0.9.0.gem.drv /tmp/guix-tests/store/w3zk1g2d4fgr6ds783asfq7i917sgf2z-ruby-hydra-0.0-0.5abfa37-checkout.drv /tmp/guix-tests/store/jl12gb4nqy3cmjsj0arwf4nhvzd656x2-texlive-hyphen-estonian-59745-checkout.drv /tmp/guix-tests/store/0ncky4a88bc7j01wyhy0j32i0lrdhidw-texlive-unicode-data-59745.drv /tmp/guix-tests/store/ncm6sgavvw9ckplgaiiyaizyy0zd75mq-texlive-unicode-data-59745-checkout.drv /tmp/guix-tests/store/1iamypgxriqxg5xq55vr7mbyhp03m6lm-texlive-hyphen-sanskrit-59745.drv /tmp/guix-tests/store/sy94jbrhp0dkhiyl1rr55p4zafszvy1c-texlive-hyphen-sanskrit-59745-checkout.drv /tmp/guix-tests/store/1wfirzrwg6y8mivajvk68ac5jzd92qpx-texlive-hyphen-bulgarian-59745.drv /tmp/guix-tests/store/gyw0phsla1ysy17scpdrnvn2ps994fdh-texlive-hyphen-bulgarian-59745-checkout.drv /tmp/guix-tests/store/1y66pp9db31aabf24p3w2v3bs3np7b73-texlive-hyphen-friulan-59745.drv /tmp/guix-tests/store/bdq2spc4vyxwgic5j6dqahvki5q5rj8a-texlive-hyphen-friulan-59745-checkout.drv /tmp/guix-tests/store/2g38pi5rpz5pphbpk6mcbx5w31n6mws3-texlive-tetex-59745.drv /tmp/guix-tests/store/q825bwi5hy15mzqw8s0kh0qnidjp9gqb-texlive-tetex-59745-checkout.drv /tmp/guix-tests/store/36kjzj0yyiml211bf7zv40s8bvml0lps-texlive-latex-l3kernel-59745.drv /tmp/guix-tests/store/c7drci7hj9mvrvav2yr42r1ipxa52s9r-texlive-latex-l3kernel-59745-checkout.drv /tmp/guix-tests/store/vc53kc9vk5a5wz91dbj07m3ag1x7mzfy-module-import-compiled.drv /tmp/guix-tests/store/z8a7dipy72cdk7fdabhm85swf7v6939l-texlive-docstrip-59745.drv /tmp/guix-tests/store/vs2p5rc2mzyadd4591qqnlcbrz7621zi-texlive-docstrip-59745-checkout.drv /tmp/guix-tests/store/3g0vv1218kg4fv5bwbyjsai4xfziyb1k-texlive-hyphen-danish-59745.drv /tmp/guix-tests/store/5l6v1ib2x5c7hrjw2ihqyj2lc7lgzcf6-texlive-hyphen-danish-59745-checkout.drv /tmp/guix-tests/store/3r3hanj0m3d1s6n63ipqb2r3bi5514n0-texlive-hyphen-coptic-59745.drv /tmp/guix-tests/store/464mjwky86xwhi76nvgjvrk790bm03f4-texlive-hyphen-coptic-59745-checkout.drv /tmp/guix-tests/store/49xnsh42bh4zq1581c4cbcq9ricr4sw9-texlive-hyphen-belarusian-59745.drv /tmp/guix-tests/store/2npissy680lrkyx5f9mf1pm5qrcn64gp-texlive-hyphen-belarusian-59745-checkout.drv /tmp/guix-tests/store/4plkwy1dl6cffrxb69ki6cs3xiw9fykm-texlive-hyphen-schoolfinnish-59745.drv /tmp/guix-tests/store/ibr57wq5isx3b1pxcgcgvj88cww6yk1k-texlive-hyphen-schoolfinnish-59745-checkout.drv /tmp/guix-tests/store/4w1avzc1d7cm6aj6issafxr0s977x1m8-texlive-latex-base-59745.drv /tmp/guix-tests/store/5g0vlk8dfd2zwmq9giwnq81423lp6lgf-texlive-hyphen-galician-59745.drv /tmp/guix-tests/store/3492r0zncj65v4dafadgsb06l9ix3hz8-texlive-hyphen-galician-59745-checkout.drv /tmp/guix-tests/store/5ysx5qff3bdq37h9fhr9l57kywkrmpml-texlive-hyphen-turkish-59745.drv /tmp/guix-tests/store/8fjfmqzd9csmjpvzgnh9fpg9qkbbxw5z-texlive-hyphen-turkish-59745-checkout.drv /tmp/guix-tests/store/6d22kqj1554wkjw6pb106ahsay6r719j-texlive-hyphen-icelandic-59745.drv /tmp/guix-tests/store/g9c7jpazfyk3338np4z9ky09n30sbj37-texlive-hyphen-icelandic-59745-checkout.drv /tmp/guix-tests/store/6zsbv7bp7p3vm7xbjhbasb2rfrb8ia49-texlive-hyphen-esperanto-59745.drv /tmp/guix-tests/store/gryga1fq59ac9j615kz6fx0jc4klg8g4-texlive-hyphen-esperanto-59745-checkout.drv /tmp/guix-tests/store/742ahq9dhlvd58zr8xgwzd4njzqiw1xx-texlive-hyphen-chinese-59745.drv /tmp/guix-tests/store/ny7pk67ra6c49z9rl8mlca36hc2ifldn-texlive-hyphen-chinese-59745-checkout.drv /tmp/guix-tests/store/7nb1jwansghqfbzrxf7i1ll9w5pw90j8-texlive-knuth-lib-59745.drv /tmp/guix-tests/store/v48923xb43k102p426ylkzw7xl62zipz-texlive-knuth-lib-59745-checkout.drv /tmp/guix-tests/store/83537fhilhwdk776x1y3p89dcrgf5x1s-texlive-latexconfig-59745.drv /tmp/guix-tests/store/h43kmlj78p58amdh3vsmqwgfyqlfmxx5-texlive-latexconfig-59745-checkout.drv /tmp/guix-tests/store/8a74cgxlhcigfzg1jn6ddypdgyyi2aqs-texlive-hyph-utf8-59745.drv /tmp/guix-tests/store/dkfvvh7wfq9sps3mq4x7hmxh6akss380-texlive-hyph-utf8-59745-checkout.drv /tmp/guix-tests/store/m3g1c68mz34ia78q7bwy0g5hxa049181-texlive-tex-plain-59745.drv /tmp/guix-tests/store/kna5gxzafwkyc6qhbw95f8b8yprv7ch7-texlive-tex-plain-59745-checkout.drv /tmp/guix-tests/store/qhjf8mjb2cq1q49g8svv1is5zgdl8fa9-texlive-hyphen-base-59745.drv /tmp/guix-tests/store/p820yvcy0mdfr6rcn4q96dlzcm9p5nx9-texlive-hyphen-base-59745-checkout.drv /tmp/guix-tests/store/8idg356cww7yycj0i2q110wybldj4hvs-texlive-hyphen-catalan-59745.drv /tmp/guix-tests/store/80q61pr0c4njrmd9jlr6xxg2bn8cxqxa-texlive-hyphen-catalan-59745-checkout.drv /tmp/guix-tests/store/8mbgw4fal7my6qzqkf5k1si2h4ylvx0z-texlive-hyphen-romanian-59745.drv /tmp/guix-tests/store/n4qksi18yqpx33b1zbmbjmhdzmdsrzd9-texlive-hyphen-romanian-59745-checkout.drv /tmp/guix-tests/store/8sy4vh6xmz8gq4qwryyldmilgjk1k6z8-texlive-hyphen-dutch-59745.drv /tmp/guix-tests/store/akr925l962nkyjvwk2r14fmgbslk62db-texlive-hyphen-dutch-59745-checkout.drv /tmp/guix-tests/store/8vprd021cvzcw0biqwzblz6ydycgbr2r-texlive-hyphen-occitan-59745.drv /tmp/guix-tests/store/f0yndj8vi0iw6jkc7j7ry75avlfxi6h1-texlive-hyphen-occitan-59745-checkout.drv /tmp/guix-tests/store/929q8hsjaqchhkvm8bgg3mqicc6ma1xj-texlive-hyphen-welsh-59745.drv /tmp/guix-tests/store/yn4mdhybwnga5djb0wfz8hxlxl7m6adj-texlive-hyphen-welsh-59745-checkout.drv /tmp/guix-tests/store/999rc8dva80nqbv63ji6b2ir2dwygj42-texlive-ukrhyph-59745.drv /tmp/guix-tests/store/jh0r74c2ydjv1ji06vdgayq2b3wq636j-texlive-ukrhyph-59745-checkout.drv /tmp/guix-tests/store/9f5x3rmlrz5r6hj01d4wnkx9cpczm9hw-texlive-hyphen-lithuanian-59745.drv /tmp/guix-tests/store/1x31y4il4agkmabznvb80pizxk567vgf-texlive-hyphen-lithuanian-59745-checkout.drv /tmp/guix-tests/store/a07j3pg0jnmcq29b2zdi74y36lcqrpmx-texlive-hyphen-spanish-59745.drv /tmp/guix-tests/store/3nhal4xx0zb3phb05j51v9s4037yvf7i-texlive-hyphen-spanish-59745-checkout.drv /tmp/guix-tests/store/axskv7b2blf6gpp3mxgkdm5z0rdvyysy-texlive-hyphen-kurmanji-59745.drv /tmp/guix-tests/store/ns5kjzmgrvwgfli70ndvw52i1v4gbdrx-texlive-hyphen-kurmanji-59745-checkout.drv /tmp/guix-tests/store/bg1yqdabykjza0pmjnxihc1w4pcvqj1x-texlive-hyphen-finnish-59745.drv /tmp/guix-tests/store/yb98cywdaac9br29ircamag7jvxa51r4-texlive-hyphen-finnish-59745-checkout.drv /tmp/guix-tests/store/c2hdz19w4c2fccqshw93mgdwak8vifyc-texlive-dehyph-exptl-59745.drv /tmp/guix-tests/store/y92mbkjmia5006bzxm6nj5nbmvz5mb9k-texlive-dehyph-exptl-59745-checkout.drv /tmp/guix-tests/store/cx39d2gv230hr5bqwzap712fd6lamvi9-texlive-hyphen-irish-59745.drv /tmp/guix-tests/store/sq2aydqrnk8bn5s5dlagip02kzif8hl3-texlive-hyphen-irish-59745-checkout.drv /tmp/guix-tests/store/dd043f39cl5aq7vivd0lzi9s915rn1ah-texlive-hyphen-greek-59745.drv /tmp/guix-tests/store/02fiq2igi1dfbh2qk44aaz0l7x0qqdrn-texlive-hyphen-greek-59745-checkout.drv /tmp/guix-tests/store/ddv5n1cxhbqhfsbba93vdiqy31wrv573-texlive-hyphen-georgian-59745.drv /tmp/guix-tests/store/sfm2c8nvc97ln5z4bqzdlijh81x2yah5-texlive-hyphen-georgian-59745-checkout.drv /tmp/guix-tests/store/df45idg8zga0aqmm5z92drkk2gdrrc1n-texlive-ruhyphen-59745.drv /tmp/guix-tests/store/ix8fjhyr1rhdkx6b24gcq3zp4zjvfh6i-texlive-ruhyphen-59745-checkout.drv /tmp/guix-tests/store/djadrny81scy66qyvqlyy8zkxvf1p141-texlive-hyphen-ethiopic-59745.drv /tmp/guix-tests/store/mprim31imayp1i3ivriyq656f8b24l0w-texlive-hyphen-ethiopic-59745-checkout.drv /tmp/guix-tests/store/ds3wg006ma4i8cxh0xq57fxn1rbksf10-texlive-hyphen-macedonian-59745.drv /tmp/guix-tests/store/kz4yzljslf337rrxwi03ri0qkq96gmny-texlive-hyphen-macedonian-59745-checkout.drv /tmp/guix-tests/store/f2r618g0isy7chp1drxx0wpp4rn0bawz-texlive-hyphen-indonesian-59745.drv /tmp/guix-tests/store/crxzvn6wjl41fl8hb92zm0kkcf44dgpk-texlive-hyphen-indonesian-59745-checkout.drv /tmp/guix-tests/store/fp7bcfxm0hzgqrvm7hk9ys3pn8zzspqk-texlive-hyphen-croatian-59745.drv /tmp/guix-tests/store/3ddg5jv999qkcfy02dkbin1skwagcnd1-texlive-hyphen-croatian-59745-checkout.drv /tmp/guix-tests/store/fyf0sccjrvn7bp138d375w0l20irvi9s-texlive-hyphen-french-59745.drv /tmp/guix-tests/store/cj2w2qq0z8jn5109j4qai380siacwxzj-texlive-hyphen-french-59745-checkout.drv /tmp/guix-tests/store/ghcrjphx72kcdari83zjh2rnc6b3sn2g-texlive-hyphen-norwegian-59745.drv /tmp/guix-tests/store/3ayx9rm7z7q9816cybvqf16mm4sxcd3f-texlive-hyphen-norwegian-59745-checkout.drv /tmp/guix-tests/store/ghkhlh9ysffrix0bfk8x25hja56d3qi3-texlive-latex-base-59745-checkout.drv /tmp/guix-tests/store/gk8yk3fmyrqgax5cshsa2z1qjc2si30f-texlive-hyphen-armenian-59745.drv /tmp/guix-tests/store/8idp13i46xqsa2y329bhg55c30skwwwi-texlive-hyphen-armenian-59745-checkout.drv /tmp/guix-tests/store/h8d3rm2smi56s1zmwf0r2xc16r62n0vd-texlive-hyphen-russian-59745.drv /tmp/guix-tests/store/njhg4j0bavxamb5p1yxzi4p6a27igjac-texlive-hyphen-russian-59745-checkout.drv /tmp/guix-tests/store/hasasspbxkp6vv6iz7vdl69cjgi19xbd-texlive-hyphen-ukrainian-59745.drv /tmp/guix-tests/store/hnhp8gy8zkb6ryakcmrpkx1nd0k9a005-texlive-hyphen-ukrainian-59745-checkout.drv /tmp/guix-tests/store/hy3gzb1kvz6z0j7dlrp0lzs0kjpcz35v-texlive-hyphen-polish-59745.drv /tmp/guix-tests/store/a0bzaad262bn3dmbz0ns02g54jrl17c7-texlive-hyphen-polish-59745-checkout.drv /tmp/guix-tests/store/j0pamvcy8hkij2di7vxcwpxbd5lx0r70-texlive-luatexconfig-59745-checkout.drv /tmp/guix-tests/store/ja1vnz4ir21jgxwaxrs5vamsyz2vlqml-texlive-hyphen-slovenian-59745.drv /tmp/guix-tests/store/9v9vspd2bxkd52yhxwad4mn7h66sqwc2-texlive-hyphen-slovenian-59745-checkout.drv /tmp/guix-tests/store/jhaqhkv0b17x6p826v7adcj4bl11s807-texlive-hyphen-serbian-59745.drv /tmp/guix-tests/store/ksbc9bckv7d7hn5z9864hpcmb2pz2ibw-texlive-hyphen-serbian-59745-checkout.drv /tmp/guix-tests/store/jv2gbw9j0xcxq6giv6bkvsrac9v6lwhh-texlive-hyphen-turkmen-59745.drv /tmp/guix-tests/store/2qqv38v1brsl2yp5wmzzbsq5yj3q9yfl-texlive-hyphen-turkmen-59745-checkout.drv /tmp/guix-tests/store/jw6vqxl67y3s30lil0xyyc4wcpsympxq-texlive-hyphen-uppersorbian-59745.drv /tmp/guix-tests/store/3fvxfszmw0y354xs96x318s4y90yslmc-texlive-hyphen-uppersorbian-59745-checkout.drv /tmp/guix-tests/store/k4bzmzrf684q1iqrgjv7sijb431lsvha-texlive-hyphen-thai-59745.drv /tmp/guix-tests/store/586wy9h1s6n77xxilv2wc63rhpyqwwp5-texlive-hyphen-thai-59745-checkout.drv /tmp/guix-tests/store/lb7bgkdjc5fph5lb9g255cyxfh8cxhfs-texlive-hyphen-slovak-59745.drv /tmp/guix-tests/store/xij7xqzsdxc521w57f88nkhl1m6gh0l7-texlive-hyphen-slovak-59745-checkout.drv /tmp/guix-tests/store/li0cx82377r9kyimpcp84hva3bl6qvha-texlive-hyphen-basque-59745.drv /tmp/guix-tests/store/4bidv6ypjzbin0sdhiixchh08nhk6hcn-texlive-hyphen-basque-59745-checkout.drv /tmp/guix-tests/store/lsn3y9n94wm1vwrvf7yilmd7s4anzmij-texlive-hyphen-latvian-59745.drv /tmp/guix-tests/store/p2za8jrrh7kj9zryk4dhsy9vwpqfg156-texlive-hyphen-latvian-59745-checkout.drv /tmp/guix-tests/store/m62cvfvhagmh2ig8ghfri826w82sa65x-texlive-kpathsea-59745.drv /tmp/guix-tests/store/n9bjk653lwzvpp5lxm2cjgbzdxwjp0ag-texlive-kpathsea-59745-checkout.drv /tmp/guix-tests/store/mhwymi5cvm6d2j15ip3l9n82bfarw8vr-texlive-hyphen-portuguese-59745.drv /tmp/guix-tests/store/papkw00l80wwnjgk7gvh8psvnvh998r4-texlive-hyphen-portuguese-59745-checkout.drv /tmp/guix-tests/store/miscccyxnc706ypvlz8wk1gjjx2n3k86-texlive-hyphen-mongolian-59745.drv /tmp/guix-tests/store/fn7nahrkyj0vv4gbga98h85bay3gxis6-texlive-hyphen-mongolian-59745-checkout.drv /tmp/guix-tests/store/mzk1ri3cqdhi80f0zaknz211b8lzsziz-texlive-hyphen-latin-59745.drv /tmp/guix-tests/store/48dsri50w40265slbklmhrkhks2gl872-texlive-hyphen-latin-59745-checkout.drv /tmp/guix-tests/store/n4wsp8xk7vyb9gf8mvn9jxshf57cdyss-texlive-hyphen-romansh-59745.drv /tmp/guix-tests/store/qkc7lx2zaq67b0n9ajd4yrm57j2mbc4h-texlive-hyphen-romansh-59745-checkout.drv /tmp/guix-tests/store/n85zjwa5nl5gh7ycsmjyx37il4h0lx7i-texlive-hyphen-ancientgreek-59745.drv /tmp/guix-tests/store/22nvf7lmzhrv14r3hbpz1wjb45hlrna9-texlive-hyphen-ancientgreek-59745-checkout.drv /tmp/guix-tests/store/n9iyfz4z7ibr7ld4p03lmjppyk352ivr-texlive-etex-59745.drv /tmp/guix-tests/store/hh56yd2gzy02i8j0q56za2gsll9sq3xc-texlive-etex-59745-checkout.drv /tmp/guix-tests/store/p1i7apwxxl2rwlhk4sy8al45v4wa1i2p-texlive-hyphen-afrikaans-59745.drv /tmp/guix-tests/store/fb6f3viwwaswn7gmpaczyp8qkd5xwrx9-texlive-hyphen-afrikaans-59745-checkout.drv /tmp/guix-tests/store/p9cymrnkvppnk94k7740jrbm0qh0zgv4-texlive-latex-l3backend-59745.drv /tmp/guix-tests/store/7c6py2c9mmxxy9mpi10zlyng28gvqx5q-texlive-latex-l3backend-59745-checkout.drv /tmp/guix-tests/store/pqgi7123kdhip7f2l9bfv9dph1ff58av-texlive-hyphen-piedmontese-59745.drv /tmp/guix-tests/store/vy1hlcwibafrl9n293l4ib3k13qz74ij-texlive-hyphen-piedmontese-59745-checkout.drv /tmp/guix-tests/store/qfa04wr43v6v4yhsbxvd0fxgsil45l7g-texlive-hyphen-indic-59745.drv /tmp/guix-tests/store/9a5f2mb55hbcv2zg8fs68vbillc1sp2q-texlive-hyphen-indic-59745-checkout.drv /tmp/guix-tests/store/rry4brx0r00sx2zl7w2lv2jy2vpp92s8-texlive-hyphen-german-59745.drv /tmp/guix-tests/store/hfvszmswv2mnr5qiabm92596q01l356p-texlive-hyphen-german-59745-checkout.drv /tmp/guix-tests/store/s5xx7w0fvyfbk4w9nlki2gbrs2irjqwa-texlive-hyphen-hungarian-59745.drv /tmp/guix-tests/store/jqimih64y1yg3xhyr8xn7kr4f9wz3m5d-texlive-hyphen-hungarian-59745-checkout.drv /tmp/guix-tests/store/sf7i0m5y6d1g11cy5xzy611b9vbj2r5x-texlive-tex-ini-files-59745.drv /tmp/guix-tests/store/1i4hpj2w5i0wxjxdkdnqy24vgpp4cjjx-texlive-tex-ini-files-59745-checkout.drv /tmp/guix-tests/store/slzrv82lwgs696n018p82rc1zd8bin5l-texlive-hyphen-czech-59745.drv /tmp/guix-tests/store/wsdyr8v0xmy2i28wazgmmskhjgcpkkxi-texlive-hyphen-czech-59745-checkout.drv /tmp/guix-tests/store/svrfmg28nhzv9588avsyxkskgxa7c475-texlive-hyphen-interlingua-59745.drv /tmp/guix-tests/store/n86bbl111pzx2jvmabapz8mw1wgiwx4s-texlive-hyphen-interlingua-59745-checkout.drv /tmp/guix-tests/store/syfpc9hdn3xwiqw5rgwdxvb8vxnr7qgw-texlive-hyphen-swedish-59745.drv /tmp/guix-tests/store/dql4a1j3f2gsj4l6gr1ni30vd5rp0rxk-texlive-hyphen-swedish-59745-checkout.drv /tmp/guix-tests/store/vjgkk4pq4ydvlv4hs3ialgvc3vhd8saq-texlive-hyphen-english-59745.drv /tmp/guix-tests/store/sjwnh4z21ji6gsd878gprbkskw48d6yi-texlive-hyphen-english-59745-checkout.drv /tmp/guix-tests/store/w3wmibd8gdip3b93v9ymwnp2avby45nk-texlive-latex-l3packages-59745.drv /tmp/guix-tests/store/lsvls0xwfxd469cam3qbapng29sf82hy-texlive-latex-l3packages-59745-checkout.drv /tmp/guix-tests/store/wnmni0xkpvi3138yxgqadv2c8hyz8s30-texlive-hyphen-churchslavonic-59745.drv /tmp/guix-tests/store/94kq4bbs7vdvyzrcf60mv76xsbr63702-texlive-hyphen-churchslavonic-59745-checkout.drv /tmp/guix-tests/store/xhr6mnwbhm5xxh2sj98kjldjakf0izxm-texlive-hyphen-pali-59745.drv /tmp/guix-tests/store/bxaimb78y5m86alkphb7imkkr7i8fviy-texlive-hyphen-pali-59745-checkout.drv /tmp/guix-tests/store/xi99mdnd0kn5sym7jw9fmi26nf1m62v8-texlive-hyphen-italian-59745.drv /tmp/guix-tests/store/vd00r9bw4c28nxg2gyixjm229y7gc363-texlive-hyphen-italian-59745-checkout.drv /tmp/guix-tests/store/6dlq1zx8f87palkjqs1q2x962lpjl5kr-perl-module-build-0.4231.drv /tmp/guix-tests/store/3dr2z7qcc09pjcw2n85c92awr67v0d34-Module-Build-0.4231.tar.gz.drv /tmp/guix-tests/store/6nj6iyr7sz14c5f2k7msc6ndjiy1qrhf-perl-yaml-tiny-1.73.drv /tmp/guix-tests/store/45874z6j6ciq0icn8948ddgdmy1694ix-perl-module-build-tiny-0.039.drv /tmp/guix-tests/store/4im5a7k6i44w2bljzgqn2ghnkxwwsdfy-perl-extutils-config-0.008.drv /tmp/guix-tests/store/vb8848zak89z3nx252zaz0y0sjgdbpvg-ExtUtils-Config-0.008.tar.gz.drv /tmp/guix-tests/store/6n18xi6c762cp844w1agg5idgmrfg421-perl-extutils-helpers-0.026.drv /tmp/guix-tests/store/z0kd4sn8br12bvkb35ylx5rybc8gklrj-ExtUtils-Helpers-0.026.tar.gz.drv /tmp/guix-tests/store/qmp6jql1j4kka5yrgga5swpqq6926afn-perl-test-harness-3.42.drv /tmp/guix-tests/store/fnlqg74kjfkr0gihaiwshlj65xg66cj8-Test-Harness-3.42.tar.gz.drv /tmp/guix-tests/store/v7ihwlr46p6wwl5gl0b3pnqrpjch161i-Module-Build-Tiny-0.039.tar.gz.drv /tmp/guix-tests/store/zsgdjw0wr9cha4pdg2wa713ks6hnw5rg-perl-extutils-installpaths-0.012.drv /tmp/guix-tests/store/mzydy96wv31ywvmkfhhp751c4a3rhzf4-ExtUtils-InstallPaths-0.012.tar.gz.drv /tmp/guix-tests/store/5y526jl2bqx3clzmhbd57v02fxm6g360-perl-json-maybexs-1.004003.drv /tmp/guix-tests/store/2xz243rz372nfklmxnf0j24b6ap4bl1i-perl-common-sense-3.75.drv /tmp/guix-tests/store/98aglcvvvzp84x4d0p668zcqz5slpzzx-common-sense-3.75.tar.gz.drv /tmp/guix-tests/store/52qybi82wbbzywxl3i7yv8m9qvjmlsln-perl-cpanel-json-xs-4.26.drv /tmp/guix-tests/store/dhnkqxymyvz07mql9iad6vz8lghd8i47-Cpanel-JSON-XS-4.26.tar.gz.drv /tmp/guix-tests/store/hhzqy622w8cbmf4y8jbsrab46z54i0rj-JSON-MaybeXS-1.004003.tar.gz.drv /tmp/guix-tests/store/anmgahzgf5l9kvvbfnmlnz4paw2k1r8v-YAML-Tiny-1.73.tar.gz.drv /tmp/guix-tests/store/869gnf7dkmh42d7w3nz9sfmg89f18xlr-texlive-graphics-def-59745.drv /tmp/guix-tests/store/l7k0g05i15diz68wy4mblkngghwn95yg-texlive-graphics-def-59745-checkout.drv /tmp/guix-tests/store/yyrfidanv08ilxhv6qalxkml6ycx2zwk-texlive-latex-epstopdf-pkg-59745.drv /tmp/guix-tests/store/jxm5hpc3xw6y0xvy0367rzf7iw79rxkp-texlive-latex-epstopdf-pkg-59745-checkout.drv /tmp/guix-tests/store/b0r24iwj145b1g4wzfvna8pwibg1nl56-texlive-amscls-59745.drv /tmp/guix-tests/store/i7c76g8g1bkny6yw1v12ngnss4gxq4ig-texlive-amscls-59745-checkout.drv /tmp/guix-tests/store/b2w2g0nzs8mn945fpq0p2w8pb2q86p38-docbook-xml-4.1.2.drv /tmp/guix-tests/store/55v3by9g3l7afl0bl167acgwz3limirf-docbkx412.zip.drv /tmp/guix-tests/store/c6x6r5mr1iwd8sadb7v4cjksn0s3hkgf-texlive-psnfss-59745.drv /tmp/guix-tests/store/lyx2gfx63g1sn2add80rc0id26z9g5gf-texlive-psnfss-59745-checkout.drv /tmp/guix-tests/store/cdn7gdddp9y786zflmxn81w5pbhplhdv-texlive-tiny-59745.drv /tmp/guix-tests/store/fwjz5q37hvjwgi2pqz6xvml4kizg96rp-texlive-cm-super-59745.drv /tmp/guix-tests/store/59jk07z2vz5daw7lbwq9ijc9z3n8c5sh-texlive-cm-super-59745-checkout.drv /tmp/guix-tests/store/g4iyk5g22f7px23mdn7qgq3jbgba1hid-texlive-graphics-cfg-59745.drv /tmp/guix-tests/store/dss7yw2lb1cy31rlf7yjmcar9khznkip-texlive-graphics-cfg-59745-checkout.drv /tmp/guix-tests/store/h3b5iy9c337438qp5np19vwnvi3cf25l-texlive-latex-cyrillic-59745.drv /tmp/guix-tests/store/58rk3sa52bpkxn51i51k507liizwzvkp-texlive-latex-cyrillic-59745-checkout.drv /tmp/guix-tests/store/jxbkjb96z5zlsarw7gd00vxnwviqcz2k-texlive-latex-amsmath-59745.drv /tmp/guix-tests/store/wkm65g4vaipkyfb69fw6iqrh4gh27a29-texlive-latex-amsmath-59745-checkout.drv /tmp/guix-tests/store/lw8sqs2d3l0jjl41k3s7hldk9pqzw9yl-updmap.cfg.drv /tmp/guix-tests/store/mmfl11kl0l577nnbdvfipygc4n4h71jx-texlive-generic-babel-english-59745.drv /tmp/guix-tests/store/djm233j075lw09maa9r82pis3z3c53xx-texlive-generic-babel-english-59745-checkout.drv /tmp/guix-tests/store/r2plcggy8934fs32xd6bnfhkpivi2w8z-texlive-latex-tools-59745.drv /tmp/guix-tests/store/k2vapw1a30icpwmx4ib9v5bavr5ab218-texlive-latex-tools-59745-checkout.drv /tmp/guix-tests/store/v5b55nyibwmz8j0lmws3yrzgzabin7j0-texlive-babel-59745.drv /tmp/guix-tests/store/yj3bmhnqp68pa90ssnm7f6kbd2n2xd2v-texlive-babel-59745-checkout.drv /tmp/guix-tests/store/wk96qhxiypdcr5dy4jn5jgypr0wfrsp4-texlive-dvips-59745.drv /tmp/guix-tests/store/av6l4qjvmpmls89mz26rwgglf4w1cw7a-texlive-dvips-59745-checkout.drv /tmp/guix-tests/store/yxv34iypd2b0idfx18m7wy0wxrg4sycy-texlive-latex-graphics-59745.drv /tmp/guix-tests/store/4cpap8kb7f739csirf6mgl4yxpz63qb6-texlive-latex-graphics-59745-checkout.drv /tmp/guix-tests/store/zjrb58x7xfqf7arlmnlxwv2snqkgljrs-texlive-fontname-59745.drv /tmp/guix-tests/store/nqrbdyzxyvrrk2kgkr0qf5v1kvnp4ywb-texlive-fontname-59745-checkout.drv /tmp/guix-tests/store/cgg0kzlydxngwl9l67y40phnqac1canj-po4a-0.63.tar.gz.drv /tmp/guix-tests/store/spcsmd5v4ly3nm1xp401807ij7snghgy-perl-test-pod-1.52.drv /tmp/guix-tests/store/m2mhndhixdj3a21yhiahhi1v6948p2bw-Test-Pod-1.52.tar.gz.drv /tmp/guix-tests/store/w4k2k7r8wzkf2ij5ldf2qc4fx7ljqanf-perl-pod-parser-1.63.drv /tmp/guix-tests/store/5c2j3zr38kpg8dmnpspc5k74fy857cj5-Pod-Parser-1.63.tar.gz.drv /tmp/guix-tests/store/82pm5vc49x4r60d1di2z9a907lc75xgz-disarchive-0.4.0.drv /tmp/guix-tests/store/iss4xrhwpd6bfwpfnympa1f77av2ic3h-disarchive-0.4.0.tar.gz.drv /tmp/guix-tests/store/kf64bmmfykhkpsrgl20kskilfdkwk86i-guile-quickcheck-0.1.0.drv /tmp/guix-tests/store/7vbd1f8krir5jqccz3mxq0044bwc7ihd-guile-quickcheck-0.1.0.tar.gz.drv /tmp/guix-tests/store/lpy7vlz5wd3rih2as1xb41lkf9mmq329-guile-lzma-0.1.0.drv /tmp/guix-tests/store/xfb2vf4yh9s94j9ipc54riak27qh1d92-guile-lzma-0.1.0.tar.gz.drv /tmp/guix-tests/store/i8lwzllyh801gnyig9qg2ssrxp4w04qm-guix-1.3.0-16.10ceb3e-checkout.drv /tmp/guix-tests/store/7w5akmhcxgj5kwk8i34l4ar0347fwxas-module-import-compiled.drv /tmp/guix-tests/store/2d2cbya67yyji8xchr1in8knxix9mcr8-mkfontdir-1.0.7.drv /tmp/guix-tests/store/k1sh37msdlm5cq4phpj9kj9gqvw7pqr2-mkfontscale-1.2.1.drv /tmp/guix-tests/store/1zabz0ns5hza30yw81i99mqmcn2v0995-libfontenc-1.1.4.drv /tmp/guix-tests/store/zsd55ydb7knk2cz01f6d3hpgq2ph48c2-libfontenc-1.1.4.tar.bz2.drv /tmp/guix-tests/store/akh1wmkmcaxhfk1s4pf9wka6bim8671l-mkfontscale-1.2.1.tar.bz2.drv /tmp/guix-tests/store/my0azai9frif7yfdr4flv0a39hd9xj52-mkfontdir-1.0.7.tar.bz2.drv /tmp/guix-tests/store/vsjakghydi7drfic19zf183zr36qahyd-module-import-compiled.drv /tmp/guix-tests/store/gs1yf3z7qns4md3i0xd09l1fhsks3lf1-guile-gdbm-ffi-20120209.fa1d5b6.drv /tmp/guix-tests/store/ixizak8jmhxlx20a6mfhjyfpyvfymk31-guile-gdbm-ffi-20120209.fa1d5b6-checkout.drv /tmp/guix-tests/store/3mkzj099x06c836655r5m1dwk8nnwi2f-guile-gdbm-ffi-20120209.fa1d5b6-checkout.drv /tmp/guix-tests/store/jn061ljmq78h8q0d8hkhz7hc82nb4s0y-module-import-compiled.drv /tmp/guix-tests/store/2ibhvm4kjqzl7jimn8sw30nrljrj8c0y-locale-multiple-versions.drv /tmp/guix-tests/store/kzzlxx72p8wgxrgcjh13p3128kpgkw7f-locale-2.33.drv /tmp/guix-tests/store/pv0ziwf8zikap87l6l2q935aydhcz9gd-module-import-compiled.drv /tmp/guix-tests/store/rh0z0b8gwryj2m25wr00wimxrrckynzk-module-import-compiled.drv /tmp/guix-tests/store/wmdk807ql9dk2d2nh982870j5h6w9wnz-locale-2.31.drv /tmp/guix-tests/store/4nkpxx2jjapbnl0fnpnas1x2pvahc5ih-glibc-2.31.drv /tmp/guix-tests/store/kflx39w92xlv1lg3pvgv1sqz939mzjc9-glibc-2.31.tar.xz.drv /tmp/guix-tests/store/1ipqan74q3gddmn8v2xc3giz6i5r6wks-glibc-2.31.tar.xz.drv /tmp/guix-tests/store/c3mvmy6wmray1scq9c0wrg1jb307rbld-etc.drv /tmp/guix-tests/store/3dppzrmjipl215357m62qp0rxxqcigkl-skel.drv /tmp/guix-tests/store/4hi5mc14v13wcx7s3ghlq7ddx5n6h509-pam.d.drv /tmp/guix-tests/store/1801p42rgy9mkkpdf9bmzrgk41fna0bc-groupadd.drv /tmp/guix-tests/store/5jybgg7awqw792vb8gk74i1kny6f087i-groupdel.drv /tmp/guix-tests/store/63zwpr2yb02fg2fjyzfmyl7sby5wpcg9-userdel.drv /tmp/guix-tests/store/9v5ds3f9pa7na20wmfrg0l2qsjxdpzi7-passwd.drv /tmp/guix-tests/store/c1i43n1ip1s8ppmc13igxgzj61c2bffl-other.drv /tmp/guix-tests/store/fsbvj9x1yz3pvvgy5xq70c91cfmy2brq-useradd.drv /tmp/guix-tests/store/jx9xjzd42063rhjap04wrgwrnn1qivsc-su.drv /tmp/guix-tests/store/n3nc4rvccdncrsycb0lwavd83fabk81w-login.drv /tmp/guix-tests/store/nwy8z7fv1dw5y94p3icw7mw749pk4nj6-sudo.drv /tmp/guix-tests/store/wzlh1j5xv051jxjxj4mn002lz969xsx8-usermod.drv /tmp/guix-tests/store/zx1d38g65ycdx57c6jk9yabk82yfzlvr-groupmod.drv /tmp/guix-tests/store/g4j8q8jvbxkr9pckrm5lxpqjnlsrn1dd-shells.drv /tmp/guix-tests/store/gibpg9bbb294maqsf1nh5nd5hy8zs9xf-profile.drv /tmp/guix-tests/store/jbfzgwqm2x8lwj1l0rawqv9dz2cmbjkq-sudoers.drv /tmp/guix-tests/store/lbhq0w2q30ahgxldp37gqczyknn4rhvb-rottlog.drv /tmp/guix-tests/store/njg93x7nvmxyqhyvdd4lgg9m2qc1yqzj-rottlog.weekly.drv /tmp/guix-tests/store/fz21mf3w5scnc69n1cdxxnc9yswc1822-rottlog-post-rotate.scm.drv /tmp/guix-tests/store/v4pgfxsj2hx7f88hq37wpgb2xg3rf572-environment.drv /tmp/guix-tests/store/khd7n6cr2rxrvmppw54pcxw35a9zkp2r-raw-initrd.drv /tmp/guix-tests/store/4wzg2f1zv056ywpd9mpfrv9d4hkq2axq-guile-static-stripped-3.0.7.drv /tmp/guix-tests/store/1xq5rs4pscsgszmlc5izml9nrjhbifs2-gcc-7.5.0.drv /tmp/guix-tests/store/1x5dx260g6h28n6az37hclpq9cdcgdfj-libstdc++-headers-10.3.0.drv /tmp/guix-tests/store/4bjmwzhm6q4fkfzr86bpckmmbjjxwr5n-libstdc++-10.3.0.drv /tmp/guix-tests/store/gxp7fnmlmcif375r9bwdj1r3ndcjqgaf-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/4572swx6ia9g2dqq8b5hcrazzv8v3w1n-glibc-2.33.drv /tmp/guix-tests/store/gq5b77lk64cqf8mhkd32jxp1i741cpdz-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/smsrnlbqgsjzl9n9sggv6dv7y7m9azpg-gcc-7.5.0.drv /tmp/guix-tests/store/7dl30lqn8x1ripjzbgpkfz9xmlm707zy-gcc-7.5.0.tar.xz.drv /tmp/guix-tests/store/4s95n8zhs5b2m4sj0q1kgkgy48vncpas-gcc-7.5.0.tar.xz.drv /tmp/guix-tests/store/9jnsjis5r35yinyyawlc41hwb590gai6-isl-0.23.drv /tmp/guix-tests/store/wa4yvjq1svk7767z9c84pqpzs79ix10b-isl-0.23.tar.bz2.drv /tmp/guix-tests/store/fdx1lj479fbqnc0vfgb351gb0km6jkg8-mpc-1.2.1.drv /tmp/guix-tests/store/21i644r94x8gswgmc5iss8wa62h0ncy4-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/ciyddip3x717k9g3i8f3a2gx14r5mi86-libunistring-0.9.10.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/d1mj63gqs8izim6ky57bk41xg6yzgdvj-pkg-config-0.29.2.drv /tmp/guix-tests/store/jbg2790c8haz1gl5k3lyr1s1z6wyiw4g-bash-minimal-5.1.8.drv /tmp/guix-tests/store/m2nrfckb4ff4r12m0mx77rlffdqql13c-libgc-8.0.4.drv /tmp/guix-tests/store/rg94n3mpkxblliwvg12mbvc0kzpdcn9s-libffi-3.3.drv /tmp/guix-tests/store/v1rvwqa4brbhfafr01i17vwsg0z5aprk-guile-static-3.0.7.drv /tmp/guix-tests/store/aq7plja293zcaahd2jlfqpb32m6b0f5w-init.drv /tmp/guix-tests/store/0f7a6d6qc2jc6mgirglfr023m74iji8f-linux-modules.drv /tmp/guix-tests/store/b9qd33i2s5jxl3cs7sgkwibdivbhrh19-module-import-compiled.drv /tmp/guix-tests/store/s26lr7s069dwydznixz07bn0qmpcbigp-linux-libre-5.15.10.drv /tmp/guix-tests/store/07n9ps8hpmbkbhwsbmkd6jk8jx9j5mqj-bc-1.07.1.drv /tmp/guix-tests/store/4w46qd2mgv12i9xrp7rrknsgx9xgvgzy-bc-1.07.1.tar.xz.drv /tmp/guix-tests/store/b3js201yr9f5iqs9frwq49hrlrbap0ja-bc-1.07.1.tar.gz.drv /tmp/guix-tests/store/77hnwm8qkdrk9kqva42hz8q1b5v0a4z3-elfutils-0.183.drv /tmp/guix-tests/store/lshhrjlv19fi8nzwd9dd6ma8nzx7gs7r-elfutils-0.183.tar.xz.drv /tmp/guix-tests/store/j188gxqdvzjh0pkrf2xgnginallxg49a-elfutils-0.183.tar.bz2.drv /tmp/guix-tests/store/g525wv7c3dya1ccwbp1p1b62whyn9dqc-linux-libre-5.15.10-guix.tar.xz.drv /tmp/guix-tests/store/c3s808k5xvc9lxy2ckdj8ryw15n8klni-linux-libre-5.15.10-guix.tar.xz.drv /tmp/guix-tests/store/4l57v4b3a4s1r0kfj2pvcln9m1pykbw9-linux-5.15.10.tar.xz.drv /tmp/guix-tests/store/wyirxncav87mpxzd77izq2lqwbzfhdxx-linux-libre-deblob-5.15.10-gnu.drv /tmp/guix-tests/store/ypxrlkgmmakhdma2k2b0s36bsna711hn-linux-libre-deblob-check-5.15.10-gnu.drv /tmp/guix-tests/store/rq0dwsih9817phny6kz3h9g9bk44gxs7-100gnu+freedo.patch.drv /tmp/guix-tests/store/zf7a8fgkq4w3cc44lsv934vmq47i85i5-linux-libre-arm-export-__sync_icache_dcache.patch.drv /tmp/guix-tests/store/a738f8asyhsl0frsgnrsqsanm1s8b4wc-e2fsck-static-1.46.4.drv /tmp/guix-tests/store/n8zb309g24wq727f3p4vlblkxxpsrqvf-e2fsprogs-1.46.4.drv /tmp/guix-tests/store/wzknjvhwrxp782k4kqqvs8mjmb1vcr03-module-import-compiled.drv /tmp/guix-tests/store/yf3l8m0wqkd1wc1r4zns4bzgsj78fis8-module-import-compiled.drv /tmp/guix-tests/store/mhc3hkxmzwdf5j16c0sd6aiszn8gdbdc-activate.scm.drv /tmp/guix-tests/store/1qynvw49rnrf8gbdfmql9wr0qnxs3z6z-activate-service.scm.drv /tmp/guix-tests/store/2m6b9gl6c604ws1xz25r9iy9n7wyv35x-activate-service.scm.drv /tmp/guix-tests/store/dagrabysflq2f1lqp1z7hcr3i71gyfca-activate-service.scm.drv /tmp/guix-tests/store/4qvvh9dz4v6zyzr2kbqmhl2ssip5iy07-firmware.drv /tmp/guix-tests/store/kdqkirpml4xd4zich6i035lbxwkxdkff-ath9k-htc-firmware-1.4.0.drv /tmp/guix-tests/store/2vamx6irh3ynkmv05c430c73f2lsr0gj-ath9k-htc-firmware-1.4.0-checkout.drv /tmp/guix-tests/store/jipfzcdv5yj6jx7ld7j1s6r0r28xk1aa-ath9k-htc-firmware-1.4.0-checkout.drv /tmp/guix-tests/store/n0cw1a60ypwh557mjwg12h9mzyg4sdad-binutils-cross-xtensa-elf-2.33.1.drv /tmp/guix-tests/store/c7xkbfszmjr7mg5pgs4k6f25wa98arfp-binutils-2.33.1.tar.xz.drv /tmp/guix-tests/store/7mdbc0654zq1wjaprrfnj2w7nq1zkljz-binutils-2.33.1.tar.bz2.drv /tmp/guix-tests/store/x49j6ldvjf5f5zpac42c9fbrjlaq3s06-gcc-cross-sans-libc-xtensa-elf-10.3.0.drv /tmp/guix-tests/store/3nvq0gkam8k20l0gc48hfjslcmgshixk-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/d8l1jxzqd20ma3d5nl3mchwgkm713w1y-module-import-compiled.drv /tmp/guix-tests/store/x20glm8arvb8v6pdhmnrzhc14k2hvbmw-ld-wrapper-xtensa-elf-0.drv /tmp/guix-tests/store/ncmzhy0y3xzg06mdwczx58c6nvy7n1hc-openfwwf-firmware-5.2.drv /tmp/guix-tests/store/l94sp53jfs13h8a3k23n49ygs1r3brwz-openfwwf-5.2.tar.gz.drv /tmp/guix-tests/store/n8545gsxsna2wkav1yd20m56dz2c8yiz-b43-tools-0.0.0-1.27892ef.drv /tmp/guix-tests/store/8si0b4bx61imy7p8k6md8ijb7ndxwh0s-b43-tools-0.0.0-1.27892ef-checkout.drv /tmp/guix-tests/store/fbvkrlmrcdrzwhlc28zw7ls1n8534w8r-activate-service.scm.drv /tmp/guix-tests/store/g1cqpg3fg2znbxk90bvfagvnz7imwicn-activate-service.scm.drv /tmp/guix-tests/store/3aflpa7pa4awlygblgxjkkwx99yj54q9-fuse-2.9.9.drv /tmp/guix-tests/store/xq1mlgk5rw7ka30jdx4aj31sa2grg039-fuse-2.9.9.tar.xz.drv /tmp/guix-tests/store/rrxskzv964zilsi81wwam87ix2yxvr2c-fuse-2.9.9.tar.gz.drv /tmp/guix-tests/store/3hpca7axi08bvdy48v06w93l7i656dyf-module-import-compiled.drv /tmp/guix-tests/store/hxnjyfvkybzwxqknil19wflaqad64jxp-module-import-compiled.drv /tmp/guix-tests/store/jv51zjsr89bn1qq2mi0x7kwly2z6fdfs-activate-service.scm.drv /tmp/guix-tests/store/m8h9xj59lg60wiy28j1zma3ijv1x3rhp-activate-service.scm.drv /tmp/guix-tests/store/nnxl09npxwmswwkl6kwa3jzqwf7hh376-modprobe.drv /tmp/guix-tests/store/p7ls8mpcjih57blfqpwq4imfgz7q1j7c-activate-service.scm.drv /tmp/guix-tests/store/s1j1919p16apd1cpxz1ibmj4shc5i18p-acl.drv /tmp/guix-tests/store/7igz808sygf9kiwhj7fjw71s5g0imsx2-module-import-compiled.drv /tmp/guix-tests/store/inki0769jxfpvzbk8jm3sky0mfgj2bk0-module-import.drv /tmp/guix-tests/store/8x5s2m9sqdk6sppr4382b93ygsbaijbw-config.scm.drv /tmp/guix-tests/store/w8wl3kwvpi52iihxa2nsmb1dnwj25fli-module-import-compiled.drv /tmp/guix-tests/store/yy7d38m6nbvhbgsxrvscfv4zl15p97cw-activate-service.scm.drv /tmp/guix-tests/store/lfl2z97yr6r6iva1v2y4c851mcy84xhn-module-import-compiled.drv /tmp/guix-tests/store/r6vm6fspfkdw7nnxmlll33ym6amy9xvs-parameters.drv /tmp/guix-tests/store/ssz3aaqj3nilnisdbxhg072vrwqi96lv-boot.drv /tmp/guix-tests/store/ycf04rpdm68xgpsilwjr77kak8krgwfy-shepherd.conf.drv /tmp/guix-tests/store/05ir128ki8dr8az3x8cx9mi8q64kwjkz-shepherd-file-system--dev-shm.go.drv /tmp/guix-tests/store/rmb5kxipybpdm48wdc208vvyqn78mdma-shepherd-file-system--dev-shm.scm.drv /tmp/guix-tests/store/hnzl0dlchng6cm4fznzxfl3pyjnfl5f7-module-import-compiled.drv /tmp/guix-tests/store/s3w6qpdrf58sqh37nz0wl21r5rharc7k-module-import-compiled.drv /tmp/guix-tests/store/0ca6ykz8b0rpij105amxqs8zcbra70ab-shepherd-file-system--sys-firmware-efi-efivars.go.drv /tmp/guix-tests/store/m60pqqzv507p7i4waffysnpv1pas8xsn-shepherd-file-system--sys-firmware-efi-efivars.scm.drv /tmp/guix-tests/store/3wxv95j50h8xrn3q433rp99271va36cp-shepherd-root-file-system.go.drv /tmp/guix-tests/store/q4nbrgc4fcngi45pv3bsg443zxwdgs8v-shepherd-root-file-system.scm.drv /tmp/guix-tests/store/9zlxc9kgswhccf9192kd9xrk5l9dsi0s-module-import-compiled.drv /tmp/guix-tests/store/wjvppjq14hm9vyymkmd5qsswyy7i17c0-module-import-compiled.drv /tmp/guix-tests/store/4vhn8mvz80advyy97b73grrr3xa3vilx-shepherd-nscd.go.drv /tmp/guix-tests/store/gnmakai7cxbzdkr5sww1wvpwjgqiz02r-shepherd-nscd.scm.drv /tmp/guix-tests/store/527fsfhxc1a9ryn5a8lrdbxs7fy83l64-shepherd-term-tty6.go.drv /tmp/guix-tests/store/h4k92vm8jjx4lsr66mzc65mirip3j4bw-shepherd-term-tty6.scm.drv /tmp/guix-tests/store/4dsmds0m1lirgl0nzdl57n5siwm2mz6d-mingetty-1.08.drv /tmp/guix-tests/store/14ixg3cp2fpdijzbk4d8qn9s9w4g88yy-mingetty-1.08.tar.gz.drv /tmp/guix-tests/store/547904qqk8m4gwqcmq1l48qy65fn7m22-shepherd-console-font-tty5.go.drv /tmp/guix-tests/store/kay6v2f8rhvj72w9m0ya88l519l1nxrd-shepherd-console-font-tty5.scm.drv /tmp/guix-tests/store/9k8abzivz7v3x5m063cs9bnbsgbc0v0g-shepherd-syslogd.go.drv /tmp/guix-tests/store/rl8jfgwli3pfma3clksfld2hl2jrzp67-shepherd-syslogd.scm.drv /tmp/guix-tests/store/apjyy2r0k8s2ki9brz7l6092hdjsiggj-shepherd-urandom-seed.go.drv /tmp/guix-tests/store/024h3c4zjgslinr3nvh41wg6chz9c1ld-shepherd-urandom-seed.scm.drv /tmp/guix-tests/store/arczysi6hsqpawaa2kvsrqzkhhvymmh1-shepherd-guix-daemon.go.drv /tmp/guix-tests/store/m1p951xfjd1nwwlx8b5589f3jz8qqvdz-shepherd-guix-daemon.scm.drv /tmp/guix-tests/store/mwd8vj7h4rslp4qkri4dk8hnrfrj1ql1-module-import.drv /tmp/guix-tests/store/n3rn9ipfychllr8dar2rxcxx43kmxhbg-module-import.drv /tmp/guix-tests/store/ncd2b6k55azqmrzyllsjzdry93l77qn4-module-import-compiled.drv /tmp/guix-tests/store/qa6rw3g1mi42p1nycs51vgcgdaq7yk3d-module-import-compiled.drv /tmp/guix-tests/store/byib2n10y4vamwnc2mcjdll09sbw6z6a-shepherd-console-font-tty6.go.drv /tmp/guix-tests/store/9vhvzlzhz3pdi68rrhhs3kd444gvinzx-shepherd-console-font-tty6.scm.drv /tmp/guix-tests/store/d4llci3g9kqg8flzyiwy09ipkpcc14nm-shepherd-user-processes.go.drv /tmp/guix-tests/store/7kp78i7w8aj42n1d16bmnkbyxqz0f8h5-shepherd-user-processes.scm.drv /tmp/guix-tests/store/fa2ivfg3wxaw1bdq92jgl7hccbhr97c7-shepherd-console-font-tty2.go.drv /tmp/guix-tests/store/9snwb94i9ki1d18cf334ag9h4l3k3kc6-shepherd-console-font-tty2.scm.drv /tmp/guix-tests/store/fdvxw802m7fjxzn8pqdn46szwz47hakz-shepherd-tor.go.drv /tmp/guix-tests/store/jfcldyqrq8gy6dmw6qjv012b8a3bp2n5-shepherd-tor.scm.drv /tmp/guix-tests/store/198dzrpy02dzwkj15xgd08gkdvj7xgzc-module-import-compiled.drv /tmp/guix-tests/store/9mv6h7c6hmfyb1h7vydx0hp55l6my4ac-tor-0.4.6.9.drv /tmp/guix-tests/store/2hfysacigdnpailb80mjjhpxiliyr9j8-tor-0.4.6.9.tar.xz.drv /tmp/guix-tests/store/3a832i01vqlg31s0i89q7n14p50qv2cj-tor-0.4.6.9.tar.gz.drv /tmp/guix-tests/store/yq3pn0f0zbwpnmsqqzr9rnjk6hva273c-libseccomp-2.5.3.drv /tmp/guix-tests/store/p51fxri0mf3jpvif5lqzyiih79aqb1wg-libseccomp-2.5.3.tar.gz.drv /tmp/guix-tests/store/hrzg7y4s26jdcfnv1q4q25j7jq2523a4-torrc.drv /tmp/guix-tests/store/inj46h1xybzwg0myz349bs3sr7pfpyll-module-import-compiled.drv /tmp/guix-tests/store/fk7g2kb2sl9vwx52hyh5p19l9ksssgby-shepherd-loopback.go.drv /tmp/guix-tests/store/fx8kksvnkmalymxdy5q6al4lypygg656-shepherd-loopback.scm.drv /tmp/guix-tests/store/wdqm8d00abcy2f42bd4xl2wgvzp9nwmx-tear-down-network.drv /tmp/guix-tests/store/70212b113v6pbzc9n1avcvv9574bcdw3-guile-netlink-1.1.1.drv /tmp/guix-tests/store/38ajypya8gkjcz69h2ykiz4vvyac60qq-guile-netlink-1.1.1-checkout.drv /tmp/guix-tests/store/rrgm2mnmwsvnk596zmczk01v8fjkmvw8-module-import-compiled.drv /tmp/guix-tests/store/zjdznqsi1w8zwx2zslr7k6064ss1cqk9-set-up-network.drv /tmp/guix-tests/store/fpmxhh6ga5nlz0prh1kf2qc4f8qfpnsw-shepherd-console-font-tty3.go.drv /tmp/guix-tests/store/1hl7s95cnqvbnxlm543c7l33dkhflzgq-shepherd-console-font-tty3.scm.drv /tmp/guix-tests/store/h73ms04dmx1p014idk4k91bpairnil0l-shepherd-term-tty5.go.drv /tmp/guix-tests/store/vx60047x7pmyc4hm8vjdd4jcq70bqk9d-shepherd-term-tty5.scm.drv /tmp/guix-tests/store/hqch2hp1m5llqm0acfasi1xajb6wknvk-shepherd-mcron.go.drv /tmp/guix-tests/store/ijaisd847p10ccmkv04g64vgy72465b0-shepherd-mcron.scm.drv /tmp/guix-tests/store/b43n0fg0fmrn27znbq52mcj88s3mj2ri-mcron-job.drv /tmp/guix-tests/store/hgrp4wgiv8idb9rb0r3568r5nxpqxjxv-mcron-job.drv /tmp/guix-tests/store/if9ayb04iq839vzv37m306y6fifaf7l6-shepherd-console-font-tty1.go.drv /tmp/guix-tests/store/yrcchip5rj5w5fiyz01qcg2p1scd66a5-shepherd-console-font-tty1.scm.drv /tmp/guix-tests/store/jr0mbbpnsg45gjksxppchpkz497qqdsa-shepherd-file-systems.go.drv /tmp/guix-tests/store/i52rzjn72c2cdg9fk3ah922by5pnaynk-shepherd-file-systems.scm.drv /tmp/guix-tests/store/jy1zmy6w6n2b73ccz9fzqfqj718ahz95-shepherd-user-file-systems.go.drv /tmp/guix-tests/store/ysmdg2lv1lfsi3a9dfbj7jmz5xfq6a32-shepherd-user-file-systems.scm.drv /tmp/guix-tests/store/mi34xy94z2idqnbqss3lsrlywv56sc7j-shepherd-file-system--tmp-guix-tests-store.go.drv /tmp/guix-tests/store/5j4ys8qlg5hpgkwfiik0zg95f7iq5px5-shepherd-file-system--tmp-guix-tests-store.scm.drv /tmp/guix-tests/store/nhjsrkydg2j1p54nqy5h2a5azizvd4zg-shepherd-udev.go.drv /tmp/guix-tests/store/v843clfqz2gpjl147fns238qmh75jglw-shepherd-udev.scm.drv /tmp/guix-tests/store/gz0wkf28v9ss6d1m1ahmldss9v7v9nr7-module-import-compiled.drv /tmp/guix-tests/store/kvr4avidix1mdgbcsmszc7yra91fhs6m-udev.conf.drv /tmp/guix-tests/store/yhlcwiwmvy6as110708n8pw02sgpn6sy-udev-rules.drv /tmp/guix-tests/store/5iq94vsvj9g5ylvnsxjk0vhrnjlvyldx-alsa-utils-1.2.4.drv /tmp/guix-tests/store/2bfkk8g82aphfxphbk8ak8lgcqv7wgyl-alsa-lib-1.2.4.drv /tmp/guix-tests/store/bsc41dnqy1g2g0s2g36ai2cambjpmf69-alsa-ucm-conf-1.2.4.drv /tmp/guix-tests/store/q3cf9m524ahanwzkg921s9nzjwmzc5yx-alsa-ucm-conf-1.2.4.tar.bz2.drv /tmp/guix-tests/store/kwcp0mcd5zsg7qzwq4r88kijrpjmvxx8-alsa-topology-conf-1.2.4.drv /tmp/guix-tests/store/zsnmj62w05savi7v9qnyjy3v9abcrpk8-alsa-topology-conf-1.2.4.tar.bz2.drv /tmp/guix-tests/store/p1n4m081mi2nsmfwq0p5zppcg3yg71b5-alsa-lib-1.2.4.tar.bz2.drv /tmp/guix-tests/store/52i08rf16kmpyfxhib1526bgabrn28c8-libogg-1.3.5.drv /tmp/guix-tests/store/16qwdhhkzlkpd8wvsxv0xzqrvg8yc814-libogg-1.3.5.tar.xz.drv /tmp/guix-tests/store/53y6fad0d59jmnkcz544wbq38fjip7zk-libsndfile-1.0.30.drv /tmp/guix-tests/store/lqclr88wcxhj6ijkaqc3sdbfl3sz7ch2-flac-1.3.3.drv /tmp/guix-tests/store/zyanng5z4ksq329x4shlgdr6j5rh8ygv-flac-1.3.3.tar.xz.drv /tmp/guix-tests/store/pkz609irqk1d0lxkzd8krn9z9vpp794b-libsndfile-1.0.30.tar.xz.drv /tmp/guix-tests/store/zg1blp87srv2bw1r5qfz9yhksvjlms30-libsndfile-1.0.30.tar.bz2.drv /tmp/guix-tests/store/wijgv951ph20wn4l43yz4rj2mv2axcjy-libvorbis-1.3.7.drv /tmp/guix-tests/store/7qik7fi5i09c9cd6b71hfhg617dfpnb1-libvorbis-1.3.7.tar.xz.drv /tmp/guix-tests/store/yf42yz2b3cam6cagcmdzhk5vpwjkps4p-opus-1.3.1.drv /tmp/guix-tests/store/dz208rym5vxhkhl6zx9v2fvs1f8ks650-opus-1.3.1.tar.gz.drv /tmp/guix-tests/store/k9nqv6vwwgl0n8gyz8nvb1zgmi6rbvff-libsamplerate-0.1.9.drv /tmp/guix-tests/store/zg3djdgc9s0ybi3blbzwdkz8dbqpgnfq-libsamplerate-0.1.9.tar.gz.drv /tmp/guix-tests/store/pcblm0sf6g0dyx84plphsfrd57wbyhhs-alsa-utils-1.2.4.tar.bz2.drv /tmp/guix-tests/store/lylq6cmrlfgivgqw07lpk3x36r083biy-crda-3.18.drv /tmp/guix-tests/store/0iy3553svn6qaxsqi34sqmqvspxy380m-crda-3.18.tar.xz.drv /tmp/guix-tests/store/z76fdjjwhsyjfp13g6ybycbg5nnfdggn-crda-3.18.tar.xz.drv /tmp/guix-tests/store/8vaqpglndqjj0lkgjndsg0hdp916jhjr-wireless-regdb-2020.11.20.drv /tmp/guix-tests/store/g1nfrbbdvddf9b4l5xbkgvpfhcdmnbmd-wireless-regdb-2020.11.20.tar.xz.drv /tmp/guix-tests/store/v4xazqky7750pc2qqf65nxhy8hzan2hv-wireless-regdb-2020.11.20.tar.xz.drv /tmp/guix-tests/store/wkkacc1g5x79gmxzisrm1hiwvyd64z4k-90-kvm.rules.drv /tmp/guix-tests/store/x9hvp3w74msfmhs3xi75rkf66chaw3si-module-import-compiled.drv /tmp/guix-tests/store/xn7835n120pycqzqhfbsszk555hf0bvn-lvm2-2.03.11.drv /tmp/guix-tests/store/pjm81nfsixr57mzwv6j3n090sy6b204x-LVM2.2.03.11.tar.xz.drv /tmp/guix-tests/store/qbnmrqyxy66rnjxyv3xmcl3cg3184ml9-LVM2.2.03.11.tgz.drv /tmp/guix-tests/store/q22xja91xjgrjpaqvin3m3dla49b21hy-module-import-compiled.drv /tmp/guix-tests/store/pad8kcbkbs2mfgq8i1p4jxmr7c0vybfy-shepherd-file-system--sys-kernel-debug.go.drv /tmp/guix-tests/store/x772778v7ymnbmf6nff5kpvr13hbbxjj-shepherd-file-system--sys-kernel-debug.scm.drv /tmp/guix-tests/store/pas05i4iawcrzw3350h9r98fhj1m25nf-shepherd-file-system--dev-pts.go.drv /tmp/guix-tests/store/5rzi4ah3nah2ll3cc929fd4pdin9kifs-shepherd-file-system--dev-pts.scm.drv /tmp/guix-tests/store/pq15nn0yafddgpjy1dji5xxisinwwa8f-shepherd-virtual-terminal.go.drv /tmp/guix-tests/store/9fd06g155i7qp3aylnahdydypqsj2pfc-shepherd-virtual-terminal.scm.drv /tmp/guix-tests/store/pr1dapi4sz132sn79d256w48cxmfb4wx-shepherd-sysctl.go.drv /tmp/guix-tests/store/jvafzs09sf1rcj3a4prlagx6axbg84s0-shepherd-sysctl.scm.drv /tmp/guix-tests/store/52xsdyhmp3a5bkgj7jv734lrav9rbdnb-sysctl.conf.drv /tmp/guix-tests/store/r7vc685nkwa2v69889231bkchs3kbvry-shepherd-term-tty4.go.drv /tmp/guix-tests/store/3n75qdjnjgrkgcyqf324fq2lzxrzwld0-shepherd-term-tty4.scm.drv /tmp/guix-tests/store/rffxna3gp33708xnvh3k218yhgp4ah2n-shepherd-user-homes.go.drv /tmp/guix-tests/store/f8mnhq1dd0dj03j782rj63446hbb88i2-shepherd-user-homes.scm.drv /tmp/guix-tests/store/awzwm1qisdwgnnk1g39nf7i7dj0d91pz-module-import-compiled.drv /tmp/guix-tests/store/s6lf90dgc1yjrvk78qiiw8bwf26q2i5a-shepherd-term-tty1.go.drv /tmp/guix-tests/store/9820wvllafyjjwki5nq1iqwm0kvv96d3-shepherd-term-tty1.scm.drv /tmp/guix-tests/store/wimi96my5cykp1vc5kixbyixfn2kkkf1-shepherd-term-tty3.go.drv /tmp/guix-tests/store/k5lvc8dasymviiakx0czajyxi0wkb4rv-shepherd-term-tty3.scm.drv /tmp/guix-tests/store/xjjfqkpvx5ycfgybsdc3k1nfy4cprj5z-shepherd-host-name.go.drv /tmp/guix-tests/store/by6kgpdrxvddir5g6k4c8kbnyjjqxc8l-shepherd-host-name.scm.drv /tmp/guix-tests/store/zd9fiqilx60yn7czrili99f5mwvikmx6-shepherd-console-font-tty4.go.drv /tmp/guix-tests/store/4y1w31irbp5ffc9zgajqr4hhm9fv4qf0-shepherd-console-font-tty4.scm.drv /tmp/guix-tests/store/zdsljy9svpkrdgqahcp79dfvi71jywa3-shepherd-term-tty2.go.drv /tmp/guix-tests/store/2cwsmqjlknkgc63dpvm5v2q0ikzgdvl4-shepherd-term-tty2.scm.drv /tmp/guix-tests/store/zy7dc1pjjii1vz875wcm83aywz0g0nl4-shepherd-term-auto.go.drv /tmp/guix-tests/store/agay8h16f1nnvhp4l1fni967l3z0fc3g-shepherd-term-auto.scm.drv /tmp/guix-tests/store/wqjfykadv11c1876h8sr0ahfbwafb326-profile.drv The following profile hooks would be built: /tmp/guix-tests/store/73lirdk43w9p6k1ia4whirssh6m2fsps-ca-certificate-bundle.drv /tmp/guix-tests/store/gvc97b9pdpxkqawd2cixmfqp6z9prw22-emacs-subdirs.drv /tmp/guix-tests/store/mdw090aqgsk16mq57hz5pzwyrr8kdxgv-fonts-dir.drv /tmp/guix-tests/store/rxjdh5w5irhlqqf93hvjsa993c1abfp3-info-dir.drv /tmp/guix-tests/store/s1mx5kn5kyqllqrw5nxd4c02qsnxapfz-manual-database.drv /tmp/guix-tests/store/0apnsl2gwwj6han01d81la1xn91phrqc-linux-module-database.drv + cd /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/t-guix-system-13177 + guix system build config.scm -n accepted connection from pid 13383, user nixbld substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable substitute: guix substitute: warning: authentication and authorization of substitutes disabled! The following derivations would be built: /tmp/guix-tests/store/rwx44df4fzsm9pyj0n9d309780v2v9jr-system.drv /tmp/guix-tests/store/0faq5rk1hscha45yapv1lyc03j267566-profile.drv /tmp/guix-tests/store/03spvwpinh4ysdhs3zfsmxisf5ah84jj-usbutils-014.drv /tmp/guix-tests/store/21pmnj5l8wwv9j6565ami62ql6rdbivp-gzip-1.10.drv /tmp/guix-tests/store/5rffkc4lx8d86gj4fa4rvg0spps1p4v0-file-boot0-5.39.drv /tmp/guix-tests/store/3drxkc76igrw1fi4hblngm7lmwzvhbfg-gcc-bootstrap-0.drv /tmp/guix-tests/store/d6f0fa8x4if8asg5sf69aqma7nm265a0-glibc-bootstrap-0.drv /tmp/guix-tests/store/jvxnnz4bmgqfh6m8cgmmlv94pi68gwxl-glibc-2.25.tar.xz.drv /tmp/guix-tests/store/hcvxcl1hwj875z5f1h35f32khxafr9lc-gcc-5.4.0.tar.xz.drv /tmp/guix-tests/store/5h5z1far1zz5lb9z2aqj8w711z3qisnx-module-import-compiled.drv /tmp/guix-tests/store/6lwnac3ga3qs598j99n3vfc96fqi554h-file-5.39.tar.gz.drv /tmp/guix-tests/store/8j2q9fv5azb6sclr1b6ypjybpjybwb84-make-boot0-4.3.drv /tmp/guix-tests/store/irmyrsqw0m0mk8swb00ryf3ic6pqw2jf-bootstrap-binaries-0.drv /tmp/guix-tests/store/4x2n9xjb3qqm34vc9k2c1w9b9xm46agx-static-binaries.tar.xz.drv /tmp/guix-tests/store/msy4c035ih8ss7w3mazn0y6cvrwrmazj-binutils-bootstrap-0.drv /tmp/guix-tests/store/zr43wy48bl6lhld21ajilvj895q7jsqa-binutils-2.27.tar.xz.drv /tmp/guix-tests/store/vdg7a9kpy8rs12abqjyxr7d5idcwci68-make-4.3.tar.xz.drv /tmp/guix-tests/store/wy7isgmjyiwbzsyx1f3bmhw4kdi65l7i-make-4.3.tar.gz.drv /tmp/guix-tests/store/5rx3i7c94a787lns10xwgim1hq84m7v1-binutils-cross-boot0-2.37.drv /tmp/guix-tests/store/gp2iyp8vzj2904mha81vsx3a5l9ndkcq-binutils-2.37.tar.xz.drv /tmp/guix-tests/store/vj5dqqhka5p7qi20kh32396bd1y127al-binutils-2.37.tar.bz2.drv /tmp/guix-tests/store/p677ngbz80k4ld9dn87s65ni32v6lmjn-diffutils-boot0-3.8.drv /tmp/guix-tests/store/cpsrirfv2871swvx7slsdabnyma4h781-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/xsmnf0jmi7p4n60i8p1mkvpm05sp6a6w-findutils-boot0-4.8.0.drv /tmp/guix-tests/store/xl0b647qzhamil3s0w46970xp4lqzc09-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/m0hxwnqk3j0v7333n3ii2jqix1da025s-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/5w71j1ahwqsicxm3kvwcfak690fsdwm3-guile-3.0.7.drv /tmp/guix-tests/store/00rl26bz9iy645lfvjz3wz8zv2813cjj-pkg-config-0.29.2.drv /tmp/guix-tests/store/bhan5y2nxnwnz9bcxdy76h9rfq20wml2-pkg-config-0.29.2.tar.gz.drv /tmp/guix-tests/store/dp1ja89a8vkxgf1p4jc6r5ymaf3zf8qc-linux-libre-headers-5.10.35.drv /tmp/guix-tests/store/0nqx5jlmc5mk9nrfvab8sn3g33fssycs-m4-boot0-1.4.18.drv /tmp/guix-tests/store/6d9fq4zyksi8my2avvmf4ccca6x353am-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/wfv4vwpw1xv13b7yff3siichmhifi8j3-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/cxfvgfda8b95ld7yb98472bzr487akfl-bison-boot0-3.7.6.drv /tmp/guix-tests/store/dsmw8wfsxlq3nk1vrc8ni7a6387k0695-perl-boot0-5.34.0.drv /tmp/guix-tests/store/q45vcwi1vdnl1ivwaxk6v2xcd8xa4ang-perl-5.34.0.tar.xz.drv /tmp/guix-tests/store/aaqnz7s3w73pb173krlx673qpmism8f5-perl-5.34.0.tar.gz.drv /tmp/guix-tests/store/mzllf2r2i5rzjqy79fs13ny8vgn86qpr-bison-3.7.6.tar.xz.drv /tmp/guix-tests/store/k8iplw0kw2dmly8v5lamgplx04ggn15j-linux-libre-5.10.35-gnu.tar.xz.drv /tmp/guix-tests/store/s9pg6r6jza7r5f3m94k7sgwpynwpxwcd-flex-2.6.4.drv /tmp/guix-tests/store/d1zzhllih6bhzvnc80jsm43r9kmflr9z-flex-2.6.4.tar.gz.drv /tmp/guix-tests/store/ffc5rg7wnrjrpzrmbg22h351280xijm6-ld-wrapper-boot0-0.drv /tmp/guix-tests/store/fm6ink06dpxk87bqc6lgxx8ky74ia62x-gcc-10.3.0.drv /tmp/guix-tests/store/7khqqxqxi03q8abfi49crphk30wm65i8-mpc-1.2.1.tar.gz.drv /tmp/guix-tests/store/97d6m61x48g8n8fnrn0pqrhx2209110m-gcc-cross-boot0-wrapped-10.3.0.drv /tmp/guix-tests/store/ah3g5mnihalpr1sccip82sxfrr0vr1pz-gcc-cross-boot0-10.3.0.drv /tmp/guix-tests/store/a4v61rcb2masds25m6i38bk66xn7zgbg-gmp-6.0.0a.tar.xz.drv /tmp/guix-tests/store/xmsm1kzrmrari5chwcil4dgmrq8xjcqf-gmp-6.0.0a.tar.xz.drv /tmp/guix-tests/store/flzxa3z4k5qv55km5gwn4w4b5ncnsmwm-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/ix1j66481xr2xy267qj0b8c36a9yd7g7-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/vasq2n0j43fxvhr1gz3r8h7gfasq8j5r-libstdc++-boot0-4.9.4.drv /tmp/guix-tests/store/4pn6afwyavhi2fwggq250b9dkf4j9lj8-gcc-4.9.4.tar.xz.drv /tmp/guix-tests/store/ciw3b48qvhb5fx35hllb74czfcjp2zn0-gcc-4.9.4.tar.bz2.drv /tmp/guix-tests/store/z4vfg9vv6w1ak3j942b50z7a86f37qn3-mpfr-4.1.0.tar.xz.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/gm3v790gmxrcssw929w1dhinzph12gdy-gettext-boot0-0.19.8.1.drv /tmp/guix-tests/store/lvp6i19y0xxszb921nckl5hy0jwp3dlh-gettext-0.19.8.1.tar.gz.drv /tmp/guix-tests/store/gx0cfkdlx8ani5v80y7rcn25wcsak11j-texinfo-6.7.drv /tmp/guix-tests/store/v1diq15pcscjp1g1nba5difq7i5a8444-texinfo-6.7.tar.xz.drv /tmp/guix-tests/store/hnr0xg3bd3ba4qzrc71br1pywls01z9r-python-minimal-3.5.9.drv /tmp/guix-tests/store/dl06g703krs6wsjh13cil554baifr5v2-expat-2.4.1.drv /tmp/guix-tests/store/gckzpnh0im4a98l1c5r44g3442b20f13-expat-2.4.1.tar.xz.drv /tmp/guix-tests/store/ma9dns8jdkkvy3kvbiv0h6wbac88pi8a-Python-3.5.9.tar.xz.drv /tmp/guix-tests/store/qy27syldpl7c5amch4fx70b79pmxh0fi-Python-3.5.9.tar.xz.drv /tmp/guix-tests/store/j8bhbikxlay3j3q41qw0yl0gay5yrs6w-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/1yl394nf5ndwikn9c48d17fmbxfvcbgk-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/lrl0dhhb4072c0hrs81jl5sgks7a5nh4-bash-static-5.1.8.drv /tmp/guix-tests/store/0s1f5gk80rgqpvjbxf4ayf7vnjw71mxr-bash-5.1.tar.xz.drv /tmp/guix-tests/store/0614ryjqzr489495nq6d99jajmhqjiab-bash51-003.drv /tmp/guix-tests/store/2agrqh7i0sywnfv7f7b9m7mmgvmn8skw-bash51-007.drv /tmp/guix-tests/store/2rs4l6v390s5ybkypvpdikk34bfsb2wi-bash51-008.drv /tmp/guix-tests/store/8cd3hyh9h1dj3cndzrjwg82ry3k9fywr-bash51-004.drv /tmp/guix-tests/store/8cjan671yq08m76d7l0qrfjg5kg0i0f4-bash51-006.drv /tmp/guix-tests/store/90is400r9i58rv532wj0cm1yxyhfsw1k-bash51-002.drv /tmp/guix-tests/store/agfndag1jx1rlxnjzxm3ab4ncyk0ihb9-bash51-001.drv /tmp/guix-tests/store/hain1z6c9v2zgkxm57vabb8qiasgc44r-bash51-005.drv /tmp/guix-tests/store/vpym9p0qg5brhi62jqzjhggar0ika4zc-bash-5.1.tar.gz.drv /tmp/guix-tests/store/36i906s7ib2nj0gzzvw0hfyirrbx5lp7-glibc-intermediate-2.33.drv /tmp/guix-tests/store/7ky23iywrg5winwlpbgj5hl129qx13jw-gcc-cross-boot0-wrapped-10.3.0.drv /tmp/guix-tests/store/36i906s7ib2nj0gzzvw0hfyirrbx5lp7-glibc-intermediate-2.33.drv /tmp/guix-tests/store/d1b92fz4y431r62xsvkqbdd13i93lzfh-zlib-1.2.11.drv /tmp/guix-tests/store/ji48bhh10nv6djiz16a1cljnq08fdck7-zlib-1.2.11.tar.gz.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/fbn7qarm6adak53jg4dz1gy4p064gy9y-binutils-2.37.drv /tmp/guix-tests/store/lrc73gzhggn1l16dlsdj1lv34qsjfan7-libstdc++-10.3.0.drv /tmp/guix-tests/store/r94pzhn6yx0knmnlbn49134yrvwbs29b-ld-wrapper-boot3-0.drv /tmp/guix-tests/store/gkl3anjfh20qqp73mq0hmdknjsqp1zfa-bash-minimal-5.1.8.drv /tmp/guix-tests/store/4lxlikg47slp0mrcd25rlcm6qcii6kqj-libunistring-0.9.10.drv /tmp/guix-tests/store/w9zlnd1lsfx9i24f59im4zfrgr86qyif-libunistring-0.9.10.tar.xz.drv /tmp/guix-tests/store/gc355jps6lvgnhny001hs7zf7k6rbn3m-libffi-3.3.drv /tmp/guix-tests/store/40qj4rc7c1rjhbh4yl21z5qi8md2ialv-libffi-3.3.tar.xz.drv /tmp/guix-tests/store/1km3h7zb41pjrldqgq6gjny5f0aissi0-libffi-3.3.tar.gz.drv /tmp/guix-tests/store/nrn3byjrdgf1c0icybmisrkcn28ypjyx-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/7gnpyf9a1i789jvz9j8cr69jaj0x5p28-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/rcp4r9nkzi1jhb4z8bgmhq0cmqlmgqxa-libgc-8.0.4.drv /tmp/guix-tests/store/ifxf227928p46a44kadh3qwc3xgi7kll-gc-8.0.4.tar.gz.drv /tmp/guix-tests/store/91z5zk9cv2bryzxa94zqpbph3i5x0v0d-gzip-1.10.tar.xz.drv /tmp/guix-tests/store/bmzp76q0a1ihpd044dfjj160wb8fqgs8-grep-3.6.drv /tmp/guix-tests/store/2bxdmf4galrb85yv3gkdhkrcw8jxyidg-grep-3.6.tar.xz.drv /tmp/guix-tests/store/1zk1y70l49d03g9czi6w1pzngc43g212-grep-3.6.tar.xz.drv /tmp/guix-tests/store/dyvkgvsbx1iz19ad4vmjp8f25k70bziw-module-import-compiled.drv /tmp/guix-tests/store/rj6lyl5dpik9kp20q04lbpr1aq6jx466-glibc-utf8-locales-2.33.drv /tmp/guix-tests/store/3xx3dcm5zyfgjkvyal7azvkr13981w4j-module-import-compiled.drv /tmp/guix-tests/store/6623qs8y2ddd3fbgy4fhagkphx28pdq6-gzip-1.10.drv /tmp/guix-tests/store/m0xiw3dznzaaxw8izp2ywc1hc5hd3blj-coreutils-8.32.drv /tmp/guix-tests/store/afbnqhzv3bam6n593027krw63kjlppd0-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/bik73j39d1bb6ksn3x2xdc9h133kiigf-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/50h57gnjb225z2qzh580zcpqniiz07jb-diffutils-3.8.drv /tmp/guix-tests/store/55n6pa2bks7fk13p12bchw8lpi2sy88m-perl-5.34.0.drv /tmp/guix-tests/store/p0p0ab2zq1p1332h5x07wixh0r7am998-coreutils-minimal-8.32.drv /tmp/guix-tests/store/z2x6zgpv6gzyp12b4a5ikr6n75yws86b-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/6ank9bknb1f95kcvir5v0jnpzxa07ir3-tar-1.34.drv /tmp/guix-tests/store/vgkjb9gr1mc39k5c46arbjbks15b35cj-tar-1.34.tar.xz.drv /tmp/guix-tests/store/bnnng57rswby8xhvzy9vjwmwh1xc80m1-tar-1.34.tar.xz.drv /tmp/guix-tests/store/8k44mfp0hsvy3q4yxfrb0m6495zjf7dp-pkg-config-0.29.2.drv /tmp/guix-tests/store/cj7y0ngqdj3r2yx6grcqb1ppkgpyb8b8-bzip2-1.0.8.drv /tmp/guix-tests/store/5dpcig3kzm5vrskw80977ifgblkcffwr-bzip2-1.0.8.tar.gz.drv /tmp/guix-tests/store/dpgm59v7m8p8hi1ci2jv43a84l67qlqa-file-5.39.drv /tmp/guix-tests/store/g3vzcjpysp0hcl7wnwjykpi3ps1fgjyk-make-4.3.drv /tmp/guix-tests/store/9mk3x98kxqdz034rj1rmilij0grz3kc7-pkg-config-0.29.2.drv /tmp/guix-tests/store/g6hrlky5sy7nz3kg0whxq44xfpc6r8z8-patch-2.7.6.drv /tmp/guix-tests/store/600hnwvm1w09da6mrjfdvqkl0ld96gg7-ed-1.17.drv /tmp/guix-tests/store/5z89n7v0b8mnswpaiw3j9anva591lbva-ed-1.17.tar.lz.drv /tmp/guix-tests/store/6zfa9zfpig9kxc1ciaxhxlif7rj96h6k-lzip-1.22.drv /tmp/guix-tests/store/i2a9klhfkfyfrqfsqbmyy60mdgbxjb34-lzip-1.22.tar.gz.drv /tmp/guix-tests/store/a7b5882ma5bii2isrc81wad9qig922m9-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/h9837470b7xbdc5045rfq4q8p50pnayr-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/jqlmsrpnnww1qq08n9dm8wnk4y2jcl8f-findutils-4.8.0.drv /tmp/guix-tests/store/p62d7v83mfzh9q2gr238iw1iwzaa54bb-gawk-5.1.0.drv /tmp/guix-tests/store/jnl5s25mlvhhx7513mf7wxnjf9k12bwb-gawk-5.1.0.tar.xz.drv /tmp/guix-tests/store/lddc2s21apl8jzayr0qh8z4jv37qzgk6-libsigsegv-2.13.drv /tmp/guix-tests/store/p7ch1zpda76ng44lcylkmvkqj9p6rrbj-libsigsegv-2.13.tar.gz.drv /tmp/guix-tests/store/xdjpbx97b8xwxv0y5f3vbj269512m5za-sed-4.8.drv /tmp/guix-tests/store/a8fn7nd882wxpcxmfmlhdy9nn3hxq3h5-sed-4.8.tar.xz.drv /tmp/guix-tests/store/6a35xdllgbxwfk369rmz03qqh76m1i83-sed-4.8.tar.gz.drv /tmp/guix-tests/store/zirq8ypbjch79fc9xrkpm0d6lbb9im9q-ld-wrapper-0.drv /tmp/guix-tests/store/zvam0j9fwpnd11c43lawwamw1fxhdq8z-xz-5.2.5.drv /tmp/guix-tests/store/c2p3ba4bkm2ddllr61lf83ksy2ji326g-xz-5.2.5.tar.gz.drv /tmp/guix-tests/store/bwd5pzh2j9xqi7k5nndj52a78y0sq61a-python-3.9.6.drv /tmp/guix-tests/store/12ai3gxrj1m3ij8gv22sb5dgcpv3ng20-util-macros-1.19.3.drv /tmp/guix-tests/store/z4z0ha93rk5m4x9grynk62p7j054kry1-util-macros-1.19.3.tar.bz2.drv /tmp/guix-tests/store/19cjj4qn5nplk3x2sfammqpg9hlf9sbr-Python-3.9.6.tar.xz.drv /tmp/guix-tests/store/iria8q3qidpz2bjm49v2winn3vjxypp8-Python-3.9.6.tar.xz.drv /tmp/guix-tests/store/1s6xwrs17i1nl62vabiz3gbgf3ljld88-readline-8.1.1.drv /tmp/guix-tests/store/ckb9nzpjh8qcrxi0izalc673a372zxsj-readline-8.1.tar.xz.drv /tmp/guix-tests/store/4zjjf1h3imnzd43nzbr29ws926chi6gy-readline-8.1.tar.gz.drv /tmp/guix-tests/store/pgz10hw4hia626xbjlyhzir277nw2934-readline81-001.drv /tmp/guix-tests/store/wc435c6jb85m8f3xmcz5avwnqza1id91-ncurses-6.2.20210619.drv /tmp/guix-tests/store/3dgf4kwi1nvcy95nn020di0klkjg9s19-ncurses-6.2.tar.gz.drv /tmp/guix-tests/store/rzh9fakqivjd02wpx26wis4dh5mhmjjr-ncurses-6.2-20210619-patch.sh.bz2.drv /tmp/guix-tests/store/6d8ybzkz8rm5vcl79664443pqpa2hf2x-libxdmcp-1.1.3.drv /tmp/guix-tests/store/fkm1lq1yjjyi0g04qpp94c2g9z6zfq6v-xorgproto-2021.5.drv /tmp/guix-tests/store/gfn93s2dy2z4rqrbpmj3pz8gwfaf4wkd-xorgproto-2021.5.tar.bz2.drv /tmp/guix-tests/store/j63dxva124aj5n41h0g0g3h62wwdl04q-libbsd-0.10.0.drv /tmp/guix-tests/store/4qamifn14izjih5n74kaym42g0gbh1x3-libbsd-0.10.0.tar.xz.drv /tmp/guix-tests/store/jqgv2x635lvd45lkgizn8ww88mm38pkl-libXdmcp-1.1.3.tar.bz2.drv /tmp/guix-tests/store/8jiqwcn2fxs6zjp71pr4iz0l7kq62jgi-zlib-1.2.11.drv /tmp/guix-tests/store/amyqdn43835z8n4nr7mnm2v8438bfkrg-unzip-6.0.drv /tmp/guix-tests/store/5sfchzcg8c9jdly24h3hspbddfcxrgmv-unzip60.tar.xz.drv /tmp/guix-tests/store/g1laxgrn8h1zyrjy9gd9901sjzx69b33-unzip60.tar.gz.drv /tmp/guix-tests/store/hplrcllrlfjklmp6wi4pxq482gnvbqmi-bzip2-1.0.8.drv /tmp/guix-tests/store/b2axffmpy7xpra7ad1q05j47nvr1wvk4-libx11-1.7.2.drv /tmp/guix-tests/store/8kr3mbm12vs5h453w43mbv24qh2i369z-libX11-1.7.2.tar.bz2.drv /tmp/guix-tests/store/l1vjnxwvn0n2pj717i8ankxgqr37qjaq-libxcb-1.14.drv /tmp/guix-tests/store/1sv0g93b0fpbsqm91qrd8rzsi4ghprg1-libxcb-1.14.tar.xz.drv /tmp/guix-tests/store/8ngxgsybz3sfw773wj43v9hfdi8gk1m6-python-minimal-3.9.6.drv /tmp/guix-tests/store/c9lcckp47bak9j8ksxjc6lac7fhlqi8r-zip-3.0.drv /tmp/guix-tests/store/ywkmbnkp6n7jpqx1j1q80lha47ivmr3a-zip30.tar.gz.drv /tmp/guix-tests/store/k9jkyk4qwbcwh9nd9yvhghgkmpz8wrg5-libffi-3.3.drv /tmp/guix-tests/store/94iz0h14l7wvg9m7kwv9sycs0bq1khnb-libffi-3.3.tar.xz.drv /tmp/guix-tests/store/kkly0bjdn3vckm8daniz6y9jrs42idz0-expat-2.4.1.drv /tmp/guix-tests/store/lxp25j1rqh9g4akh9ya7ck8vhaiz0q8k-tzdata-2021e.drv /tmp/guix-tests/store/g6ssndxfwf9f2584zdyvd85hkxxhgs02-tzdata2021e.tar.gz.drv /tmp/guix-tests/store/yyajwl02cfrwaprvxxbn96wy6nzzgv6j-tzcode2021e.tar.gz.drv /tmp/guix-tests/store/npdcrdnmz4xc181ndn4lz5qy36ai2l5v-openssl-1.1.1l.drv /tmp/guix-tests/store/hwppn7f1mws18zsk2n53klrwlpmlr124-perl-5.34.0.drv /tmp/guix-tests/store/gqx7l2gzp88gif0az3dqg0r3wl0yij3w-coreutils-minimal-8.32.drv /tmp/guix-tests/store/jcn6z8hnhyls6g48hk8y5x5kzhliv6d5-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/wb6kx05hi2a99pbcac0i6yd176sll04i-perl-5.34.0.tar.xz.drv /tmp/guix-tests/store/w49g2dpvf7ryrifm52gyv43mjm9gmadq-openssl-1.1.1l.tar.xz.drv /tmp/guix-tests/store/9cyf1qifhj2h699r562q4lflx66bqvws-openssl-1.1.1l.tar.gz.drv /tmp/guix-tests/store/ggdnn1b7zfnixx3y8p7pa5f7rrslgil0-xcb-proto-1.14.drv /tmp/guix-tests/store/4g0ciqbdh73xkcx6iyzvxx458fy72vj6-xcb-proto-1.14.tar.xz.drv /tmp/guix-tests/store/nicc7434l857m6pn1nldrl1iycvfa6z2-xcb-proto-1.14.tar.xz.drv /tmp/guix-tests/store/w0q72700i2v48ik05jaak38g4n1340pk-python-minimal-wrapper-3.9.6.drv /tmp/guix-tests/store/xdk1lfrcd51g7i2i7lkmbyjpyzipc2zm-bash-5.1.8.drv /tmp/guix-tests/store/fshyvm6adcq7hw62v89zisypdl5ilxd9-bash-5.1.tar.xz.drv /tmp/guix-tests/store/vkixsak7qv5jsim76sa7zkq0sjm8ffv0-libpthread-stubs-0.4.drv /tmp/guix-tests/store/hwdxl7fny9sh7034hfkcxjma8pcy107n-libpthread-stubs-0.4.tar.bz2.drv /tmp/guix-tests/store/w0dwmy34rs10n7rh100j3c1v7fdk1q95-libxau-1.0.9.drv /tmp/guix-tests/store/5fdjjbsmgaf73lmfbwp1syzi9dpfj4ki-libXau-1.0.9.tar.bz2.drv /tmp/guix-tests/store/z4scfly9fws2q3k097x2fiyml2xjms6q-libxslt-1.1.34.drv /tmp/guix-tests/store/0fgn8iqagrz9d8hzakkjbcfyh95l7mm7-libxslt-1.1.34.tar.xz.drv /tmp/guix-tests/store/1da1kh5yvmxq3kspiqgsfdnrnqrh17qi-libxslt-1.1.34.tar.gz.drv /tmp/guix-tests/store/8l20rv7jrwmb0lbrljj1q16dlqr5gsb0-libgpg-error-1.42.drv /tmp/guix-tests/store/k1wvwaxbn0zxdkn42ipghkjk3ralg5db-libgpg-error-1.42.tar.bz2.drv /tmp/guix-tests/store/lyb9a6nkfl8g0bgyjnn239w8ikrjjgib-gettext-minimal-0.21.drv /tmp/guix-tests/store/3hdq83yb29ijw91bqijzx896y06a11m5-gettext-0.21.tar.gz.drv /tmp/guix-tests/store/3w6zpyvj10b7yj0zjskixwkxaf49q48w-libunistring-0.9.10.drv /tmp/guix-tests/store/hizh2pv4afqhci3fspmnwkl24qvz7mmf-libxml2-2.9.12.drv /tmp/guix-tests/store/20icgpa30z6rlkbqwn141p9pbi14n37m-libxml2-2.9.12.tar.xz.drv /tmp/guix-tests/store/7rpjscyfv3gwj8fwc39xhymq0qxrngrh-libxml2-2.9.12.tar.gz.drv /tmp/guix-tests/store/fy16mi1xm2vmbhj017ggfxg4a0h77nim-xz-5.2.5.drv /tmp/guix-tests/store/kjfzhznvhq6ygrqn76zwxpnyq746n3az-libgcrypt-1.8.8.drv /tmp/guix-tests/store/0272fnn9cjcp9lkv586jsim8qq7aq8if-libgcrypt-1.8.8.tar.bz2.drv /tmp/guix-tests/store/m79hnhjw3i1y99xwf7rg771xhf99hdvy-xtrans-1.4.0.drv /tmp/guix-tests/store/8jwhbqwafy7haqjkk15bmx8cg1ybyhp7-xtrans-1.4.0.tar.bz2.drv /tmp/guix-tests/store/di8hlsnfacip72sxzhi8k8fd0pzrv7zk-gdbm-1.20.drv /tmp/guix-tests/store/7yjcgjpgnh7szk10rdki8wqpnvnzhs8b-gdbm-1.20.tar.gz.drv /tmp/guix-tests/store/psxi5c3yvv4xm3mif8ddaswmjp0wbk28-sqlite-3.36.0.drv /tmp/guix-tests/store/zf5y36j726cfri6m6c7951hw0i499rrz-sqlite-autoconf-3360000.tar.xz.drv /tmp/guix-tests/store/a84rbsxnyx15jdg82xdn164qa96dnn9k-sqlite-autoconf-3360000.tar.gz.drv /tmp/guix-tests/store/pxrv528rakvqw4sjjlb0wmnvjyia39w9-libxext-1.3.4.drv /tmp/guix-tests/store/73whp8srb8nr5c5zn11xrrq0nl0sa1wh-libXext-1.3.4.tar.bz2.drv /tmp/guix-tests/store/v7y9lvr7ca443v56c3rxvgm1rgwp81ci-tcl-8.6.11.drv /tmp/guix-tests/store/s1g0w4mmh61sjiwhby8xc5hd8jnx46xy-tcl8.6.11-src.tar.gz.drv /tmp/guix-tests/store/xmb8zw25ydf9qncq91waj3c4hpdnbsjh-tk-8.6.11.1.drv /tmp/guix-tests/store/1kk2vqp36s9d5594hbd40f2pbzls7xnz-tk8.6.11.1-src.tar.xz.drv /tmp/guix-tests/store/8dnfigpzdy1hdhfa46gix97zfnvn2lv7-tk8.6.11.1-src.tar.gz.drv /tmp/guix-tests/store/2lbg1pwja5lnn0jd69pr7rqc1wf73mn4-libxft-2.3.3.drv /tmp/guix-tests/store/a42jslaiw3n7pbr73f9nqx5jga5lny9b-libXft-2.3.3.tar.bz2.drv /tmp/guix-tests/store/g1cg0xh5ii9mc9zwxf0ahlfj74zr9r5x-fontconfig-minimal-2.13.94.drv /tmp/guix-tests/store/b081xw509nqg9jchl062lllxsp3gixwf-font-dejavu-2.37.drv /tmp/guix-tests/store/0dm5a4akpbvz5adfck7z5n71k3grnq6h-dejavu-fonts-ttf-2.37.tar.bz2.drv /tmp/guix-tests/store/bd7scd6k3x51i3y9r7gbajqhd4a8jq7y-tar-1.34.drv /tmp/guix-tests/store/3hbcvhf4yl83hy918rv05rfq0yg16grv-tar-1.34.tar.xz.drv /tmp/guix-tests/store/bw6h4j46crzwmw15xq1mj4fg2hwym9xi-module-import-compiled.drv /tmp/guix-tests/store/kwcb79jcnimag8dsp16p0xyivpz4yf9c-gzip-1.10.drv /tmp/guix-tests/store/gnn656w5ai6h3y71lzq6aflc69p5b8si-freetype-2.10.4.drv /tmp/guix-tests/store/913xvnkyjyr9wpy5yyq4ald01vynvxj2-freetype-2.10.4.tar.xz.drv /tmp/guix-tests/store/p218ymga1ixpjhqvkkwx5jr74ln7qcy7-libpng-1.6.37.drv /tmp/guix-tests/store/ds8l06mgv1llghrqqydj8v244ck0gss0-libpng-1.6.37.tar.xz.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/3y8z12v0g2ai2hr9rfwlrvm25dxz3bm4-util-linux-2.37.1.tar.xz.drv /tmp/guix-tests/store/ksjqykwy7gykgdpjyc01bdh2fg3mmblr-util-linux-2.37.1.tar.xz.drv /tmp/guix-tests/store/h8828pl50ix2h5p87vykbqak1v9zq4rm-file-5.39.drv /tmp/guix-tests/store/z131mia9hl1qclyhsfyhh9jxm04c9gcf-net-base-5.3.drv /tmp/guix-tests/store/1b9jlbrqhjl1f6lmhb24h7v88jrsr0xi-netbase_5.3.tar.xz.drv /tmp/guix-tests/store/nh1kzsk0kaip51ys6yigh7za0b4n0abc-fontconfig-2.13.94.tar.xz.drv /tmp/guix-tests/store/3hzm9r3k2gzfinka6m0vfn3ny7fk734i-fontconfig-2.13.94.tar.xz.drv /tmp/guix-tests/store/w537jrzzh9517wcnq8dg4hkcf31yfri6-gperf-3.1.drv /tmp/guix-tests/store/avqyx04y2by5q8sh0bn658dm8l2gbf3i-gperf-3.1.tar.gz.drv /tmp/guix-tests/store/y567js4v5n504frabyip2lfbs3d8c9s9-libxrender-0.9.10.drv /tmp/guix-tests/store/aajf4cc26g4y84h7kzgmsxqz8pkvyica-libXrender-0.9.10.tar.bz2.drv /tmp/guix-tests/store/cm100g7rscllnj0biscirhas9xxri54w-usbutils-014.tar.xz.drv /tmp/guix-tests/store/fks2jq3fqflm3n0fvyrkcr3g4r1kb56z-libtool-2.4.6.drv /tmp/guix-tests/store/bphi7f415ca2fksfcjnixy661321llxb-libltdl-2.4.6.drv /tmp/guix-tests/store/r6d7n4ilf0f7cfaxyyikjcpmvjmcir5r-libtool-2.4.6.tar.xz.drv /tmp/guix-tests/store/g6msfm26i8b5h396504c8110yibnh7l8-help2man-1.48.3.drv /tmp/guix-tests/store/0d6iv542mz1li1lai6v0dc6pzikq5b8r-help2man-1.48.3.tar.xz.drv /tmp/guix-tests/store/7xam65p8mwva5k7xf7fi931600x5qi93-perl-gettext-1.07.drv /tmp/guix-tests/store/468lblrdf3cv2w8a3j3r48blb7vb1ymk-gettext-1.07.tar.gz.drv /tmp/guix-tests/store/5bb0bvrqz67ijc9ihw938dlb0rrh0srw-module-import-compiled.drv /tmp/guix-tests/store/pl3xwmvlg60isx6aq8gn52h7jamq0c07-m4-1.4.18.drv /tmp/guix-tests/store/xjsp9pbxvr0hwpi5ykzlz1kinkjcxybb-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/pnhz6swwip33aa2pzp16jqjb6p1nvcaa-automake-1.16.3.drv /tmp/guix-tests/store/pgvp468v34dplcwzcw4km0j03wj73lz6-bash-minimal-5.1.8.drv /tmp/guix-tests/store/pwnhk4lmjcb626qj1d9l4zhi87gfns5p-autoconf-wrapper-2.69.drv /tmp/guix-tests/store/2pqyydqw0z0zf2vhdw6xs3wfnbhza0qd-guile-3.0.7.drv /tmp/guix-tests/store/azrmgrz2mshmic3hmiwmbl81x6v719d0-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/c7dmh3kaihk8n1ya0b4bqdmgmjjzyham-libgc-8.0.4.drv /tmp/guix-tests/store/dwpdx1cxzk3yxxlxzpxl7ykj3hsqx6ky-autoconf-2.69.tar.xz.drv /tmp/guix-tests/store/ry30lchbhfr56ddqxblgdy37ab7irxnj-autoconf-2.69.drv /tmp/guix-tests/store/qry2r79hhzyl31nr6ry1pqs4b86ykv09-automake-1.16.3.tar.xz.drv /tmp/guix-tests/store/9mhn9vqx0x9smnqkgd609mrh9r3m8w38-automake-1.16.3.tar.xz.drv /tmp/guix-tests/store/r4rjin6gzz0bcaiwmsb2hvgcjq7hmag8-libtool-2.4.6.tar.xz.drv /tmp/guix-tests/store/nyvbwmp5r4fvhvzikcf8b4kig7pd3g3g-libusb-1.0.24.drv /tmp/guix-tests/store/wminr6yzj5j504qx7s5k0zm1q3l9d8yl-libusb-1.0.24.tar.bz2.drv /tmp/guix-tests/store/pryrccddxpjp6rhg9dg63bfj1bxqr9ws-eudev-3.2.9.drv /tmp/guix-tests/store/41lndimrmc5h40wjqwbdbsj98fkmpwgi-kmod-29.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/hiaa99jhg9xibrw26a4gx07ncb1vp42m-zstd-1.5.0.tar.gz.drv /tmp/guix-tests/store/64i36988f5cw6y2cmjyvs70rqxhqxkqc-kmod-29.tar.xz.drv /tmp/guix-tests/store/fplbsi54rvw8krf6rqv86p5514p5lhbk-kmod-29.tar.xz.drv /tmp/guix-tests/store/96qg9y2lrwq5ai7n4dp6n5v5hg1rbhrc-docbook-xml-4.2.drv /tmp/guix-tests/store/4xa6bmg4fysxsi7fcaqcln3dzbch3jbq-docbook-xml-4.2.zip.drv /tmp/guix-tests/store/cm8zp3pqpg7c94yhpzfmkrmhhsny6ykl-python-wrapper-3.9.6.drv /tmp/guix-tests/store/frv94krkjsrdy4n0h78zjhbygv6iza09-docbook-xsl-1.79.2.drv /tmp/guix-tests/store/5c1aprdmpq422i3lz6gavkirf1vz7xl9-docbook-xsl-1.79.2.tar.xz.drv /tmp/guix-tests/store/3bz1xi8mifzvvihbff8fjpp5fs4ybiib-docbook-xsl-1.79.2.tar.bz2.drv /tmp/guix-tests/store/z3fp9gnyy3n3g27jqflhb7l46cqygxww-eudev-3.2.9-checkout.drv /tmp/guix-tests/store/j8rf89mfp8xklyz4c5fwpfrjmcm4031q-eudev-3.2.9-checkout.drv /tmp/guix-tests/store/11jcipdfmlnygkksr489gq0420lsnq7p-guile-zlib-0.1.0.drv /tmp/guix-tests/store/xhx26v8vkr3arnw630z4hjrsf2hzymq3-guile-zlib-0.1.0.tar.gz.drv /tmp/guix-tests/store/1nxdsds0mhd1lbgiar5qrd1yf2fpz4an-gnutls-3.7.2.drv /tmp/guix-tests/store/23j6x323q3rc4nqvapmw41h5p22vcxrk-which-2.21.drv /tmp/guix-tests/store/1nvf74rjkzjxp59kcck0wgjbdfn0vfs3-which-2.21.tar.gz.drv /tmp/guix-tests/store/3wrg5lcgzysjr5srqdfsl61svva1k3ks-gnutls-3.7.2.tar.xz.drv /tmp/guix-tests/store/rn6k3anl07fkgpsqgz9r478vw5dmdy81-gnutls-3.7.2.tar.xz.drv /tmp/guix-tests/store/bha2smigk61y51cl0brvr1ds6wiscrik-texinfo-6.7.drv /tmp/guix-tests/store/bwdfif6x0805bv262gcg26yj0i8pmahc-libidn2-2.3.1.drv /tmp/guix-tests/store/g1gf7w2l8jqi2fvakfla7wsi30idhs1x-libidn2-2.3.1.tar.gz.drv /tmp/guix-tests/store/hnilzisybg688ddgizx3w5d63w8qs05g-gmp-6.2.1.drv /tmp/guix-tests/store/wwlwl85r9hg1cknaw9wjagp2qgqy62mm-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/y5m24mds14ncjlrwldfng8xkmmjhjj3h-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/k3sxxnpd3rpxb6c2idc1k4wj3ll1cyq8-nettle-3.7.3.drv /tmp/guix-tests/store/ash166sr7hzjjfh3kc8qrg8j9zd3bxac-nettle-3.7.3.tar.gz.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/nljx6lmvcpmvhysmykn7p34gbsisri10-socat-1.7.4.1.drv /tmp/guix-tests/store/rkfa70mbh893zvvgzkw7fxjskj27n5cm-socat-1.7.4.1.tar.bz2.drv /tmp/guix-tests/store/rhd80g918d5ig6z136wn6r809s4qp5wk-datefudge-1.23.drv /tmp/guix-tests/store/0yzp4sn3iddyjjszlxffd9n227yvms7z-datefudge_1.23.tar.xz.drv /tmp/guix-tests/store/dwcd2jc7jfnyl8kg4k0hs9722pilczjw-datefudge_1.23.tar.xz.drv /tmp/guix-tests/store/s4gbsg874c932hy6kvxzpv0khfc9ih5p-p11-kit-0.23.22.drv /tmp/guix-tests/store/8jmsds3s0j33mkr6wjni6ywzr0cribzd-p11-kit-0.23.22.tar.xz.drv /tmp/guix-tests/store/sxxpsj6q99zhxxzabqhc4nrk8ri05z55-libtasn1-4.17.0.drv /tmp/guix-tests/store/rbf07kjifkgxbs2dyns6k9qp00i9mm84-libtasn1-4.17.0.tar.gz.drv /tmp/guix-tests/store/vcyfmww6m86bh1hbbkf9c1s1mfcbdbl6-net-tools-1.60-0.479bb4a.drv /tmp/guix-tests/store/09k8xbs5m1d5b5i4xbr5xv4833ps0yyf-net-tools-1.60-0.479bb4a.zip.drv /tmp/guix-tests/store/wdmrfjybsq9nb2v1zagr9nc0gc2amxwf-iproute2-5.15.0.drv /tmp/guix-tests/store/3gzp4wxrxblp5z27kmknjqccg9zwvcan-iptables-1.8.7.drv /tmp/guix-tests/store/3dr5pwp604s695mx7zyzyygm5nfj3kl3-libnftnl-1.2.0.drv /tmp/guix-tests/store/hqadr2qrs8aj4w2cb8bhg49zgndw4vpa-libmnl-1.0.4.drv /tmp/guix-tests/store/zcxykwwyg4hd3a6g18g5hh27gsjmivkx-libmnl-1.0.4.tar.bz2.drv /tmp/guix-tests/store/y46dhypls1ygjnsskm9xm9gz1n6k9y4r-libnftnl-1.2.0.tar.bz2.drv /tmp/guix-tests/store/7vpjgw85wsraa2a7bp7ln5ilcdk3sbvx-bison-3.7.6.drv /tmp/guix-tests/store/90an45ybmxxdk2j5j9fv0ji8q7iyyiav-flex-2.6.4.drv /tmp/guix-tests/store/yzyjm7g0zaa5gzfqyyg2r4nqib0nj27f-bison-3.7.6.drv /tmp/guix-tests/store/znp4jcsv6rjw93am0db8c2smkaywj1ni-iptables-1.8.7.tar.bz2.drv /tmp/guix-tests/store/idxr9ffaks89mrbx1yjly4ibwhif0i0x-iproute2-5.15.0.tar.xz.drv /tmp/guix-tests/store/r754ad1aprcp89353a6qjakps2walryc-bdb-6.2.32.drv /tmp/guix-tests/store/h1wymwl4qwbcapsidm5zzglkhyq0cfpr-db-6.2.32.tar.gz.drv /tmp/guix-tests/store/f6lajahpqi1dd9crj60g1mbkik0yaamz-git-minimal-2.34.0.drv /tmp/guix-tests/store/14ri30vi1hxr0rsjv8pypbgvc4fvkvya-curl-7.79.1.drv /tmp/guix-tests/store/1nxdsds0mhd1lbgiar5qrd1yf2fpz4an-gnutls-3.7.2.drv /tmp/guix-tests/store/6va9q19n8h6j6h1cn9pkb8dwm9f0wvrk-mit-krb5-1.19.2.drv /tmp/guix-tests/store/ji5s8y4cw4nbf83h85h9lzs1fz1ljb0y-krb5-1.19.2.tar.xz.drv /tmp/guix-tests/store/mzyfxingdk4xvk4z37fsbk1192sdmf4w-krb5-1.19.2.tar.gz.drv /tmp/guix-tests/store/8hkyk814a2042g5cbmaz8d37kg6158bf-curl-7.79.1.tar.xz.drv /tmp/guix-tests/store/rr2517yxgyayknjyfv70j79m9k4gfn7d-curl-7.79.1.tar.xz.drv /tmp/guix-tests/store/jjzdbgvha4lxmxgihvm0iyj8hmkr9cap-nghttp2-1.44.0.drv /tmp/guix-tests/store/3qchlvj4csg1nd06ya59lxj5r5qq7bda-nghttp2-1.44.0.tar.xz.drv /tmp/guix-tests/store/4y27gha09kld75zshnmyia57xmq9mjjs-cunit-2.1-3.drv /tmp/guix-tests/store/s98b1fzvmhdziamv2858fz9k6g69xgzb-CUnit-2.1-3.tar.bz2.drv /tmp/guix-tests/store/60z6gh840cqa4lrnzfwx0iw2xnrqghph-jansson-2.13.1.drv /tmp/guix-tests/store/36fdhi8is3d52wcqpjk7sr7xh79xvb10-jansson-2.13.1.tar.bz2.drv /tmp/guix-tests/store/hmz6j0m3l356zwf5qhii500fgbxsl0vd-c-ares-1.17.2.drv /tmp/guix-tests/store/95p5v1wqiih9i1jwnrsc8vzvhjdxl8lk-c-ares-1.17.2.tar.gz.drv /tmp/guix-tests/store/irmq4qan6pd9irm70xalv20ygb1n7vqm-jemalloc-5.2.1.drv /tmp/guix-tests/store/b90sxmfg5bn0qmb6kz9vs2lxy12pq4f6-jemalloc-5.2.1.tar.bz2.drv /tmp/guix-tests/store/kgvidm7g4c95ayvyb9hidjqbrlwq2210-libev-4.33.drv /tmp/guix-tests/store/j9hk17nyqdv3pj81nsa77njxl3pr9jjj-libev-4.33.tar.gz.drv /tmp/guix-tests/store/kyc7hx0zj21kry7mxj8ks6sid1apvl6x-libidn-1.37.drv /tmp/guix-tests/store/6jcak9dw49dz4dl84206wzgr4n09vnk0-libidn-1.37.tar.gz.drv /tmp/guix-tests/store/gnj35c1cx3d65n0nffwb0vjskp8znxj1-git-2.34.0.tar.xz.drv /tmp/guix-tests/store/w3al8qd0l6y6h5ji67ampfck8qf25biy-guile-json-4.5.2.drv /tmp/guix-tests/store/2jsvq6g3mm0zd2bfysm3d5x0l9qignqh-guile-json-4.5.2.tar.gz.drv /tmp/guix-tests/store/zczss9jzfvg6w3218pyxf9rp3rc5p53k-module-import-compiled.drv /tmp/guix-tests/store/082awpzp75l8s1pqf31yym1y5lvlg1g5-shadow-4.8.1.drv /tmp/guix-tests/store/gf16p699ahr7vbz0hadybq22c928k5rv-linux-pam-1.5.1.drv /tmp/guix-tests/store/c92m79y0gc6m80gf926j38428b12f82i-Linux-PAM-1.5.1.tar.xz.drv /tmp/guix-tests/store/8qxkyympyn7imadwvgy4lzlqzbj8ganw-Linux-PAM-1.5.1.tar.xz.drv /tmp/guix-tests/store/m6dams3882kszqiwy4v4m4kkc1jybj8i-shadow-4.8.1.tar.xz.drv /tmp/guix-tests/store/jnmwcp0li2jbz9dp3bkmz9q91waqn1rb-shadow-4.8.1.tar.xz.drv /tmp/guix-tests/store/0qnjl5yfwgqw9za6jlji3wiin7x0cm1l-nvi-1.81.6.drv /tmp/guix-tests/store/92si81ir5290ikwqw1s55hrbdy02wank-nvi-1.81.6.tar.xz.drv /tmp/guix-tests/store/wr2w5zi22h6g0j0rr58ph2rl95cpi1gc-nvi-1.81.6.tar.bz2.drv /tmp/guix-tests/store/11vvvvwwd3ssyla9jjsy0kal6jsg2kg1-lzip-1.22.drv /tmp/guix-tests/store/1i9rb17bz35zswpdics7q5pnk8hd6m66-procps-3.3.16.drv /tmp/guix-tests/store/xwdwvpgbkqk0afqnmn8vyivgr137305i-procps-ng-3.3.16.tar.xz.drv /tmp/guix-tests/store/23k5bd2sk1mlimyvv2hvihbki4i8j8cl-guile-gcrypt-0.3.0.drv /tmp/guix-tests/store/lcfbv652p20b6rcm3w61z1dg3bi4z94q-guile-gcrypt-0.3.0-checkout.drv /tmp/guix-tests/store/27ic97iwcqsqcmrhj67lx16j8wi3x0qz-grep-3.6.drv /tmp/guix-tests/store/h15q26zy0r6f9jskz77bybi08myqliv0-grep-3.6.tar.xz.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/hvih1zpzxk0mj9qpfwh02cxn0cn9zwj9-pcre-8.45.tar.bz2.drv /tmp/guix-tests/store/2gvqyn8k7ywbkc3fqhwkzqjgvfcn6bds-e2fsprogs-1.46.4.drv /tmp/guix-tests/store/60ajy8fhp2pfznlx5ippk3y5lh05rqgg-e2fsprogs-1.46.4.tar.xz.drv /tmp/guix-tests/store/2hm1x5jxgiyjc3kazz5bfsayl9lvd6q6-wireless-tools-30.pre9.drv /tmp/guix-tests/store/21gv30k4s1czzskzwwbvbsymlph0kj56-wireless_tools.30.pre9.tar.xz.drv /tmp/guix-tests/store/h2ck7l3mz3mr3qs168y7lxr3psgrr52z-wireless_tools.30.pre9.tar.gz.drv /tmp/guix-tests/store/3m7dfgmlw64rqsn3wghs0iz5f4353hdd-guile-zstd-0.1.1.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/ghmy8vjyc8r3yjkz4daczs351s4635ml-guile-zstd-0.1.1-checkout.drv /tmp/guix-tests/store/40mp2k0naxpiapiq8dz8pzkhxcvvzx65-findutils-4.8.0.drv /tmp/guix-tests/store/kwlld6yi8abb567a1s52z11ravaiz3yn-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/5xyc3mla67b13wbw356b027jlpwab1fx-rottlog-0.72.2.drv /tmp/guix-tests/store/g08crmldhqd0bwjh6p5cci1fpgzp5cq0-mailutils-3.13.drv /tmp/guix-tests/store/2h38i16d77zgiy1bvivl52xkjrgckhai-gsasl-1.10.0.drv /tmp/guix-tests/store/2klvswdlbhk7l5iswilki1ahjyvxj96w-libntlm-1.6.drv /tmp/guix-tests/store/bqhxn8jc0nbhwyi509ngfvw5dn0s6z69-libntlm-1.6.tar.gz.drv /tmp/guix-tests/store/lhpigb262sclzqbn48c7pg3sk92gvgla-gsasl-1.10.0.tar.gz.drv /tmp/guix-tests/store/7j22nfv73l9nyzv62nrn4vs7zj0v3fqy-libiconv-1.15.drv /tmp/guix-tests/store/plw5fmmhgglydkkrgzdia2fy3v0b6i6q-libiconv-1.15.tar.xz.drv /tmp/guix-tests/store/d4jafkvzzkpp6qhn0kxc40m0ilchpcly-libiconv-1.15.tar.gz.drv /tmp/guix-tests/store/8gyikhrn92yak2q7jx61f3rgqiabr2my-dejagnu-1.6.2.drv /tmp/guix-tests/store/1kib6rr5lm94fvpzb04pqs4aycgbj2dk-expect-5.45.4.drv /tmp/guix-tests/store/p1zzypvrfzd20c8f1j7m5galz7z6zaqr-expect5.45.4.tar.gz.drv /tmp/guix-tests/store/6zjlx0wqrpg9lw639rbphdgnazm3rvaw-dejagnu-1.6.2.tar.gz.drv /tmp/guix-tests/store/vz7vgsp307z1b2g3bi2p43kln8hprpng-mailutils-3.13.tar.xz.drv /tmp/guix-tests/store/1d7dfrxpznpz3ly4jjpxagzflmy48qpb-mailutils-3.13.tar.xz.drv /tmp/guix-tests/store/p8c0xszsgb2g8h553rkk8k824x9s69b2-rottlog-0.72.2.tar.xz.drv /tmp/guix-tests/store/n3nfzafj0z3h0vhhaknxvdkb0irxf5jv-rottlog-0.72.2.tar.gz.drv /tmp/guix-tests/store/rsxj25ipcp5kzdgmgd59lfhdyijn1vgg-coreutils-8.32.drv /tmp/guix-tests/store/bfqcx4ji79m0igvagplbhha9h3hkhqgb-attr-2.5.1.drv /tmp/guix-tests/store/2pn4vdkzbg5gwjqskby89v8nrn84b66y-attr-2.5.1.tar.gz.drv /tmp/guix-tests/store/gg0897h8bc5p6ljc4yq74b2c4x7qsdsh-acl-2.3.1.drv /tmp/guix-tests/store/fdrp2n3bzzjzdb8im056pgcp98ccscna-acl-2.3.1.tar.gz.drv /tmp/guix-tests/store/nyc558r8806f7b4f8cwp2mdxp1qgx0aj-libcap-2.51.drv /tmp/guix-tests/store/1l45dy2rjh880s0k4mij9iwj4b6lwzk0-libcap-2.51.tar.xz.drv /tmp/guix-tests/store/63wvgyi3jk3aa3vbbhx14cbqnqivxh0n-bash-completion-2.8.drv /tmp/guix-tests/store/rws4frwzrw3fwd8nk53axbxjjbwsim5j-bash-completion-2.8.tar.xz.drv /tmp/guix-tests/store/x5mynqylgv1vrs9gmf63dfdih7n63q0w-bash-completion-2.8.tar.xz.drv /tmp/guix-tests/store/6lsh62vk0kn2h2j78ny6samgjl69jcl2-guile-avahi-0.4.0-1.6d43caf.drv /tmp/guix-tests/store/jy86h73gpmiy9m60q14nq2fixjklnnls-guile-avahi-0.4.0-1.6d43caf-checkout.drv /tmp/guix-tests/store/li355kl0hi6367fjm1m0j3dkyx715hnx-module-import-compiled.drv /tmp/guix-tests/store/qqadvi6vj5hxn3i86w8nhswpl0r78z4d-avahi-0.8.drv /tmp/guix-tests/store/05mxrlvm0zl5rdhcnpncnfkwlzcccfwb-avahi-0.8.tar.xz.drv /tmp/guix-tests/store/kv5zjaqcw6m0dsqb6d1ifpsp6iza8mx7-avahi-0.8.tar.gz.drv /tmp/guix-tests/store/63hzg9lj4qbc0yzjcqldmkj0l5x4brjm-libdaemon-0.14.drv /tmp/guix-tests/store/cizg1dvmf4l2n1vyr2p9rdi1hc0g8m1f-libdaemon-0.14.tar.gz.drv /tmp/guix-tests/store/akwd6b9vagad50v50plfa2j7q1mh6h0z-glib-2.70.0.drv /tmp/guix-tests/store/22qy2xj02x5al8jxzq6i5zqcwfsx29yi-meson-0.60.0.drv /tmp/guix-tests/store/9mn0kdb31jrchnp3zzgnvmgzcm1cd7ij-ninja-1.10.2.drv /tmp/guix-tests/store/lg5j257z460kqn5y2zpq9095qpyvvdx8-ninja-1.10.2-checkout.drv /tmp/guix-tests/store/gkxhhd51vbqrrv4x3bycsy2k12f5d0fm-meson-0.60.0.tar.xz.drv /tmp/guix-tests/store/jv39rkg0s8lmmag8r5x30mai1x5136r6-meson-0.60.0.tar.gz.drv /tmp/guix-tests/store/j4rdkmgmv5gf07mh13q2p8sizfqi0zcx-module-import-compiled.drv /tmp/guix-tests/store/2r6rbqbvgqi0msmajqz1ylv3hgv18p2r-libelf-0.8.13.drv /tmp/guix-tests/store/jxrg02rgaymp91llhihyygvj2mnar895-libelf-0.8.13.tar.gz.drv /tmp/guix-tests/store/lhrcf8n28hh7a70slzcjcbwv8x876k7q-dbus-1.12.20.drv /tmp/guix-tests/store/f1pv7sj0vb1f4cff2xrlyfh5yykrvdvv-itstool-2.0.6.drv /tmp/guix-tests/store/p94shj49z9m8j2wq3jmskxvi7gbpzia9-itstool-2.0.6.tar.bz2.drv /tmp/guix-tests/store/xdi5126485gsw6mvx37vc6n5wr36yhfy-python-libxml2-2.9.12.drv /tmp/guix-tests/store/ddwzrp96zh4fch63w0n81acc65dc5n1q-libxml2-2.9.12.tar.xz.drv /tmp/guix-tests/store/igkmyldvyjb57jg0kwhjsm0ddksk700a-xmlto-0.0.28.drv /tmp/guix-tests/store/wppi02xzax3c4ivvbhhfpsn9j9j1l52m-xmlto-0.0.28.tar.bz2.drv /tmp/guix-tests/store/qvrk2k11sm7wfgzxlc7mh46lp2s5iybl-dbus-1.12.20.tar.xz.drv /tmp/guix-tests/store/43mj9x70809bvm0xds686lf0xn5id1n9-dbus-1.12.20.tar.gz.drv /tmp/guix-tests/store/w1df50wgkyql0b8sj1cn65qn1jn098kh-doxygen-1.9.1.drv /tmp/guix-tests/store/6rbfyfard7972xp7gdlai8hsv2hsq4zn-module-import-compiled.drv /tmp/guix-tests/store/ln972qkvma2g6qwwcba09g1gmh1pamnh-cmake-minimal-3.21.3.drv /tmp/guix-tests/store/1mwnr87746w4yw62b7jxbbmd8dbc9rsv-libuv-1.41.1.drv /tmp/guix-tests/store/jljx74ak5ql238hg9hxipa17wmchmq04-libuv-v1.41.1.tar.gz.drv /tmp/guix-tests/store/59qygq2wky37iyjq9jl39b9zgbaj6yd7-cmake-3.21.3.tar.xz.drv /tmp/guix-tests/store/q6wx3cw7cynrx74l67dyqcdvlrvsqf5k-cmake-3.21.3.tar.gz.drv /tmp/guix-tests/store/adzkdxigm9w7v6w26nrwpjzy50dzrhyb-libarchive-3.5.1.drv /tmp/guix-tests/store/3j5idg9r07m0bj5d3kr157y4h63z296l-libarchive-3.5.1.tar.xz.drv /tmp/guix-tests/store/sjk59gnkp4vmkp60rq02pb2z5c0nik9d-lzo-2.10.drv /tmp/guix-tests/store/n01vi6wwqgrcgfwblyj944g4wk3z1b76-lzo-2.10.tar.gz.drv /tmp/guix-tests/store/mapkpngb78vc71h6hidaq1y1haimy9r5-rhash-1.4.2.drv /tmp/guix-tests/store/0c7n3q8x5ayj5ll7m16b9cl8yiwzdrcm-rhash-1.4.2.tar.gz.drv /tmp/guix-tests/store/pg9qr99nqpl4ibhih23dvsly9srcrird-jsoncpp-1.9.4.drv /tmp/guix-tests/store/9ksb8j9yl8y3mw76c02isd5c1zi7kgbi-jsoncpp-1.9.4-checkout.drv /tmp/guix-tests/store/4mdija5vd7149a9v9mwdmznw1pjgdfvp-jsoncpp-1.9.4-checkout.drv /tmp/guix-tests/store/vrn18j4438yk8x266hxm9yj1h338ij5w-cmake-bootstrap-3.21.3.drv /tmp/guix-tests/store/mxdsa1lnahn5hah35dkwpvlhdidrb5b9-cmake-3.21.3.tar.xz.drv /tmp/guix-tests/store/np2m2v8p5hv89ffc1xd8kkjmc9x6dwvx-doxygen-1.9.1.src.tar.gz.drv /tmp/guix-tests/store/w4s80qcss3rvlnrqaznrnc9xx2b4hzhk-yelp-tools-3.32.2.drv /tmp/guix-tests/store/h3bk6giywb5dzhmlk2y3ypgzbaif1b2h-yelp-xsl-41.0.drv /tmp/guix-tests/store/63k0rqrvvqk30d2z0xha13bwid3sh5si-intltool-0.51.0.drv /tmp/guix-tests/store/i10li6jbqagg9mg77pvh813bz1zwpa1z-intltool-0.51.0.tar.xz.drv /tmp/guix-tests/store/5d6qr6jjk5nkmgsnkj73asahwa4ync42-intltool-0.51.0.tar.gz.drv /tmp/guix-tests/store/y2ndd5cyxiwy2n48a0is6vzcnwlw60fn-perl-xml-parser-2.46.drv /tmp/guix-tests/store/rrrrxprhj5v5kdxi5yf0sljhi3gndzq6-XML-Parser-2.46.tar.gz.drv /tmp/guix-tests/store/fsfrm6cpnmjalwkygqpx95afj75w3vsb-yelp-xsl-41.0.tar.xz.drv /tmp/guix-tests/store/vdcv3rxkk4dj6n06kh25fpfpk48sa42r-mallard-ducktype-1.0.2.drv /tmp/guix-tests/store/jdq6fhxdf28djx2avfwlpppq1wp8miin-mallard-ducktype-1.0.2-checkout.drv /tmp/guix-tests/store/vwfl23gk5shi4bslm74bixm45y7lajfc-yelp-tools-3.32.2.tar.xz.drv /tmp/guix-tests/store/x6vqn652f2kkdg0wx4mckn6nspqz43dd-docbook-xml-4.4.drv /tmp/guix-tests/store/0ksyjfjvnwf0rw3xq4b43khd19dnqxsb-docbook-xml-4.4.zip.drv /tmp/guix-tests/store/lw3vp2q5gazfwjnfh9f5i9mxyrsaqjh6-glib-2.70.0.tar.xz.drv /tmp/guix-tests/store/dwqa9sp2cs7sphy7psa1sspw8zyqs0yz-glib-2.70.0.tar.xz.drv /tmp/guix-tests/store/na8q08f52nzbhfq7k420yjbpbvcws9d1-module-import-compiled.drv /tmp/guix-tests/store/jvdj9bd8wdw01qvsh6cwlznfwg1xmf3f-libevent-2.1.12.drv /tmp/guix-tests/store/w358xfjmb9w4ny9bd4p2rl0lf8smqp13-libevent-2.1.12-stable.tar.gz.drv /tmp/guix-tests/store/6mfsxnxizis59daqirwwfijhqhbdvn7j-wget-1.21.1.drv /tmp/guix-tests/store/01avib9v6ryk2hqanbs7y4ln5k1a301v-perl-net-ssleay-1.88.drv /tmp/guix-tests/store/y2s3s7lii6lhznvsznzhq4f8mfsvwvlb-Net-SSLeay-1.88.tar.gz.drv /tmp/guix-tests/store/1953wjqf3sw2lwc7x207rnhy4pkp8bzd-libpsl-0.21.1.drv /tmp/guix-tests/store/npx78j0nqw43j8h6gkx5v8q537x0zkm9-libpsl-0.21.1.tar.gz.drv /tmp/guix-tests/store/4q65h7xhy8kbkzj30s7rh1s8nlggf259-perl-uri-5.05.drv /tmp/guix-tests/store/mxnkl5rzx474bzfqh5i6p89d3f60k7ps-URI-5.05.tar.gz.drv /tmp/guix-tests/store/rk3pc5h676kyn657malaykjjjvzc1wk7-perl-test-needs-0.002009.drv /tmp/guix-tests/store/dd45gmkf8hkmw6cr5qy1m1hsz2m48qn7-Test-Needs-0.002009.tar.gz.drv /tmp/guix-tests/store/6k1m77xqsh752q5fa6v5nk9amfvlsxhr-perl-io-socket-ssl-2.068.drv /tmp/guix-tests/store/qmfh434pi0c69swdbjz9wlfgksqhh7m6-IO-Socket-SSL-2.068.tar.gz.drv /tmp/guix-tests/store/8hrzpc4pywrdb5098f74frg4yrkwc985-perl-http-date-6.05.drv /tmp/guix-tests/store/sqg1rxy4x3l5hpmp20ciacx0ixcy6fpg-HTTP-Date-6.05.tar.gz.drv /tmp/guix-tests/store/cpcnsdnsdrq8djdv29f53qgw98lll49r-perl-lwp-mediatypes-6.04.drv /tmp/guix-tests/store/252bgkdf5826m39sg6p5ir6lzlz1dm6w-LWP-MediaTypes-6.04.tar.gz.drv /tmp/guix-tests/store/9wsfba3n6cgwrnyd0nk7rb6p30qj7vra-perl-try-tiny-0.30.drv /tmp/guix-tests/store/7kp5adkbkzgsw1k1hfyd21m6pamr4waj-Try-Tiny-0.30.tar.gz.drv /tmp/guix-tests/store/msmy7w894jb3rbwdjmqb829l4p5jrqg4-perl-test-fatal-0.014.drv /tmp/guix-tests/store/5v0pk6x5ryq2pr9qpmmvqp2cn7vbnw0r-Test-Fatal-0.014.tar.gz.drv /tmp/guix-tests/store/fa76fa752fsm2v4ylin9rh52d2chn4mn-perl-io-html-1.00.drv /tmp/guix-tests/store/1w2ps966mwp7y09qyqwacwyhal6mr8n3-IO-HTML-1.00.tar.gz.drv /tmp/guix-tests/store/i4ysglrmbga9xbj7aiq5v0hif8dw2l1a-perl-http-daemon-6.01.drv /tmp/guix-tests/store/gg97lch2yfiqd3r65jkn00riq9hq9z5q-HTTP-Daemon-6.01.tar.gz.drv /tmp/guix-tests/store/jdaymicps378ky4drdmzw8xdln0mn481-perl-http-message-6.18.drv /tmp/guix-tests/store/pvkhl924lzyvbb5d8s10smjizipggfdf-HTTP-Message-6.18.tar.gz.drv /tmp/guix-tests/store/zrzvkl33h6gfj7m2w8v04ib39lpdz1mc-perl-encode-locale-1.05.drv /tmp/guix-tests/store/jxjn1n3s55g3i068gc7vqp2vqg6bk1pm-Encode-Locale-1.05.tar.gz.drv /tmp/guix-tests/store/q7xl9i21gpwsg5n3af4mjg7yp1wjyp50-wget-1.21.1.tar.lz.drv /tmp/guix-tests/store/7dn7yzsc72spw0lvr7f5h42nkkgq3jib-nano-6.0.drv /tmp/guix-tests/store/gzsiy44bjlzvqlikwf784ahs5ddcgda8-nano-6.0.tar.xz.drv /tmp/guix-tests/store/7qc6clvvrd2vwmrk57bgnk7c86kckv8h-guile-bytestructures-1.0.10.drv /tmp/guix-tests/store/z95qj605zqwkdjk763wby0j34kqrwzbh-guile-bytestructures-1.0.10-checkout.drv /tmp/guix-tests/store/9qjk58067ri761nrw8n58y2cb1zl5nm4-isc-dhcp-4.4.2-P1.drv /tmp/guix-tests/store/g5vzh6a63kl79m419dmb0c3050zkm1d5-inetutils-2.0.drv /tmp/guix-tests/store/jsajnsc9fwq36pxmgyg4f7kldx4l4wdz-inetutils-2.0.tar.gz.drv /tmp/guix-tests/store/pil4h0njnpq18aav1qidghbz4fgzk0d8-sed-4.8.drv /tmp/guix-tests/store/bhj4c2q1732gkqrgdvw8kz663vssda4f-sed-4.8.tar.xz.drv /tmp/guix-tests/store/smfkla2d81jbyfgjbsmrllkn8jp39cmi-bind-9.11.36.tar.gz.drv /tmp/guix-tests/store/y8n2xdnxxhq3yx9i4gjqhm72f8jkil22-dhcp-4.4.2-P1.tar.xz.drv /tmp/guix-tests/store/68m02wgg1q5vm7x3jj3raz9fxfsmxkxl-dhcp-4.4.2-P1.tar.gz.drv /tmp/guix-tests/store/bpb10bqfavcxpmix4lw1pb8mykgalynk-gawk-5.1.0.drv /tmp/guix-tests/store/yqszk13mlq0bm6cw4xk8dfs8x5s72brk-libsigsegv-2.13.drv /tmp/guix-tests/store/cnw03bpim0dmbp6kvnsqgw0rm1b2wk60-psmisc-23.4.drv /tmp/guix-tests/store/08simppg2pdjj3fa5vj5z2jr4nsshdfd-psmisc-23.4.tar.xz.drv /tmp/guix-tests/store/cz7npp4iaygyfnn0rn9nxzz48s3pac7a-iw-4.14.drv /tmp/guix-tests/store/87mnm374vq13lsyxnklhlqk3clh12w5p-libnl-3.5.0.drv /tmp/guix-tests/store/00869marixcrqj5axm0bm3by8nxh1pd9-swig-4.0.2.drv /tmp/guix-tests/store/64vl8sv5q10x0wx5qz2yr1a966grs27k-boost-1.77.0.drv /tmp/guix-tests/store/6wf8ybg4ad5ndbsykaffzyrifh4rjxj6-boost_1_77_0.tar.bz2.drv /tmp/guix-tests/store/ahxbd7r4pwpz7plklqq9jr1rk48xv3zl-tcsh-6.22.03.drv /tmp/guix-tests/store/glxl883f74gazyldc9rjzqcnh1qgb1xk-tcsh-6.22.03.tar.xz.drv /tmp/guix-tests/store/5ggczxi2i04vd81yh42v7sg0lr0bv5fs-tcsh-6.22.03.tar.gz.drv /tmp/guix-tests/store/mwgh318v1ma3idnj3l4vsbn71yh9rkhx-icu4c-69.1.drv /tmp/guix-tests/store/97bz00wrbbwn79skw5m5a22qz7hwrrlg-icu4c-69_1-src.tgz.drv /tmp/guix-tests/store/sdw1p14wrcjqjz0r3jmsywy0lh3nms0r-swig-4.0.2.tar.gz.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/ixby5dqrz40a1kvm0hbvbiannz4fdl8f-libnl-3.5.0.tar.gz.drv /tmp/guix-tests/store/jycsgdab94fq1x9ll5lmk1jkcgd409sx-libnl-doc-3.5.0.tar.gz.drv /tmp/guix-tests/store/v9nnd7qj0ikm0jd20rwjsghz9rrnnkk9-iw-4.14.tar.xz.drv /tmp/guix-tests/store/dskvmzxj8js5bgliqb0y55v1bplzy78p-glibc-utf8-locales-2.33.drv /tmp/guix-tests/store/k7xjyqm9krkbv9qvw87z7dcwnc828lgn-glibc-2.33.drv /tmp/guix-tests/store/4978fq5br4v48dk27vk71yllddnn3kzm-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/kbwm91cmwawdj4cr3cwfkwxpfpjgg0ml-bash-static-5.1.8.drv /tmp/guix-tests/store/zjsnvvk557wmb5w2i962mq60fynrk6jz-linux-libre-headers-5.10.35.drv /tmp/guix-tests/store/f1jvl67m012mpcvnwmq3zcnw8ldvbsyp-mcron-1.2.1.drv /tmp/guix-tests/store/52qw4jxc97diz360jlbhqjwyrsvxxv0a-mcron-1.2.1.tar.gz.drv /tmp/guix-tests/store/f6qwlxh95h8kspn0c8rf7qlmzf1d570m-mg-20210609.drv /tmp/guix-tests/store/jlfzl42fs15znvh7bjsjkzb4j7hiy3vn-diffutils-3.8.drv /tmp/guix-tests/store/ksqy4pgivydykas6p5vr55vhm85ywlp4-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/npmm1196qbjwzi9n0kyzjd0ggv0c1lib-mg-20210609-checkout.drv /tmp/guix-tests/store/pphf5gq1nspncfvlbz04yq7b6nj4f965-mg-20210609-checkout.drv /tmp/guix-tests/store/fpmwwkafs0ppcp478m82vsk4qbqb6bxl-pciutils-3.7.0.drv /tmp/guix-tests/store/p8bzhrqn88y4v6sysrkpld645vnv3mf1-pciutils-3.7.0.tar.xz.drv /tmp/guix-tests/store/7zj0chwvkz7bgkhvji1q7khz6538z2gv-pciutils-3.7.0.tar.xz.drv /tmp/guix-tests/store/fv1ln5rj47mlqq73180h9m08c3ia14c3-guile-git-0.5.2.drv /tmp/guix-tests/store/16bfl9b4p7flj0yydzy9gk6rqprc62p5-libgit2-1.3.0.drv /tmp/guix-tests/store/faq7i03czy6h6mm4r7lsqb66b1dd7rbl-libssh2-1.9.0.drv /tmp/guix-tests/store/sc0g4yp60knb191j626s8w8ch8izq8qr-libssh2-1.9.0.tar.xz.drv /tmp/guix-tests/store/xpzp6f37h255rhp2cv4ymcl3j94ay9v5-libssh2-1.9.0.tar.gz.drv /tmp/guix-tests/store/kkbd2js27kxhfgkj29vsw7jkk8sz1m9y-pcre2-10.37.drv /tmp/guix-tests/store/19qkl32ja8ib1a7lsh4gwrj37drcrp4j-pcre2-10.37.tar.bz2.drv /tmp/guix-tests/store/rwnrwvajwlphc2mszywvrbncwbjaw0kz-libgit2-1.3.0-checkout.drv /tmp/guix-tests/store/fnfhqmvxkgcmchkz8kh03n7xbs7dhdbw-libgit2-1.3.0-checkout.drv /tmp/guix-tests/store/xlndcmn1i91dlrccxxac31iaj1r2msqq-http-parser-2.9.4-1.ec8b5ee.drv /tmp/guix-tests/store/fijh42jbpl81hxbzvxnk7ffyacm457zg-http-parser-2.9.4-1.ec8b5ee-checkout.drv /tmp/guix-tests/store/cxf51006n7d0c21skq3aswfnjg7l6zg0-http-parser-2.9.4-1.ec8b5ee-checkout.drv /tmp/guix-tests/store/k8gr1hl42xfv4b36355r37yz841dw4qx-0001-url-treat-empty-port-as-default.patch.drv /tmp/guix-tests/store/bz7d9qwsmal6099r8dizwj9km37dm7xd-guile-git-0.5.2-checkout.drv /tmp/guix-tests/store/w5w120h3a0hzjahcbasg2q24q30nhag5-guile-git-0.5.2-checkout.drv /tmp/guix-tests/store/g17zvd9vf2yyadylx3v4ic4c1wm2l5kz-guile-readline-3.0.7.drv /tmp/guix-tests/store/g8r5k2ws8v7ysy0j7s1bk7zhzgj2siqz-kbd-2.4.0.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/8b9skn33p8x39l70ypvpw464gm8hik82-kbd-2.4.0.tar.xz.drv /tmp/guix-tests/store/r8iwyrjc5f2pkr7xjvvxps1fi8w62bqq-kbd-2.4.0.tar.xz.drv /tmp/guix-tests/store/g98b81dhda9q4gbqbfzjd14dy37f0qan-guile-ssh-0.13.1.drv /tmp/guix-tests/store/h2g0wf0p18lwmrpm5v8ah44xgw0n4sd1-libssh-0.9.6.drv /tmp/guix-tests/store/01ymca8l0xg5149nncyc8wb64123p5f0-libssh-0.9.6.tar.xz.drv /tmp/guix-tests/store/kymj24blqlkmgvp42255kn7y526q7x0b-guile-ssh-0.13.1-checkout.drv /tmp/guix-tests/store/3h9fajz0hyjicpjcx3x6kr39w4b4jw7v-guile-ssh-0.13.1-checkout.drv /tmp/guix-tests/store/glj6vpavn6hsq4mn6mv4ljajrwphhpnd-less-590.drv /tmp/guix-tests/store/yccr1pc9hpqqk14mfasvcppqj4cl04as-less-590.tar.xz.drv /tmp/guix-tests/store/madpyki5i3q3r4sh9sdivm7db8nhydkc-less-590.tar.gz.drv /tmp/guix-tests/store/jf7imq8fj831wfmp8x89cswxq1vnp2h8-util-linux-with-udev-2.37.1.drv /tmp/guix-tests/store/jm3jb8p39zaf6dimvgdlsqbsbq5x5rb1-guile-colorized-0.1.drv /tmp/guix-tests/store/1mi82141ikz1qv34bhrsh23dga5ml303-guile-colorized-0.1-checkout.drv /tmp/guix-tests/store/k1xws21mxn355ck2jjmdvdy0wlqnwy5l-guix-icons-0.1.drv /tmp/guix-tests/store/45pic93zs22dvh7kncbl30czrqmgaqkz-module-import-compiled.drv /tmp/guix-tests/store/666b3184y9jlxm2b6b64k2q08nqc1b15-guile-rsvg-2.18.1-0.05c6a2f.drv /tmp/guix-tests/store/6nnsb5ij49hqrb38j1xzd51mkignsygs-cairo-1.16.0.drv /tmp/guix-tests/store/1vwqa9dkwhggp5i5c6f4r5mhrm9jnr05-libpciaccess-0.16.drv /tmp/guix-tests/store/1633zavvypdlxn33xscws5dixkxk2xvj-libpciaccess-0.16.tar.bz2.drv /tmp/guix-tests/store/2cz4hv6dgp1l25c4jjvrq0afbrbcma0s-gobject-introspection-1.66.1.drv /tmp/guix-tests/store/49i46bq4kmzasvkl55d2a7is0p5ygf8h-gobject-introspection-1.66.1.tar.xz.drv /tmp/guix-tests/store/wpk723agq2ywwsnrpjpfsllid19y9547-gobject-introspection-1.66.1.tar.xz.drv /tmp/guix-tests/store/6f82h68g03inanl5236x60vil6j76awg-libdrm-2.4.107.drv /tmp/guix-tests/store/8sx78yf9lfd5nx3f1yl4bbb271vxilqj-libdrm-2.4.107.tar.xz.drv /tmp/guix-tests/store/950nfjl37002pjyxkzmb003mq5xlix6z-libspectre-0.2.9.drv /tmp/guix-tests/store/l07rpf0f1yvxzgn8yji1zc5ya2g2zqx2-ghostscript-9.54.0.drv /tmp/guix-tests/store/5rh6x6j9gfl82193sxlvb474pb3nkrwc-ghostscript-9.54.0.tar.xz.drv /tmp/guix-tests/store/xx5hnbs01aba5dk246zqmvl9qwh9j460-ghostscript-9.54.0.tar.xz.drv /tmp/guix-tests/store/5vnml2rg59fipa1r0akrdw6fdnjfy46c-font-ghostscript-8.11.drv /tmp/guix-tests/store/azlxx6qzgwjm6yyy0z05jbdxrpm02crq-ghostscript-fonts-std-8.11.tar.gz.drv /tmp/guix-tests/store/9vvj3igk13pfxfq47yamfw5vm7kvaz3l-libjpeg-turbo-2.0.5.drv /tmp/guix-tests/store/9300n7xf7nakazm93nkz4s2lmjznfw65-nasm-2.15.05.drv /tmp/guix-tests/store/0402pfph3s15mnib10rkxc3qx8wk1r7j-nasm-2.15.05.tar.xz.drv /tmp/guix-tests/store/zhvkblzv4r36kqi3dp5mizra85384a21-libjpeg-turbo-2.0.5.tar.gz.drv /tmp/guix-tests/store/jmliaf57fyx77wq1rk5ja0h05mn11sc9-jbig2dec-0.19.drv /tmp/guix-tests/store/xkis6w40kr8l1n91y8xhdyn3q0ngrggr-jbig2dec-0.19.tar.gz.drv /tmp/guix-tests/store/mnyf11gpi02b1j6b30282cksn6p29iw1-libpaper-1.1.24.drv /tmp/guix-tests/store/j2kvglmqz8k2lwkfc09l230fkrf825k9-libpaper_1.1.24.tar.gz.drv /tmp/guix-tests/store/rgr3isbphrcg13zwzc2xycg49604knf1-libtiff-4.3.0.drv /tmp/guix-tests/store/c28gr8dky7a1pv83rznvc7zc7xa63852-tiff-4.3.0.tar.gz.drv /tmp/guix-tests/store/p3nbj46s3pa9m8jpmq570jd0dfssb8h6-libspectre-0.2.9.tar.gz.drv /tmp/guix-tests/store/a551rjad05wa1j4fa6f6ria10w7wkzqg-module-import-compiled.drv /tmp/guix-tests/store/bb84qa9qwh8qgglq969nm40kgh7l8z7g-pixman-0.40.0.drv /tmp/guix-tests/store/2kppbr9qf9m8wjr4hnfmlwww2bp85xy9-pixman-0.40.0.tar.xz.drv /tmp/guix-tests/store/ig0j6nwczg9jl5xn2bvi9bczy71z00za-pixman-0.40.0.tar.gz.drv /tmp/guix-tests/store/qwhkcj6gifhipdx0bykh8k508iv20wv0-cairo-1.16.0.tar.xz.drv /tmp/guix-tests/store/5rl93jh93l4lk72ayjkvy9pk1k9q5wvp-cairo-1.16.0.tar.xz.drv /tmp/guix-tests/store/rxws90r8xdblf9zm6v85k5gnb72sjwag-poppler-21.07.0.drv /tmp/guix-tests/store/0gdx1ggq4bdvyzbiprl8akbx0qfag00f-lcms-2.12.drv /tmp/guix-tests/store/id06kx2lmfyzwygvai01njzgdpvgxmgi-lcms2-2.12.tar.gz.drv /tmp/guix-tests/store/6lnqgvpwjxlc0mdc3wnys6zvylpzy571-cairo-1.16.0.drv /tmp/guix-tests/store/8i18wrimi8q61nrvf3ldf3fir1m5kgjc-openjpeg-2.4.0.drv /tmp/guix-tests/store/2zjfjys3k0nbwmsnwzmm1hdg4n8kg5cb-openjpeg-data-2020.11.30.drv /tmp/guix-tests/store/dhvvb83w2mlqflgvy1600sicnn4ny7gm-openjpeg-data-2020.11.30-checkout.drv /tmp/guix-tests/store/z73n3cdwj0jbw5frn2jffyai2nzb6pld-module-import-compiled.drv /tmp/guix-tests/store/54nawf3lmxbipflmpwzb0zwpkan6zpkh-openjpeg-2.4.0-checkout.drv /tmp/guix-tests/store/pjrd3y75k6s05mcvacawa1d1hjaqhiz6-poppler-21.07.0.tar.xz.drv /tmp/guix-tests/store/akwd6b9vagad50v50plfa2j7q1mh6h0z-glib-2.70.0.drv /tmp/guix-tests/store/cpb9gxknn6zdszgwfmr2lplkrbpq2mmy-shared-mime-info-1.15.drv /tmp/guix-tests/store/849616pvharfhc6r4p8kflz647d4mm3b-shared-mime-info-1.15.tar.xz.drv /tmp/guix-tests/store/knz970wh9br51388mhnrfj0lfa7xfkdl-guile-cairo-1.11.2.drv /tmp/guix-tests/store/i1zcl2pd4r8agw87xa2hhzj7jzfjdp3h-guile-cairo-1.11.2.tar.xz.drv /tmp/guix-tests/store/psqszs75zic5lxkw9nf654xmajg6pq81-guile-cairo-1.11.2.tar.gz.drv /tmp/guix-tests/store/w5g9vfpwj4n5kg5ay3b3wzac34zxhria-guile-lib-0.2.7.drv /tmp/guix-tests/store/sqq1f975w3mv5mhripygm7mf8qpingcp-guile-lib-0.2.7.tar.gz.drv /tmp/guix-tests/store/l9ywwqvvdzwyf244618hprsclq2wazbj-librsvg-2.40.21.drv /tmp/guix-tests/store/0r7iyfdx2njcgqi4bsbgrncn0xmf58pr-libgsf-1.14.47.drv /tmp/guix-tests/store/scqlzp3wrmjxiiwqvd6z5vz10gskny78-libgsf-1.14.47.tar.xz.drv /tmp/guix-tests/store/x3yfjx440ziw2afiykklvczhbvcn1hfk-docbook-xml-4.5.drv /tmp/guix-tests/store/y7p9gwd0l4d1ljbb5arp3fc9gqbyh4f3-docbook-xml-4.5.zip.drv /tmp/guix-tests/store/xwgkkzn7v0lfjc5vjj5nbk73rfn74h9b-gdk-pixbuf-2.42.4.drv /tmp/guix-tests/store/6ms48d12d6h6p4mlbvy2pc92z7k59mag-gdk-pixbuf-2.42.4.tar.xz.drv /tmp/guix-tests/store/jv424rnsi01kjqrq04970gpk5cnqihw7-docbook-xml-4.3.drv /tmp/guix-tests/store/rym91smpacy7q9m2vlr0n23znr84lxq4-docbook-xml-4.3.zip.drv /tmp/guix-tests/store/518rx93g9y0dq7mbwhdpr0dqyzxcd0bl-libdatrie-0.2.13.drv /tmp/guix-tests/store/cqp8x0bnpjkxiy949h7c5kyivyrj8s4k-libdatrie-0.2.13.tar.xz.drv /tmp/guix-tests/store/8i3kns3w97qgixhn4q7wb5n6yjyvy8sp-pango-1.48.10.drv /tmp/guix-tests/store/b1a1ndzgxjc5r856wqkp0m65yczvdy39-harfbuzz-2.8.2.drv /tmp/guix-tests/store/frbfs7dcw5rkrmny4iwxyv6s3whq8paa-harfbuzz-2.8.2.tar.xz.drv /tmp/guix-tests/store/wgjj3bjv2gx0xdml240cpj0ws558y29m-graphite2-1.3.13.drv /tmp/guix-tests/store/3vlz4jvai3ijrg5y196y528fkwfgzx6s-graphite2-1.3.13.tgz.drv /tmp/guix-tests/store/j02az1xlma527fwlnjq1h668q3y8vl3l-python-fonttools-4.6.0.drv /tmp/guix-tests/store/1d43ppzhvv8ss51649knyyqqiy50zl0m-python-pyparsing-2.4.7.drv /tmp/guix-tests/store/2mjimlk8rz6yb79r9qbb3v2f232m9qkc-pyparsing-2.4.7.tar.gz.drv /tmp/guix-tests/store/1h2lyrlgj97g3n16wwhc79c7ln2l024l-python-pytest-runner-5.2.drv /tmp/guix-tests/store/4im9x2mbmjl1cn21s7l9kl29kn5wmw0j-python-six-bootstrap-1.16.0.drv /tmp/guix-tests/store/fz8jx0fx1i03ax2sf3c33r9y069ixahm-six-1.16.0.tar.gz.drv /tmp/guix-tests/store/ggwznmj631clj16p3xjixh1x2yphbabg-pytest-runner-5.2.tar.gz.drv /tmp/guix-tests/store/mqg9wwykz0dmqjmm6zdh9wp5iqg9x9yw-python-setuptools-scm-6.3.2.drv /tmp/guix-tests/store/pirnb59cw9wr18ar7h2d195zhr74l3sy-setuptools_scm-6.3.2.tar.gz.drv /tmp/guix-tests/store/sklgjna5vkzr1kd9rp8czvnd3yvqlqhr-python-tomli-1.2.2.drv /tmp/guix-tests/store/72ikfq0yinwmnhiyxjwcgvzp5bwq78zn-python-flit-core-3.4.0.drv /tmp/guix-tests/store/v5qfxqkfbigl8ls0jpiki8jjzsj0fwql-flit-3.4.0.tar.gz.drv /tmp/guix-tests/store/yqplrl93igh8b2j8l3lcgkmqky2rddna-python-toml-0.10.2.drv /tmp/guix-tests/store/vgq2xxs4ami7pwd2r00f9jqzhd2a2l4r-toml-0.10.2.tar.gz.drv /tmp/guix-tests/store/c66fzdc43r5gnxm5cw2cs51swhyq3imj-python-pypa-build-0.7.0.drv /tmp/guix-tests/store/jams5qd3hs82bjqa55x7r2wqzglgcyjz-build-0.7.0.tar.gz.drv /tmp/guix-tests/store/sbn7vfhnjf0dv6vw732k2vkwf9yvjjqs-python-pep517-bootstrap-0.9.1.drv /tmp/guix-tests/store/w0cz8xk3pf2nzgibfdf3i3i3yb20hcy6-pep517-0.9.1.tar.gz.drv /tmp/guix-tests/store/w2a8nw7lpi8jv4hbp1pa0xb9gv94c56f-python-wheel-0.33.6.drv /tmp/guix-tests/store/ghnsg29srfi8xhjzq069a667zb883cfc-wheel-0.33.6.tar.gz.drv /tmp/guix-tests/store/w893c4ik91b1a8lkziqnm18i6kgbvx5d-python-packaging-bootstrap-20.0.drv /tmp/guix-tests/store/qxvrgxg6q9smn6z8nlrqrwnif93x9pww-packaging-20.0.tar.xz.drv /tmp/guix-tests/store/13xp6id4887qq28b6sc6h9wzhlkbksc8-packaging-20.0.tar.gz.drv /tmp/guix-tests/store/rla4c0kgqjcm16l79hqc54hxscai5n7k-tomli-1.2.2.tar.gz.drv /tmp/guix-tests/store/5p0bvvky448923k7fylsdzgsv8fdppww-python-py-1.10.0.drv /tmp/guix-tests/store/cvhnybips1n2cy2yaw0yfhy1ar4lqphv-py-1.10.0.tar.gz.drv /tmp/guix-tests/store/83x000x8nqk95j7xcxiswn62fzq1l8g0-python-attrs-bootstrap-21.2.0.drv /tmp/guix-tests/store/73jn0glzgd211jicb55dfp81m55k255w-attrs-21.2.0.tar.gz.drv /tmp/guix-tests/store/jknvfj1msw0c1qs0d3day2zc5244jsbq-python-more-itertools-8.2.0.drv /tmp/guix-tests/store/clv9p0c7v9l5y2v6yl9z23nl4psb6csx-more-itertools-8.2.0.tar.gz.drv /tmp/guix-tests/store/l5ghzm4xa5hp8bvrr7zk9hrmcrzk90nw-python-pytest-6.2.5.drv /tmp/guix-tests/store/2r79s4gaz7qp0310ky8ny9qzsxngl3g4-python-sortedcontainers-2.1.0.drv /tmp/guix-tests/store/4w8xkhsgjwr6xjr6jvmpcd16fxf8pfvs-python-filelock-3.0.12.drv /tmp/guix-tests/store/rmimazya2r7xxbivh7y2w5w49387abzb-filelock-3.0.12.tar.gz.drv /tmp/guix-tests/store/6wivz10hfixa5jy9788zdxcbv0l16wls-python-appdirs-1.4.3.drv /tmp/guix-tests/store/j79g0cbd6ijr44zqffdqwy4ps84wpal7-appdirs-1.4.3.tar.gz.drv /tmp/guix-tests/store/fqcnc4pm0nlpq4p9gjn23qqx8dnnns8m-python-distlib-0.3.1.drv /tmp/guix-tests/store/jv28qccm9b1byfsga3677rznvrawlgrr-distlib-0.3.1.zip.drv /tmp/guix-tests/store/ih7z1b3a6lrkrjr7zwvgq3cm0p09lhm6-sortedcontainers-2.1.0.tar.gz.drv /tmp/guix-tests/store/6hwhxayicrwk3lg9a8v2cb5nn7lvq3vv-python-mock-3.0.5.drv /tmp/guix-tests/store/acvv5nylvrrg6x6597nhybhv540gnv5m-python-six-1.16.0.drv /tmp/guix-tests/store/n6xfvp2qp1b6q8kmlxcbflgmn1vbq5ca-python-pytest-bootstrap-6.2.5.drv /tmp/guix-tests/store/6k7ji090bd9xgl89drg7mg72b38hfhmd-pytest-6.2.5.tar.gz.drv /tmp/guix-tests/store/p69x7vz4k9v8rzp07hqqznr1y7qvpi5b-python-iniconfig-1.1.1.drv /tmp/guix-tests/store/p5m9njda55z5wlahnxja3hxbd7hj1l26-iniconfig-1.1.1.tar.gz.drv /tmp/guix-tests/store/pgm55978kw09r2ymcl12wz12xaagl2ly-python-wcwidth-0.1.8.drv /tmp/guix-tests/store/w2cdb3kc9s3w00cfcir2ydlmljdb2k0r-wcwidth-0.1.8.tar.gz.drv /tmp/guix-tests/store/r8hhnw5h7n5dpyml45273ixag5vz290v-python-pluggy-0.13.1.drv /tmp/guix-tests/store/cyw49jzinnn3dysmlsff31j718p59y4s-pluggy-0.13.1.tar.gz.drv /tmp/guix-tests/store/wjdmpalck3l6df3f5ggdryhf90v4v3mj-mock-3.0.5.tar.gz.drv /tmp/guix-tests/store/9fjdiiy3rf18wgy9kw3q1n1nrs72m4s0-python-nose-1.3.7.drv /tmp/guix-tests/store/p6r6akibgmldl4rsqnm763mpsiqydmr5-nose-1.3.7.tar.gz.drv /tmp/guix-tests/store/cc907ag3kvv1qanzfzn512qxq4i5dabp-python-xmlschema-1.2.5.drv /tmp/guix-tests/store/16lzr4lakg8cdcjmif35jf0wknybf41q-python-xmlschema-1.2.5-checkout.drv /tmp/guix-tests/store/fybsdvq2d2vwm6k7jlk26k8nivbngp0n-python-elementpath-2.0.3.drv /tmp/guix-tests/store/yqynjpjmk3gndv32p4j54nx3zg3l1qdf-elementpath-2.0.3.tar.gz.drv /tmp/guix-tests/store/k841ad1fk364xn2i28457377x67aii3v-python-lxml-4.6.3.drv /tmp/guix-tests/store/kgll9h1rj15ja2k4wlikww4jnl2vh1yd-lxml-4.6.3.tar.xz.drv /tmp/guix-tests/store/rv5z8vvw51i198jfqmyn1nbmj1y9zhzz-lxml-4.6.3.tar.gz.drv /tmp/guix-tests/store/wvk1hnlgjljijvsiv7jqcn5w6kry8jpa-python-hypothesis-6.0.2.drv /tmp/guix-tests/store/g14wbkgrq2d5dxxk544s8s6qxpi00xkn-hypothesis-6.0.2.tar.gz.drv /tmp/guix-tests/store/rchdn7fkqzhkhyhc3vc16qfr8xr5lw4w-fonttools-4.6.0.zip.drv /tmp/guix-tests/store/bz0fz8qvgpd72zjnzpz5km09hdbzx2wn-libthai-0.1.28.drv /tmp/guix-tests/store/3cw20nvvzakssdrhiilwp0l0a7qwn6dz-libthai-0.1.28.tar.xz.drv /tmp/guix-tests/store/d5kih80xiplf7cmnslqgdyzcj8frn4zy-fribidi-1.0.9.drv /tmp/guix-tests/store/dd8n4rcqdlw1swx78ww2hyci13qci8lm-fribidi-1.0.9.tar.xz.drv /tmp/guix-tests/store/qb1nsf5jahi9444ng6g0navi9agsaskk-pango-1.48.10.tar.xz.drv /tmp/guix-tests/store/dy6hd89lb65wqf97wn6768pcs0yjfvvb-pango-1.48.10.tar.xz.drv /tmp/guix-tests/store/hm5p7xl3ad97k70nqp9ydij4da2l31zk-libcroco-0.6.13.drv /tmp/guix-tests/store/03ddw7xmnib10zap1z2nyn9fpqpv8wmz-libcroco-0.6.13.tar.xz.drv /tmp/guix-tests/store/6cvwsd8snmnc25606gfvdmw7gf0c6l83-libcroco-0.6.13.tar.xz.drv /tmp/guix-tests/store/s21fp4h91fgjg1n2jmrjwmdkd5ijz05h-librsvg-2.40.21.tar.xz.drv /tmp/guix-tests/store/sxi5wqkgj4v0w92rdfglk4fpld1dh2lr-guile-rsvg-2.18.1-0.05c6a2f.tar.xz.drv /tmp/guix-tests/store/rfy46yh6r8lza6l20qyhjkw1pd2lwm0h-guile-rsvg-2.18.1-0.05c6a2f.tar.gz.drv /tmp/guix-tests/store/d2qcs74lib84ayjbx0kdbnnnrcndc7y4-imagemagick-6.9.12-4.drv /tmp/guix-tests/store/0zgpdz9ygz4sli5wwd429mnkd426ac4s-graphviz-2.49.0.drv /tmp/guix-tests/store/5myq09qf466wka0b5fzpfmcvcikq2300-libxaw-1.0.14.drv /tmp/guix-tests/store/9ah006xxmdjr2hc9srmfnh55x0xslyn9-libxpm-3.5.13.drv /tmp/guix-tests/store/c81ixkb0abyckywhfmnp3966i2fnz40y-libxt-1.2.1.drv /tmp/guix-tests/store/h6yxfd4fm8zsvyygb3zzvna8hsys6536-libice-1.0.10.drv /tmp/guix-tests/store/l0ydvipidjilav2xkfc9d8x593scp7xh-libICE-1.0.10.tar.bz2.drv /tmp/guix-tests/store/mp66vbanf751fr8xslddhwsh9sw9jlwj-libsm-1.2.3.drv /tmp/guix-tests/store/7ir6rvz3ijm3bi7d6hyrnkpzxa3nibgg-libSM-1.2.3.tar.bz2.drv /tmp/guix-tests/store/pspndz27fi9lr0m7nafmbyy0vg44xsdf-libXt-1.2.1.tar.xz.drv /tmp/guix-tests/store/2jja5ci203vghx0g9va4wfak90rdjwfw-libXt-1.2.1.tar.bz2.drv /tmp/guix-tests/store/s97ngr3x783qxh2yk03lkjhka4vj0dqk-libXpm-3.5.13.tar.bz2.drv /tmp/guix-tests/store/gagrzik18ii9w65j4ki8zchcrx97i9dd-libXaw-1.0.14.tar.bz2.drv /tmp/guix-tests/store/wlpmac7biws74w8gfs4fd1bab65rg535-libxmu-1.1.3.drv /tmp/guix-tests/store/3qh8q3j64dfcdkscrmfspary1h0s4rk7-libXmu-1.1.3.tar.bz2.drv /tmp/guix-tests/store/kx2igpxh0yn94klc72w5q0j3iyaibfk6-gts-0.7.6.drv /tmp/guix-tests/store/7wdbwbs2lmq4ljp29kvj3n89lwlyhdbv-gts-0.7.6.tar.gz.drv /tmp/guix-tests/store/wj2wwpcgvsw0rljdwkjwgadqsrjiqqgx-graphviz-2.49.0.tar.xz.drv /tmp/guix-tests/store/xa7r2qdzcyl4mavpigr3jdf8bxpfxr27-gd-2.3.2.drv /tmp/guix-tests/store/wij1b56irx5hfbpc65l1fyyid7w4zlfx-libgd-2.3.2.tar.xz.drv /tmp/guix-tests/store/kjcf53firqwhmaah3ih1cwkkm6qk76mi-libgd-2.3.2.tar.xz.drv /tmp/guix-tests/store/ganfj86w0mwg26wf178k3k7fn3a31gii-ImageMagick-6.9.12-4.tar.xz.drv /tmp/guix-tests/store/7pivcm45q4hw5jra2jpgbi4qd5ssipp8-ImageMagick-6.9.12-4.tar.xz.drv /tmp/guix-tests/store/is2i0k7647r82lav7n4l117alz5l5kcs-fftw-3.3.8.drv /tmp/guix-tests/store/13x9yk166is9c0kyq5mb9qw72krngnxm-fftw-3.3.8.tar.gz.drv /tmp/guix-tests/store/rdc732dgcpdp087ycy1j9rxvp8xg8n60-guix-artwork-2f2fe74-checkout.drv /tmp/guix-tests/store/yxaka5dzh5kh3zlpjkvrziib7lv5jhxa-guile-lzlib-0.0.2.drv /tmp/guix-tests/store/258q9gcnija62sq31aqiflkvlzr1227s-guile-lzlib-0.0.2.tar.gz.drv /tmp/guix-tests/store/xgv6x1w0p18xidfkvd8skb1ksvpwln8j-lzlib-1.12.drv /tmp/guix-tests/store/6xijr98z01455mpp61fdcb6rrd7ivgfv-lzlib-1.12.tar.gz.drv /tmp/guix-tests/store/yyjr2rikcc16qvb2anc60jfv7f8k3f82-guile-sqlite3-0.1.2.drv /tmp/guix-tests/store/i9vlr1isl4chnqcyqr031bvzcv2vzw83-guile-sqlite3-0.1.2-checkout.drv /tmp/guix-tests/store/mc3gnkfpjwnglbs46ka049kl8ghnzmd4-patch-2.7.6.drv /tmp/guix-tests/store/0yaz8903406bdjggf3qci4xfl3v9v1vw-ed-1.17.drv /tmp/guix-tests/store/pksym19g14alxabzbvkvdvbhdbmii5rf-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/nhbr7xzlz6hai88brw7klrhn0jhkbvjj-sudo-1.9.8p2.drv /tmp/guix-tests/store/vrmjmliigr4cjjdg7rbadj4hzivasg62-groff-1.22.4.drv /tmp/guix-tests/store/p8lbfpyyqyx0qvx3pbhy84gzsc5yykhn-groff-1.22.4.tar.gz.drv /tmp/guix-tests/store/vrv2lnpjyh1hcrxjf66rr9a4zqz3x60i-psutils-17.drv /tmp/guix-tests/store/p8lxnszfcd4db52k2jgjgma6z261ccpn-psutils.tar.gz.drv /tmp/guix-tests/store/w5csmfhyia8irry3sx36kyfly8bdardw-sudo-1.9.8p2.tar.xz.drv /tmp/guix-tests/store/1wx1ypdnq8nh1c6p5ys9m9pl1k8dzzd5-sudo-1.9.8p2.tar.gz.drv /tmp/guix-tests/store/rkkpd7b5xklw29fxsxnfb3ajdv8yfzj4-man-db-2.9.4.drv /tmp/guix-tests/store/3qvn6zj3apw6vnprlj7akinpwzz1ky5x-man-db-2.9.4.tar.xz.drv /tmp/guix-tests/store/f1w548d30n4p6zjd573aw5vlvxzkflwz-libpipeline-1.5.3.drv /tmp/guix-tests/store/mhpl6hr81nh5hc3nz8fmszf44aq2s52d-libpipeline-1.5.3.tar.gz.drv /tmp/guix-tests/store/gy4ky336kyffswp0864rnzm12j7lbcgx-groff-minimal-1.22.4.drv /tmp/guix-tests/store/rmcpxjv7lz78alzgsa3nspqqggjkxy02-info-reader-6.7.drv /tmp/guix-tests/store/sd3cwl4rq49ci499hpxhkgvixr1yz01s-shepherd-0.8.1.drv /tmp/guix-tests/store/gk3x735dci3qaw541pl9l90z0f5w248b-shepherd-0.8.1.tar.xz.drv /tmp/guix-tests/store/xpcy4xvdh1psxz8s6rfa26hffblgykvs-shepherd-0.8.1.tar.gz.drv /tmp/guix-tests/store/y3b6ydmh2hdj6nqh227fpj8888d2c3xc-guix-1.3.0-16.10ceb3e.drv /tmp/guix-tests/store/63ckcgkk5ijfa36g3dyhmlmnrk7abgmc-po4a-0.63.drv /tmp/guix-tests/store/04kg0x46kjrjhxrmwqddd0kmzg6yskfd-perl-cpan-meta-2.150010.drv /tmp/guix-tests/store/3xbblh9q03wkinhppx94lsyw4cznd9pq-CPAN-Meta-2.150010.tar.gz.drv /tmp/guix-tests/store/7cxa6x3fs3mb2hblvnzigjnzskmdx2ih-perl-parse-cpan-meta-2.150010.drv /tmp/guix-tests/store/gyxah97nb34z2l70ghyzgc0ypn86l5dx-perl-cpan-meta-yaml-0.018.drv /tmp/guix-tests/store/5ngr6g0iqi4dj8s27yrfybv38nqrzzz6-CPAN-Meta-YAML-0.018.tar.gz.drv /tmp/guix-tests/store/vca8zzap8k41maynsxbxna3ldmcn4gkd-perl-cpan-meta-requirements-2.140.drv /tmp/guix-tests/store/kd2gq3315fyp62vik956s13kbm05fsqn-CPAN-Meta-Requirements-2.140.tar.gz.drv /tmp/guix-tests/store/05sjz0rc22jvmbx96cs2dqxxs44sbhx8-texlive-fonts-latex-59745.drv /tmp/guix-tests/store/033x5fzq5q8vr6j13armc7r1ca4xwhdj-texlive-fonts-latex-59745-checkout.drv /tmp/guix-tests/store/7l5z7snlsga3fw2flfaffcxsyr6j5vvy-subversion-1.14.1.drv /tmp/guix-tests/store/501mancxh5qh5188h3paqs4pk4fq8b5y-serf-1.3.9.drv /tmp/guix-tests/store/66d050g2wvpnsc493993jdcr0aax2mvy-apr-1.7.0.drv /tmp/guix-tests/store/n4iifygzr0z00q0yanfn2ilr49dvdwxi-apr-1.7.0.tar.xz.drv /tmp/guix-tests/store/mvmxxxv9329799j8k90mspfb3bs9fcjg-apr-1.7.0.tar.bz2.drv /tmp/guix-tests/store/d54vkrhnid9ih38kj5ylcx9xdpzbzbh1-serf-1.3.9.tar.xz.drv /tmp/guix-tests/store/wqp9kx7a7zhkic9dyr8dd9ydn2h9p7sm-serf-1.3.9.tar.bz2.drv /tmp/guix-tests/store/j1x5mizgcj8d336yjyprmfj581jymyr6-module-import-compiled.drv /tmp/guix-tests/store/y1x2iw8b9kpg3i84x05nrg6g3iddg01v-scons-3.0.4.drv /tmp/guix-tests/store/azxdh47x6m9zyrhj44jqw3x7dwqs7dbs-scons-3.0.4-checkout.drv /tmp/guix-tests/store/z3f881dri1cf7vycm2pw02vc628cgjbf-apr-util-1.6.1.drv /tmp/guix-tests/store/ix7s1881lq6rhnwf5999ad8h8lnqggik-apr-util-1.6.1.tar.bz2.drv /tmp/guix-tests/store/9hjylqx90b24zc48i1rs87fn1laxcbaq-lz4-1.9.3.drv /tmp/guix-tests/store/5kyr84znk1llqw0hk0wfgq6pv94c90ys-valgrind-3.17.0.drv /tmp/guix-tests/store/s7njaa84r894m76jfq3gvv4k7iav4j5r-valgrind-3.17.0.tar.xz.drv /tmp/guix-tests/store/nkxjl1qkpnhh6wg6zklyf59qjk6cpx7d-valgrind-3.17.0.tar.bz2.drv /tmp/guix-tests/store/ncjw157s7k071ih8r48gvf5qjkq4skpk-lz4-1.9.3-checkout.drv /tmp/guix-tests/store/g8xy3126li96808909l5ybaxyw6wkisb-subversion-1.14.1.tar.bz2.drv /tmp/guix-tests/store/ws0j4ngxinicvp5fs0sdqmwswq7xbjrh-utf8proc-2.5.0.drv /tmp/guix-tests/store/1jxh04yx9h1a6xg6hnp37m015wfam52d-GraphemeBreakTest.txt.drv /tmp/guix-tests/store/4bnmlj9xn83mws5626hhv24n1zi78f63-utf8proc-2.5.0-checkout.drv /tmp/guix-tests/store/vmlk6mkr23fywyyz3gg19gah64nzbdb5-NormalizationTest.txt.drv /tmp/guix-tests/store/v9nimga3xxn0pf7qdl5xr51yi4z0bwk6-module-import-compiled.drv /tmp/guix-tests/store/1xw6j6c6w8dpalm826x3c5qbv9pwdqvr-texlive-metafont-59745.drv /tmp/guix-tests/store/bkri74603h5ivpi2n8z4nbas3ghs7f2d-texlive-metafont-59745-checkout.drv /tmp/guix-tests/store/z276lcx4zcvaf5z3lw3ziig3fmpxdb8b-texlive-bin-20210325.drv /tmp/guix-tests/store/5hschmgyxcc7gnm6p1pz0cpk70fbzb1s-ruby-2.7.4.drv /tmp/guix-tests/store/p0y6mj365xhh7g30m3z9vmxijik1i89s-ruby-2.7.4.tar.xz.drv /tmp/guix-tests/store/xn88a8ymv5ykrnxg3l6c9b5vzkmywiip-ruby-2.7.4.tar.gz.drv /tmp/guix-tests/store/67dbd2w2g0rnvvpxd7yshwb2fhj18cdm-texlive-20210325-source.tar.xz.drv /tmp/guix-tests/store/hagdw0vlzdsjlb9w560y280vacwa8z7m-texlive-20210325-source.tar.xz.drv /tmp/guix-tests/store/6nkf0a3rsj2sx3hjfwnahi3blivrwyhw-zziplib-0.13.72.drv /tmp/guix-tests/store/rrx87idvzsb2nsyd7c3pcdr23yb21l5b-zziplib-0.13.72-checkout.drv /tmp/guix-tests/store/fxmpyib9fp1bzlf7rprrp5b7y1shck6w-mpfr-4.1.0.drv /tmp/guix-tests/store/fzgnb4xd6nflqfb6kgnxilrb6fk3n0xz-teckit-2.5.10.drv /tmp/guix-tests/store/i4zdw3m62k1dp3i24sz7f2hrya6hs05v-teckit-2.5.10.tar.gz.drv /tmp/guix-tests/store/nrkwb1sgmxi9xl5mbb6yf91v9m5iyhfq-potrace-1.16.drv /tmp/guix-tests/store/d8dp47hxx385s5h89zrw48yfbyay6rva-potrace-1.16.tar.gz.drv /tmp/guix-tests/store/qwcsql4dlchvyqgnmn2gqzwv9888fccc-fontforge-20201107.drv /tmp/guix-tests/store/0f4v143sf9hrkqmqs5ysjazlzhzi5sh0-libxfixes-6.0.0.drv /tmp/guix-tests/store/knm8n2122bxqf1dibappak4hpcc376q2-libXfixes-6.0.0.tar.bz2.drv /tmp/guix-tests/store/9qpacnnjw43zmf85adjky00rxy4aix33-libuninameslist-20200313.drv /tmp/guix-tests/store/wbxi070izyy2s6iklq7rx6hmgs44n68l-libuninameslist-dist-20200313.tar.gz.drv /tmp/guix-tests/store/ahx9v6vhrfvaq06ac394426hsczhmx30-fontforge-20201107.tar.xz.drv /tmp/guix-tests/store/n32nvwp2h8x6h8lsb3idxq72v13v2pwj-libspiro-20200505.drv /tmp/guix-tests/store/3zbl7jx0dlw41z4z60f439zhdd5169sf-libspiro-dist-20200505.tar.gz.drv /tmp/guix-tests/store/nmp0vl6aalsnqz0pbfzgb6pqgnjvi4zf-libxi-1.7.10.drv /tmp/guix-tests/store/xpwxn95cj41w1cmv4rfh1faccw57aqpi-libXi-1.7.10.tar.bz2.drv /tmp/guix-tests/store/yk929yppgq25xj9gmdks0lmqn6x8x3ph-libungif-4.1.4.drv /tmp/guix-tests/store/cgbwr56isj6jk92na66sxchm832n0x42-libungif-4.1.4.tar.bz2.drv /tmp/guix-tests/store/rsya1dr99cz50xq76f6pbrw1nx0qpzxa-texlive-scripts-59745-checkout.drv /tmp/guix-tests/store/vwk86m4ighfxaajsn4l7682xhy2ymczv-config-0.0.0-1.c8ddc84.drv /tmp/guix-tests/store/s68h2c2i3ryhydxzf2ssblpmmxk5p66z-config-0.0.0-1.c8ddc84-checkout.drv /tmp/guix-tests/store/y361fhjx3r74hwaa76mblzywrfmlx6xg-texlive-20210325-extra.tar.xz.drv /tmp/guix-tests/store/y6kyfa9xlx9rjnzcdmyw8nvngs44bis5-texlive-cm-59745.drv /tmp/guix-tests/store/ghpaza4260x6ly1h37ba5k807gc06784-texlive-cm-59745-checkout.drv /tmp/guix-tests/store/0jh1m2pa24fc4m3vp52vnkzvjhvsa077-texlive-hyphen-estonian-59745.drv /tmp/guix-tests/store/09k9vnd7dkb19hv8dhc34glkzbidg6vs-hyph-utf8-scripts-59745-checkout.drv /tmp/guix-tests/store/0dq37vis4zy2zd99bag4i0iq78mw4a1v-ruby-hydra-0.0-0.5abfa37.drv /tmp/guix-tests/store/1ysmk5fxbscxw9n4diiy3yx5adr8dnq5-ruby-byebug-11.1.3.drv /tmp/guix-tests/store/26b4mg3jqhlihsmgm978d2c8fl49i7i5-module-import-compiled.drv /tmp/guix-tests/store/2w24j95bmgdlwvayzgq1qa7f8xadqrkp-ruby-pry-0.13.1.drv /tmp/guix-tests/store/6wji78gb9pc5xii8sk5q171hmvrb7yx1-ruby-coderay-1.1.2.drv /tmp/guix-tests/store/9kawpyx5ba9fb681q3am22zjhgg1jzg5-coderay-1.1.2.gem.drv /tmp/guix-tests/store/bh98fdf928gv0q4n0ymma8xx7330bi35-ruby-method-source-1.0.0.drv /tmp/guix-tests/store/38f3hpg9nqpf1mpry9sp75gdznss019f-method_source-1.0.0.gem.drv /tmp/guix-tests/store/9dhf047aj852m27x46nmdq4b7zsd87lf-ruby-rspec-expectations-3.8.2.drv /tmp/guix-tests/store/i8wd4c75bz0i2hindg6fn7z7rwa1i5b4-ruby-diff-lcs-1.3.drv /tmp/guix-tests/store/cqxs3af7wl5s0lwn38wvy5v6273p13pm-diff-lcs-1.3.gem.drv /tmp/guix-tests/store/ky6mah67sg1gxqla03h0206z404sa0mi-rspec-expectations-3.8.2.gem.drv /tmp/guix-tests/store/rda40n9ii53nqi64c3f81vgij23d0g6l-ruby-rspec-support-3.8.0.drv /tmp/guix-tests/store/21y62wg9lhlbjdww03p446xsvnfcams7-rspec-support-3.8.0.gem.drv /tmp/guix-tests/store/bg2j2mqwggbmba2l6rs7mvcmigj3vp14-ruby-rspec-3.8.0.drv /tmp/guix-tests/store/4y4rkfii0f69xz4dr8xblfassd1z52z3-rspec-3.8.0.gem.drv /tmp/guix-tests/store/pabv5svh0fi3qakfkm193gxc60dbp9ny-ruby-rspec-core-3.8.0.drv /tmp/guix-tests/store/8l88vbzk9l56vxqllbhf0jdvd7qzsirl-rspec-core-3.8.0.gem.drv /tmp/guix-tests/store/qcvzzkfnkyzp5z95jhyyzc2ip0ia1lxn-ruby-rspec-mocks-3.8.0.drv /tmp/guix-tests/store/6d8qa6l899fp00yhhny22skia4j07lnh-rspec-mocks-3.8.0.gem.drv /tmp/guix-tests/store/wvq32r4jcin03byw74znklr0z8qvkyw3-pry-0.13.1.gem.drv /tmp/guix-tests/store/2xh580sg6g239mjzyda0d2m4x2s71jc7-ruby-netrc-0.11.0.drv /tmp/guix-tests/store/4gvgqk1mv282ds4crvlv95jbq32smk1q-ruby-minitest-5.14.4.drv /tmp/guix-tests/store/hycy6gnkzsw8my91n1zg27jpdx6mgi9j-minitest-5.14.4.gem.drv /tmp/guix-tests/store/w2p8dj5pvjb0g4sfniwdhiv265kkby4m-ruby-hoe-3.21.0.drv /tmp/guix-tests/store/hgrxcazfldahc04f9n6sc5j6pr0nlw54-hoe-3.21.0.gem.drv /tmp/guix-tests/store/97qwpdhz5x8n3ia17599q8sy4fn21avy-netrc-0.11.0.gem.drv /tmp/guix-tests/store/6h0pvl76javnv12cw88bdz21hppya526-ruby-rubocop-1.10.0.drv /tmp/guix-tests/store/07g51pfc3kqji3qsizy1f8ivfb64h33g-ruby-bump-0.7.0.drv /tmp/guix-tests/store/8kyyav29z5rx8r0lg39ndc91gd4dpxsc-bump-0.7.0.gem.drv /tmp/guix-tests/store/30z0lizhqz6r3xqhy43i5gwbp0vhvd2n-ruby-docile-1.1.5.drv /tmp/guix-tests/store/9x16xh52jrksjdgx4qp7ii1pl2l5419m-docile-1.1.5.gem.drv /tmp/guix-tests/store/5g012b5cip9yhpcj07b946q4jh43c6g6-ruby-stackprof-0.2.17.drv /tmp/guix-tests/store/1q06r0pq2nvqdpcqdqqf8s5k0d7h5bip-ruby-mocha-1.13.0.drv /tmp/guix-tests/store/02lnrd9jma1nxl1h3fczcad93h5j23k3-ruby-instantiator-0.0.7.drv /tmp/guix-tests/store/0byv9wgigil4c80hsik820afxhpgb0ax-ruby-power-assert-1.1.5.drv /tmp/guix-tests/store/514snacixlp7g53y6ialz6z5xk0ija68-power_assert-1.1.5.gem.drv /tmp/guix-tests/store/vqjmr8l2ahknl228l319p20glq46syvs-bundler-2.1.4.drv /tmp/guix-tests/store/hvnmwp7n0dvj0dahfn42ay0g2nbwz9bl-bundler-2.1.4.gem.drv /tmp/guix-tests/store/5ac160n1w9zmk0iyn3vrhqprk3j5v03n-ruby-blankslate-3.1.3.drv /tmp/guix-tests/store/n5wa6k3fjxlqkwssyb3vcvgchg5klc6v-blankslate-3.1.3.gem.drv /tmp/guix-tests/store/s989ma6vcqcgk2pciahirrnfk9p79yy2-ruby-test-unit-3.4.4.drv /tmp/guix-tests/store/cy85lpk0k0wzhh5mn8rp4136sxdgy5ps-ruby-packnga-1.0.4.drv /tmp/guix-tests/store/kjq3j8ni1c3dk7alnj339ghqvp6mjlj8-ruby-yard-0.9.25.drv /tmp/guix-tests/store/bfcwd393pdrkkr91gjjh90nsdplpdrvv-ruby-yard-0.9.25-checkout.drv /tmp/guix-tests/store/nmjvrv4k6jxjkv98km2b8xyhigw8c87w-ruby-locale-2.1.2.drv /tmp/guix-tests/store/5a76rxgzgpiazkk8wvwalawmjlpwifbn-locale-2.1.2.gem.drv /tmp/guix-tests/store/r9vmnbr2zvy7zjqhradqnqdqcg39yd6i-packnga-1.0.4.gem.drv /tmp/guix-tests/store/v2r729q0axbk3m1nc2fq4zhr8m5cnp9i-ruby-text-1.3.1.drv /tmp/guix-tests/store/fh16xjhr77xh6hlq047kq7wmv0jb3wcz-text-1.3.1.gem.drv /tmp/guix-tests/store/yl064v4hw0kbk4al6pw7cphksqhs757a-ruby-gettext-3.1.7.drv /tmp/guix-tests/store/v0asfhwjggf98vfnvq24rydsa53mdwzl-gettext-3.1.7.gem.drv /tmp/guix-tests/store/hslnwnxxhplv5s4yybrw6a4s21la9m33-test-unit-3.4.4.gem.drv /tmp/guix-tests/store/zjb137yzvp0nmifbkfhlbj756chpr6wj-instantiator-0.0.7.gem.drv /tmp/guix-tests/store/053mv7y6n1a1hypwi1nmj4vn06gczpxj-mocha-1.13.0.gem.drv /tmp/guix-tests/store/4sk5201rg0qmp1lmljl0m222kfbqxrz7-ruby-introspection-0.0.4.drv /tmp/guix-tests/store/gimy8279zh3nw7fngwln4ik0cdk2df38-ruby-metaclass-0.0.4.drv /tmp/guix-tests/store/86w5iy89v8ccpizv14f0hck23iadqc8c-metaclass-0.0.4.gem.drv /tmp/guix-tests/store/pxxkh2xhd2q59cvq69wg77ms6c27i4b9-introspection-0.0.4.gem.drv /tmp/guix-tests/store/8dhn1zvvl8167n919bl9p92ny2nx6xw7-ruby-rake-compiler-1.1.1.drv /tmp/guix-tests/store/9pjgzxz6b3271yh5igzn1053vl1b589w-rake-compiler-1.1.1.gem.drv /tmp/guix-tests/store/js7fdhfm8z411czqx0hhmbk1i5i14333-stackprof-0.2.17.gem.drv /tmp/guix-tests/store/62dyfwxlz939skk3hdzzjr7bsax59wz4-ruby-rubocop-rspec-2.2.0.drv /tmp/guix-tests/store/pmjna5gqv7rcigy49igjshs0n3wfvn4c-ruby-rubocop-rspec-2.2.0-checkout.drv /tmp/guix-tests/store/7652z4wd9n4akn79w0cf4fb81k4l35jc-ruby-rubocop-1.10.0-checkout.drv /tmp/guix-tests/store/7fvyf1w7rv98x7ld33zavy3ywqxc2m7p-ruby-hashdiff-1.0.1.drv /tmp/guix-tests/store/0inr1a5kv6jqqqsxpwn874bs4dk49a0j-ruby-rspec-expectations-2.14.5.drv /tmp/guix-tests/store/0wpfzi41r15awjl1i972k6bhppwv2vil-rspec-expectations-2.14.5.gem.drv /tmp/guix-tests/store/bhfxf6n0qmykxnki79sk3mdninllygjd-ruby-rspec-mocks-2.14.6.drv /tmp/guix-tests/store/9874b00jaans6n95czizpm8p4myg2ppi-rspec-mocks-2.14.6.gem.drv /tmp/guix-tests/store/fh3cq8bqvbknplz5l932y45wxmh8v8qs-hashdiff-1.0.1.gem.drv /tmp/guix-tests/store/n90i8gy8xfmnm1csmli37zwz25d8bjkw-ruby-rspec-core-2.14.8.drv /tmp/guix-tests/store/f73prc25qp5s40plz26xhyyw5qxhqw1j-rspec-core-2.14.8.gem.drv /tmp/guix-tests/store/sw722sandc4q3z2q6rsr3k0jbn24zbsv-ruby-rspec-2.14.1.drv /tmp/guix-tests/store/blmgy1wml1jiywqlzm5q7g0vsm93flvq-rspec-2.14.1.gem.drv /tmp/guix-tests/store/8znqjirknqfzy0kw8qcirfy1dlcnyx6k-ruby-rubocop-performance-1.9.2.drv /tmp/guix-tests/store/qz1i3v4pfif9ki9zb56bm2ahgdpcdgay-ruby-rubocop-performance-1.9.2-checkout.drv /tmp/guix-tests/store/ak191g08768f6vkffd4862vrmwx4c70i-ruby-progressbar-1.10.1.drv /tmp/guix-tests/store/sga6ry8js1gg2jyy2ip7ah5hwyiiqgw2-ruby-progressbar-1.10.1.gem.drv /tmp/guix-tests/store/barpbg063hfrgdsi16s4dkq04i9kp6xq-ruby-parser-3.0.0.0.drv /tmp/guix-tests/store/1y38xv3z2yls22as9yh8s2lx20n4sa0i-ruby-cliver-0.3.2.drv /tmp/guix-tests/store/rj6qrzd987wm8298fzhw8fmjrpkby1qz-cliver-0.3.2.gem.drv /tmp/guix-tests/store/8mglqpwk0s8pq8hcg74wkcdp4s54jy2r-parser-3.0.0.0.gem.drv /tmp/guix-tests/store/8qm7n1ync8y0cf2fn5fq12l7xmfk8j0b-ragel-6.10.drv /tmp/guix-tests/store/i0vm7zlh5nsd7f4drlqqdhdlwqh27pw3-ragel-6.10.tar.gz.drv /tmp/guix-tests/store/gixqhdsqvp70qrzp7mrkn4hq27p4sly9-ruby-json-2.1.0.drv /tmp/guix-tests/store/knv0k9lsz5ajbfj23mgdhyyhr0hqbpgj-json-2.1.0.gem.drv /tmp/guix-tests/store/lrm0k0zfba7ilb9acpz9m4paka69nq8m-ruby-simplecov-0.17.1.drv /tmp/guix-tests/store/j6fdkjd9qzhmiwjnp7wagfb4sg2z3gnk-simplecov-0.17.1.gem.drv /tmp/guix-tests/store/pr9kr5aa0lmxpbbpfpcqvxr1s8x9ga95-ruby-simplecov-html-0.10.2.drv /tmp/guix-tests/store/jk7z42xmya0ghbpz5qql3z8ifhh84lbh-simplecov-html-0.10.2.gem.drv /tmp/guix-tests/store/p89153h77a88k9l2d2cqrxk19h7fargs-ruby-ast-2.4.2.drv /tmp/guix-tests/store/254blxdxglj3gj18bhajbssmc5axjg2x-ruby-ast-2.4.2-checkout.drv /tmp/guix-tests/store/2c857zqjak3c0xiamk2bfq6kz2iwf9x9-ruby-domain-name-0.5.20190701.drv /tmp/guix-tests/store/03khk7fhkswi7jv5yvw4pyk9hdzaqm48-ruby-tzinfo-data-1.2021.1.drv /tmp/guix-tests/store/1cmwqrzk230ym91g1znpyr1jpdfn1sib-ruby-tzinfo-data-1.2021.1-checkout.drv /tmp/guix-tests/store/fg47liyppziz4hgfl7lzbxsmj4c4n4kg-ruby-tzinfo-2.0.4.drv /tmp/guix-tests/store/7vqvi6pm10azixnafka3qz3kf1h6fmla-ruby-tzinfo-2.0.4-checkout.drv /tmp/guix-tests/store/p9rl8vc22dx7pddkhkagiddyx766953n-ruby-concurrent-1.1.5.drv /tmp/guix-tests/store/8p1pck5f7hizcdjg1j7rznyy3p3y205k-ruby-concurrent-1.1.5-checkout.drv /tmp/guix-tests/store/jhx40532r42q1w4l72hd5ap92nzjfs2m-tzdata-for-ruby-tzdata-info.drv /tmp/guix-tests/store/5xyv88lb1gsh9shy786ngc8qa531z1xk-tzdata2021a.tar.gz.asc.drv /tmp/guix-tests/store/qsa5s6m02i62vck7q62q3r6s0zw0r99j-tzcode2021a.tar.gz.asc.drv /tmp/guix-tests/store/sins7ly7xirxvxc08yw0xwfl4fr1pzvi-tzdata2021a.tar.gz.drv /tmp/guix-tests/store/zclshcmjlqq7zcgjvqcq1qcyb65rgx9j-tzcode2021a.tar.gz.drv /tmp/guix-tests/store/061r263pipd3fpyfqrhrjbjxzmsll5rh-ruby-i18n-1.7.0.drv /tmp/guix-tests/store/y4myj60x799pk1dxyrhwa9042v4jzmjw-i18n-1.7.0.gem.drv /tmp/guix-tests/store/46wjdzvp2ga3ip4dwy2iijjpsnlxlchf-domain_name-0.5.20190701.gem.drv /tmp/guix-tests/store/4jqlnyq78lsmqb1g6rpzs3hawxcf052s-ruby-shoulda-3.5.0.drv /tmp/guix-tests/store/6hylimcqh76xq1sjrkzg5mks7cr2q5gd-ruby-shoulda-matchers-2.8.0.drv /tmp/guix-tests/store/hm672xwh1bp1vrc80fqqcn1zjlm5v2pz-ruby-activesupport-6.1.3.drv /tmp/guix-tests/store/msx4ky62gxj0865hml70wqd1k0rpclgz-activesupport-6.1.3.gem.drv /tmp/guix-tests/store/s11mwmn1ngq35lmm4hyw1vz5ah2244z1-ruby-zeitwerk-2.4.2.drv /tmp/guix-tests/store/2b105vgchir450373fa56f30njwx7gg3-ruby-builder-3.2.4.drv /tmp/guix-tests/store/87rlrdp0xcj1dwvrklqyh9r3g95j15x3-builder-3.2.4.gem.drv /tmp/guix-tests/store/801qik2lwza1wkqqscndi3p5r5bxi2lz-ruby-zeitwerk-2.4.2-checkout.drv /tmp/guix-tests/store/9m1plyv8jmdjra00f4768n6xk6bmxkwa-ruby-ansi-1.5.0.drv /tmp/guix-tests/store/p6fp3x8a3q826f16cygg60q2n993xkhd-ruby-ansi-1.5.0-checkout.drv /tmp/guix-tests/store/g2xabwjldyajhaacvkmscxbhnmzy2hmm-ruby-minitest-focus-1.1.2.drv /tmp/guix-tests/store/c3f0yikhlqw96k658vwd11n01bmrwi9r-minitest-focus-1.1.2.gem.drv /tmp/guix-tests/store/zpzlzr6diac9xkvdp1j156g5lrq21xbw-ruby-minitest-reporters-1.3.6.drv /tmp/guix-tests/store/7bq2dfcbnp611qqkv8slc21shpk95iip-minitest-reporters-1.3.6.gem.drv /tmp/guix-tests/store/82l5370rprgal98d7jijnzzcyybjgr9k-ruby-maruku-0.7.3.drv /tmp/guix-tests/store/2dd8nc8lmzkdibr1ypza2s83212rkarf-ruby-nokogiri-1.10.9.drv /tmp/guix-tests/store/b2fxg2i2rlm2j5mzwal2b6548fvi38xd-ruby-pkg-config-1.2.5.drv /tmp/guix-tests/store/rr0nhvrwinx30n221mkkxwa451vx6fh5-pkg-config-1.2.5.gem.drv /tmp/guix-tests/store/cm41f11gn2gz1vp7izrabz0cmhnrx9vy-nokogiri-1.10.9.gem.drv /tmp/guix-tests/store/j8ciqchr1jqb0cyaykl2mqmcvngr3kfg-ruby-mini-portile-2.4.0.drv /tmp/guix-tests/store/clb0dzyvmlygrm71agnvxf6v8lzy058i-mini_portile2-2.4.0.gem.drv /tmp/guix-tests/store/991ycmi0xqrrfi5s8wbcgh2hwk3f078y-maruku-0.7.3.gem.drv /tmp/guix-tests/store/kz7krrqglhj73145gyab4vqkn4qxbmn4-ruby-tdiff-0.3.3-1.b662a604.drv /tmp/guix-tests/store/4ffbrk1ji8c806gjhvbf379qp3schp5d-ruby-rubygems-tasks-0.2.5.drv /tmp/guix-tests/store/xzzpfww7080f2w2yp1ddh9k572smy7gc-rubygems-tasks-0.2.5.gem.drv /tmp/guix-tests/store/l6wryykpzzg7b6imkkkwjqqmsc3ivdfg-ruby-tdiff-0.3.3-1.b662a604-checkout.drv /tmp/guix-tests/store/z2960r5kclhjn62fid4pzaiha44h27xh-ruby-nokogiri-diff-0.2.0-1.a38491e4.drv /tmp/guix-tests/store/ka06a79pbln5bccambpang1cw36b1wwm-ruby-nokogiri-diff-0.2.0-1.a38491e4-checkout.drv /tmp/guix-tests/store/vdklsvakz5gkc7iyg0pvqmhj6rqbsx7r-shoulda-matchers-2.8.0.gem.drv /tmp/guix-tests/store/fzh6fnfpb74c909c399kwvlqmv2hvrdf-ruby-shoulda-context-1.2.2.drv /tmp/guix-tests/store/hcs0gx3wwkdd92z6k7vim37k38zrz4wb-shoulda-context-1.2.2.gem.drv /tmp/guix-tests/store/y96fyaybzd4kyi3hpwlsazhs1j4wa1az-shoulda-3.5.0.gem.drv /tmp/guix-tests/store/ar402dq1346frgprz2lbrjrncrjs7lkj-ruby-unf-0.1.4.drv /tmp/guix-tests/store/81n8d2b7ssvar6dba8axb4ls4ajg8gn6-unf-0.1.4.gem.drv /tmp/guix-tests/store/jvqmk9skm6s9gmnjkxri238jikjya6s6-ruby-unf-ext-0.0.7.6.drv /tmp/guix-tests/store/63i32snyls5yqx0459nsvzi57s09g8b6-unf_ext-0.0.7.6.gem.drv /tmp/guix-tests/store/404hn9glql7z6a8msp4m86rkxxgghq0j-ruby-rest-client-2.0.2.drv /tmp/guix-tests/store/5q0sn0rc3f3bdf2sml63sn00yh4zgdx2-ruby-http-cookie-1.0.3.drv /tmp/guix-tests/store/8id5vl445p9km07lwj1pdzfqs6z20gs6-ruby-sqlite3-1.4.2.drv /tmp/guix-tests/store/8lnx7zdvkvrvgxc8rw9qpzvc76bwd5iz-ruby-mini-portile-0.6.2.drv /tmp/guix-tests/store/80i0sjgz0k58iwvm4lqm9a1x98mbaiqq-mini_portile-0.6.2.gem.drv /tmp/guix-tests/store/jyw2733d5vqrsb5gkimnr6cbjam27wck-sqlite3-1.4.2.gem.drv /tmp/guix-tests/store/fhjzbzy53zw09sf36vkdr5s3av6gv4fb-http-cookie-1.0.3.gem.drv /tmp/guix-tests/store/i9dcbld1h77c6dlz705gzd93pa4vanaf-ruby-addressable-2.7.0.drv /tmp/guix-tests/store/9z637vk5q097lg1ifrbfwmcjgz35k796-ruby-rspec-its-1.3.0.drv /tmp/guix-tests/store/xckn24dh0hfhwmx5hiqd2km4861lna28-ruby-rspec-its-1.3.0-checkout.drv /tmp/guix-tests/store/h9p8h4amkx2qdaib9k8aax8bsgpqyynp-ruby-idn-ruby-0.1.0.drv /tmp/guix-tests/store/1spqrxdrwp5g8ni7hcrjwh5m0dh10jz4-idn-ruby-0.1.0.gem.drv /tmp/guix-tests/store/k4l32ygzzkvaqdapxmapys4939ckms09-ruby-public-suffix-4.0.5.drv /tmp/guix-tests/store/y18v285grbrrxvir9wshqb1bxa53kwqm-public_suffix-4.0.5.gem.drv /tmp/guix-tests/store/mdciv99f1aqf5ar913h0hlca9q9l92l7-addressable-2.7.0.gem.drv /tmp/guix-tests/store/vnfbxp6di0lfr519gcbs8569n691llg8-ruby-rack-2.2.3.drv /tmp/guix-tests/store/19xmw0a5yr76layfk6xpkk2n96zfak83-ruby-minitest-global-expectations-1.0.1.drv /tmp/guix-tests/store/5csdmfy54q7y30gglv1whj3pwfvsv92m-minitest-global_expectations-1.0.1.gem.drv /tmp/guix-tests/store/zg9cjlyzwn4hpbyrhh8h6bijvhl63pr9-ruby-rack-2.2.3-checkout.drv /tmp/guix-tests/store/v9wfj9rl4qwqh0lck3hpcl2r7qg0zyz5-ruby-rack-2.2.3-checkout.drv /tmp/guix-tests/store/xnqsbi6pygn3i23jbv5vw95gc6ngjjra-ruby-sporkmonger-rack-mount-0.8.3-1.076aa2c.drv /tmp/guix-tests/store/yyxgsxqlq2rg8isf6k3aafv3a8k37j8z-ruby-sporkmonger-rack-mount-0.8.3-1.076aa2c-checkout.drv /tmp/guix-tests/store/ihdqbx5l0jvbsssvplfhs703rb0cji5r-ruby-mime-types-3.1.drv /tmp/guix-tests/store/1qw0g42dpp7sx7nrl5ra44738cikjq91-ruby-minitest-rg-5.2.0.drv /tmp/guix-tests/store/f20xmn9gy6bw725x59p9hqx94pij26m3-minitest-rg-5.2.0.gem.drv /tmp/guix-tests/store/35ziwidzi8qr14i5gz02gxfy3kdhn4hg-ruby-minitest-hooks-1.5.0.drv /tmp/guix-tests/store/77p7vi2kcc3ybnixayir2bg7ccika5y4-minitest-hooks-1.5.0.gem.drv /tmp/guix-tests/store/7spwq687ymknss2xb7dz75akxlk6zndj-ruby-sequel-5.47.0.drv /tmp/guix-tests/store/igq2lasd8yrxrp8b432hcka6b6an0gk1-sequel-5.47.0.gem.drv /tmp/guix-tests/store/5ydd9fjxgzqfak9dhsj7754d4v7lq5ic-ruby-fivemat-1.3.7.drv /tmp/guix-tests/store/5xcrb9gs1zn7pzg8b7n0xdaq2sicj9cg-fivemat-1.3.7.gem.drv /tmp/guix-tests/store/6qaw6lgpgvbqvhjnhhgkfqckzf4xflzz-mime-types-3.1.gem.drv /tmp/guix-tests/store/h1hd25r8csxf8zm22l79m0j6kd0lv8s5-ruby-minitest-bonus-assertions-3.0.drv /tmp/guix-tests/store/70q9a54ym66aqc70amfa7d4aysl2xac0-minitest-bonus-assertions-3.0.gem.drv /tmp/guix-tests/store/jy473bciz8rfnby3vgyrbxik9cyjm0hm-ruby-minitest-moar-0.0.4.drv /tmp/guix-tests/store/hw126lv8jaf0skr9d620nbf0z99nkrh7-minitest-moar-0.0.4.gem.drv /tmp/guix-tests/store/x9q98982k44wiyc46z05vrqd4p9w7v1s-ruby-minitest-pretty-diff-0.1-1.11f32e93.drv /tmp/guix-tests/store/8hlvcj67b1cyn5bq8ihvnbxf71ycnwib-ruby-turn-0.9.7.drv /tmp/guix-tests/store/040kcqdsqdwi0hp7i9z21byfaw0spif1-turn-0.9.7.gem.drv /tmp/guix-tests/store/hghy8mazabw7ss323qwz3r4l4jj5v1np-ruby-minitest-4.7.5.drv /tmp/guix-tests/store/kdanpxd8g2lwnnvjp8az14nhd8p1pvz4-minitest-4.7.5.gem.drv /tmp/guix-tests/store/g3l964jj5qnwhhwwm6ml3gh31z6lga0l-ruby-minitest-pretty-diff-0.1-1.11f32e93-checkout.drv /tmp/guix-tests/store/k0awd8kd1fznwc5nb029khym08k5r08y-ruby-mime-types-data-3.2016.0521.drv /tmp/guix-tests/store/xa8c9dagwcrq8hgs7rjdj60000xlpk9p-mime-types-data-3.2016.0521.gem.drv /tmp/guix-tests/store/q0n10knrnpfpbshcyz2knxs7b5ffqr9y-ruby-webmock-2.3.2.drv /tmp/guix-tests/store/cwhj57zhhw7pvc1yj13qi84ssxnbkqlz-webmock-2.3.2.gem.drv /tmp/guix-tests/store/xmnlr7pd83mgi08wirk1swkdnzb1611b-ruby-crack-0.4.5.drv /tmp/guix-tests/store/g8kbyhpxspqy5s5fna02y2r4kapv1rjg-crack-0.4.5.gem.drv /tmp/guix-tests/store/zwfv00krspzqj5pixd70js5gx5ll5p5i-rest-client-2.0.2.gem.drv /tmp/guix-tests/store/mgnh4i8gy4h2g0sgbgki2fdd0fvilhyw-ruby-kramdown-2.3.1.drv /tmp/guix-tests/store/31vdsdslls46g68rnghy193m0f754wvb-ruby-afm-0.2.2.drv /tmp/guix-tests/store/fzfc19d7dw5hn7xr5faqd23xvxs7i3cs-afm-0.2.2.gem.drv /tmp/guix-tests/store/43jas2hyrk52cxa6agzcyvcavzs1rm0s-ruby-hashery-2.1.2.drv /tmp/guix-tests/store/4if1fkx9n6n787rwmkna42h82rd0a2jm-ruby-qed-2.9.2.drv /tmp/guix-tests/store/mdf6snihkfzn07hij3gzdl75byyq7g26-qed-2.9.2.gem.drv /tmp/guix-tests/store/xpjys77v688za59rq74365gcz9b6165x-ruby-brass-1.2.1.drv /tmp/guix-tests/store/p57z1zfsn8375vvnbv6wac6pk0aqqll7-brass-1.2.1.gem.drv /tmp/guix-tests/store/666sfqprgla548313har51jgxb1nkl41-ruby-rubytest-cli-0.2.0.drv /tmp/guix-tests/store/k6cslw21a7ky2csry89rrxqgpafqjc96-rubytest-cli-0.2.0.gem.drv /tmp/guix-tests/store/v006bla1gycdazbardcwf90a199ga2a1-ruby-rubytest-0.8.1.drv /tmp/guix-tests/store/ydai14fnf0rvraa1cgvbljk0jnpsl34j-rubytest-0.8.1.gem.drv /tmp/guix-tests/store/b7p0fnzmzi5g8hhvv6xr1rqah1rqxqwf-ruby-ae-1.8.2.drv /tmp/guix-tests/store/i7whphpla9n9vr023921lxydqp1w41q7-ruby-ae-1.8.2-checkout.drv /tmp/guix-tests/store/g9s2zwlk92qqbcbhfa8qz9dwv6lcq0q4-hashery-2.1.2.gem.drv /tmp/guix-tests/store/ym2p67izjv1wndzr1al1549hs1z59sd9-ruby-lemon-0.9.1.drv /tmp/guix-tests/store/gi9y18cf0s5s7rkhmcimz9h1zbhxbzpj-lemon-0.9.1.gem.drv /tmp/guix-tests/store/6jf9piyjl2g69hzgwwx98rqhrb3skzby-ruby-ttfunk-1.6.2.1.drv /tmp/guix-tests/store/9l0dn2bav9y4sdfd9dlfgc244vdf080j-ruby-ttfunk-1.6.2.1-checkout.drv /tmp/guix-tests/store/70kzl6ck5djxzxh08y7l5bhz4zqh7j26-ruby-rc4-0.1.5.drv /tmp/guix-tests/store/h44lkkx6wijqns6i24hqi4w7dm4r66aq-ruby-rc4-0.1.5.gem.drv /tmp/guix-tests/store/al5fkg0j9cb096jpjycbhxkyf7lg26pv-ruby-pdf-inspector-1.3.0-1.00ee4c9.drv /tmp/guix-tests/store/9f5x4ch0x6xh7l1mgfq36ydfgwxbvbg2-ruby-pdf-inspector-1.3.0-1.00ee4c9-checkout.drv /tmp/guix-tests/store/dc8fb3shhj7vzsd2yw4sqanfg0p02pr0-ruby-pdf-reader-2.4.0.drv /tmp/guix-tests/store/130v7g2jnr7dayq3j4j4xxdynz498mkr-ruby-cane-3.0.0.drv /tmp/guix-tests/store/bcd0sfpbas9zx2z48pfaqjn5ql68mfzp-cane-3.0.0.gem.drv /tmp/guix-tests/store/qr7h6nghdpjy9ksxaki61kvw81365sij-ruby-parallel-1.21.0.drv /tmp/guix-tests/store/0qcc4a1d3vnyyiiskwfv1p37p3y1hnrf-ruby-activemodel-6.1.3.drv /tmp/guix-tests/store/6jgjn7ajkd7viapj749g2vzwf7pd833k-activemodel-6.1.3.gem.drv /tmp/guix-tests/store/117r31vqiirn2rv73m3pwj6q0q4m8z7q-ruby-rspec-rerun-1.1.0.drv /tmp/guix-tests/store/0npbj0hk2y3w8mzvr549f1a7wc4xypk9-rspec-rerun-1.1.0.gem.drv /tmp/guix-tests/store/6fsgm0g0g8jk9cccj2blfx42fy9gh55h-ruby-mysql2-0.5.2.drv /tmp/guix-tests/store/9zckpns68w91p514g9blbywrqwfaz9yj-mariadb-10.5.12.drv /tmp/guix-tests/store/151c3209b5zd756l6spf58mcs35y8fvy-mariadb-10.5.12.tar.xz.drv /tmp/guix-tests/store/9yx5x2jcrbqm3cqvzldmgmmq0idm77pl-mariadb-10.5.12.tar.gz.drv /tmp/guix-tests/store/f8q4d9jkq06xqf4l6fwa5fr8yzyx89d9-libaio-0.3.112.drv /tmp/guix-tests/store/yag9j7ycgkbzdgid4wxknyai0m11bag3-libaio-0.3.112.tar.gz.drv /tmp/guix-tests/store/f51ikkqcdjdax4s85kc97x9i961g40sz-ruby-mysql2-0.5.2-checkout.drv /tmp/guix-tests/store/l8hdza408kkagfhh18kanff5qqd0zsm2-ruby-parallel-1.21.0-checkout.drv /tmp/guix-tests/store/pz7ypifip13hxgyrglnj8w052q52znaq-ruby-arel-9.0.0.drv /tmp/guix-tests/store/cn34zl7v5jvbmi6c8r2j299rvsf4gy99-arel-9.0.0.gem.drv /tmp/guix-tests/store/v70y4lhwznp95iya704909m3jc8ycf3c-lsof-4.94.0.drv /tmp/guix-tests/store/9a1r4a89q64mkad3sb4jcxydvmxaqlxa-lsof-4.94.0-checkout.drv /tmp/guix-tests/store/d6khsi3qjydiqphrpy9xm5kaiafh578r-lsof-4.94.0-checkout.drv /tmp/guix-tests/store/z2v6b1wn5v968wvcwh35gv17dagafklr-ruby-activerecord-6.1.3.drv /tmp/guix-tests/store/3zz2gvjnjk3725i04z64mi5fdhw2jy28-activerecord-6.1.3.gem.drv /tmp/guix-tests/store/drlw0knmnxkmlj32xf4c7pxxzs5yc6ix-ruby-pdf-reader-2.4.0-checkout.drv /tmp/guix-tests/store/gkixgzzsvq99xb5i58kxcbxzp5dabd2v-ruby-morecane-0.2.0.drv /tmp/guix-tests/store/x98k79pjyrwi78xbhh17fxpqsq8qk2lg-morecane-0.2.0.gem.drv /tmp/guix-tests/store/l57k39caqxl4ig8xln18z1q67h2f5pzv-ruby-ascii85-1.0.3.drv /tmp/guix-tests/store/whdhzci53rl9bpv4awdmqncp5l2n1hgk-Ascii85-1.0.3.gem.drv /tmp/guix-tests/store/hwlci2qadlqvym3mp50ya0jw0hy4irrv-kramdown-2.3.1.gem.drv /tmp/guix-tests/store/miqj0j6mpqxrrdggk1qh2q2ldbqvxfq6-ruby-pdf-core-0.8.1.drv /tmp/guix-tests/store/i1qrqgd97mwlm539k8yfqc2b319jk7k1-pdf-core-0.8.1.gem.drv /tmp/guix-tests/store/q8n4m7va674ncm7vrvmqrijpfhxn0cyd-ruby-prawn-2.2.2-1.d980247.drv /tmp/guix-tests/store/gn2cdgm98p2h75j9kby1v99dpsrrnnv1-ruby-prawn-2.2.2-1.d980247-checkout.drv /tmp/guix-tests/store/nybn91vlww1v687r9mmylrzwnm1bk8fr-ruby-prawn-manual-builder-0.3.1.drv /tmp/guix-tests/store/vdl6dp97y8fqj3c5whm3ygi1qr8nmx8l-prawn-manual_builder-0.3.1.gem.drv /tmp/guix-tests/store/s7l2pq5y7lgg74686l2yzqd6nw30n3pk-ruby-prawn-table-0.2.2.drv /tmp/guix-tests/store/lf0xdsqas2yz3wm2765p9lxz4m3d4w25-prawn-table-0.2.2.gem.drv /tmp/guix-tests/store/p8nfnc4np9xbavy053b179b8cyqmfbmf-ruby-bacon-1.2.0.drv /tmp/guix-tests/store/83ms1n1ps34g6dwpc115x4w6gc4qmdd7-bacon-1.2.0.gem.drv /tmp/guix-tests/store/vdgw321mxmhqj08fz0c6wyv3ymzy3lrx-ruby-bacon-colored-output-1.1.1.drv /tmp/guix-tests/store/bnkhh7840r791v396c4lybq3yh0rmihr-bacon-colored_output-1.1.1.gem.drv /tmp/guix-tests/store/vklv44jl4mlg1k7pbgyxdrl6z6gry8z2-ruby-racc-1.5.2.drv /tmp/guix-tests/store/d75yalanpx3ahfdm0rcc9c8grcdvc4vg-racc-1.5.2.gem.drv /tmp/guix-tests/store/zinh68yk28gjlrnas61pzaahdzk5qmmq-ruby-json-pure-2.3.1.drv /tmp/guix-tests/store/c4dn8iy88pnm8339aznlq1nbm46pxqqj-json_pure-2.3.1.gem.drv /tmp/guix-tests/store/bx64lyx0a70y8nrrmprmzvkw9rlp6ifp-ruby-webmock-3.11.2.drv /tmp/guix-tests/store/45a4irglhg55ia3kmbq0z07kxcpan35k-webmock-3.11.2.gem.drv /tmp/guix-tests/store/c4drwfbpqzpvhyq0w44j3hf21isx174c-ruby-rainbow-3.0.0.drv /tmp/guix-tests/store/7iq31r3v62md57sfvpxnzdjvx84bwygq-rainbow-3.0.0.gem.drv /tmp/guix-tests/store/cb0hmmlcrp7dr0kc999npxm692xdxqa9-ruby-unicode-display-width-1.6.0.drv /tmp/guix-tests/store/lfjjy555s4i5z6a52myy8q3fr3qdxmk1-unicode-display_width-1.6.0.gem.drv /tmp/guix-tests/store/gldidddmj314hkdxbsxxj59zzqrmafli-ruby-rubocop-ast-1.4.1.drv /tmp/guix-tests/store/hrffa6gb1jcqpw8zg8hw6d8qay54i995-ruby-rake-13.0.1.drv /tmp/guix-tests/store/kv5z6cr4zyk0qiwx4kvyvxmbn3j340i3-rake-13.0.1.gem.drv /tmp/guix-tests/store/ivkwnrwdilyhl6xb5nxdhlc6v9rj6n7j-ruby-rubocop-ast-1.4.1-checkout.drv /tmp/guix-tests/store/w5sl68kz8b5ms4gjbhb0vx5sw7dfqqvj-ruby-oedipus-lex-2.5.2.drv /tmp/guix-tests/store/7rm0044kprrmwliprl9z8j26dv19mr6y-oedipus_lex-2.5.2.gem.drv /tmp/guix-tests/store/h6ylwhrd6z6vznmskxzq11wix2wrq4nx-ruby-rubocop-1.10.0.drv /tmp/guix-tests/store/kf8jdmww66ghf9fmqnvdsa3jq2g22i8k-ruby-regexp-parser-2.0.0.drv /tmp/guix-tests/store/fydm9h2hsixpdhcps0zl9yjzkylvmp4p-ruby-regexp-property-values-1.0.0-1.03007a6.drv /tmp/guix-tests/store/2n3c02ln0iwl8sv9a3vzldpvgyd1agf7-ruby-regexp-property-values-1.0.0-1.03007a6-checkout.drv /tmp/guix-tests/store/67v0kql10pj4cvxrp9q4klaf48j55xw8-ruby-character-set-1.4.0.drv /tmp/guix-tests/store/6gxam9q0wmdbqn4kkqmxdsfjrwsaq4jl-character_set-1.4.0.gem.drv /tmp/guix-tests/store/hmnaw048bffhiwb3dm7a144jxph9g37b-ruby-range-compressor-1.0.0.drv /tmp/guix-tests/store/h913hb1kp56j3z2r6zvknb9g4b57afsj-ruby-range-compressor-1.0.0-checkout.drv /tmp/guix-tests/store/snzvfjsla2y4p4h02rlgk2hzashr42lf-ruby-regexp-parser-2.0.0-checkout.drv /tmp/guix-tests/store/z66grpmkmsdlil5pvqqpkwrjs2x57cx0-ruby-test-queue-0.4.2.drv /tmp/guix-tests/store/rk8mc4jaihp7cwacvpawgw71fq692jha-test-queue-0.4.2.gem.drv /tmp/guix-tests/store/8rz2bs0pqa31ci5mk4y71kynf1586dzr-ruby-octokit-4.18.0.drv /tmp/guix-tests/store/inh5vnpi9774m3zk3kw7mbrbilcqvw6j-ruby-faraday-0.15.4.drv /tmp/guix-tests/store/7qnf9fkzrwp3i2c3ygq1wwll4a6xsmn4-faraday-0.15.4.gem.drv /tmp/guix-tests/store/s2bps14a75dz773f3nmlk61digryysqp-ruby-multipart-post-2.0.0.drv /tmp/guix-tests/store/6kqnwa1j7vpc8wcdhsh6v8g4fy3ajv43-multipart-post-2.0.0.gem.drv /tmp/guix-tests/store/sig7brrhmgl9ldvahwfhvwdkmr3v7939-octokit-4.18.0.gem.drv /tmp/guix-tests/store/wq34lfyywzxd1bah1p3x9dsnzk455grq-ruby-sawyer-0.8.2.drv /tmp/guix-tests/store/c5b3xikja96qcdwks44wgi038b70p98i-sawyer-0.8.2.gem.drv /tmp/guix-tests/store/cx6w555qhxnix1949qm06aw6jr0rj76p-ruby-byebug-11.1.3-checkout.drv /tmp/guix-tests/store/m9r6521w8nphnm954gzqkfrn9gzlsixp-ruby-byebug-11.1.3-checkout.drv /tmp/guix-tests/store/hpz8ihw4hri3qvix3ip81sklvgsjacd5-ruby-chandler-0.9.0.drv /tmp/guix-tests/store/sp6jh0yc8zryd4fk3npk5iif8qqzg93s-chandler-0.9.0.gem.drv /tmp/guix-tests/store/w3zk1g2d4fgr6ds783asfq7i917sgf2z-ruby-hydra-0.0-0.5abfa37-checkout.drv /tmp/guix-tests/store/jl12gb4nqy3cmjsj0arwf4nhvzd656x2-texlive-hyphen-estonian-59745-checkout.drv /tmp/guix-tests/store/0ncky4a88bc7j01wyhy0j32i0lrdhidw-texlive-unicode-data-59745.drv /tmp/guix-tests/store/ncm6sgavvw9ckplgaiiyaizyy0zd75mq-texlive-unicode-data-59745-checkout.drv /tmp/guix-tests/store/1iamypgxriqxg5xq55vr7mbyhp03m6lm-texlive-hyphen-sanskrit-59745.drv /tmp/guix-tests/store/sy94jbrhp0dkhiyl1rr55p4zafszvy1c-texlive-hyphen-sanskrit-59745-checkout.drv /tmp/guix-tests/store/1wfirzrwg6y8mivajvk68ac5jzd92qpx-texlive-hyphen-bulgarian-59745.drv /tmp/guix-tests/store/gyw0phsla1ysy17scpdrnvn2ps994fdh-texlive-hyphen-bulgarian-59745-checkout.drv /tmp/guix-tests/store/1y66pp9db31aabf24p3w2v3bs3np7b73-texlive-hyphen-friulan-59745.drv /tmp/guix-tests/store/bdq2spc4vyxwgic5j6dqahvki5q5rj8a-texlive-hyphen-friulan-59745-checkout.drv /tmp/guix-tests/store/2g38pi5rpz5pphbpk6mcbx5w31n6mws3-texlive-tetex-59745.drv /tmp/guix-tests/store/q825bwi5hy15mzqw8s0kh0qnidjp9gqb-texlive-tetex-59745-checkout.drv /tmp/guix-tests/store/36kjzj0yyiml211bf7zv40s8bvml0lps-texlive-latex-l3kernel-59745.drv /tmp/guix-tests/store/c7drci7hj9mvrvav2yr42r1ipxa52s9r-texlive-latex-l3kernel-59745-checkout.drv /tmp/guix-tests/store/vc53kc9vk5a5wz91dbj07m3ag1x7mzfy-module-import-compiled.drv /tmp/guix-tests/store/z8a7dipy72cdk7fdabhm85swf7v6939l-texlive-docstrip-59745.drv /tmp/guix-tests/store/vs2p5rc2mzyadd4591qqnlcbrz7621zi-texlive-docstrip-59745-checkout.drv /tmp/guix-tests/store/3g0vv1218kg4fv5bwbyjsai4xfziyb1k-texlive-hyphen-danish-59745.drv /tmp/guix-tests/store/5l6v1ib2x5c7hrjw2ihqyj2lc7lgzcf6-texlive-hyphen-danish-59745-checkout.drv /tmp/guix-tests/store/3r3hanj0m3d1s6n63ipqb2r3bi5514n0-texlive-hyphen-coptic-59745.drv /tmp/guix-tests/store/464mjwky86xwhi76nvgjvrk790bm03f4-texlive-hyphen-coptic-59745-checkout.drv /tmp/guix-tests/store/49xnsh42bh4zq1581c4cbcq9ricr4sw9-texlive-hyphen-belarusian-59745.drv /tmp/guix-tests/store/2npissy680lrkyx5f9mf1pm5qrcn64gp-texlive-hyphen-belarusian-59745-checkout.drv /tmp/guix-tests/store/4plkwy1dl6cffrxb69ki6cs3xiw9fykm-texlive-hyphen-schoolfinnish-59745.drv /tmp/guix-tests/store/ibr57wq5isx3b1pxcgcgvj88cww6yk1k-texlive-hyphen-schoolfinnish-59745-checkout.drv /tmp/guix-tests/store/4w1avzc1d7cm6aj6issafxr0s977x1m8-texlive-latex-base-59745.drv /tmp/guix-tests/store/5g0vlk8dfd2zwmq9giwnq81423lp6lgf-texlive-hyphen-galician-59745.drv /tmp/guix-tests/store/3492r0zncj65v4dafadgsb06l9ix3hz8-texlive-hyphen-galician-59745-checkout.drv /tmp/guix-tests/store/5ysx5qff3bdq37h9fhr9l57kywkrmpml-texlive-hyphen-turkish-59745.drv /tmp/guix-tests/store/8fjfmqzd9csmjpvzgnh9fpg9qkbbxw5z-texlive-hyphen-turkish-59745-checkout.drv /tmp/guix-tests/store/6d22kqj1554wkjw6pb106ahsay6r719j-texlive-hyphen-icelandic-59745.drv /tmp/guix-tests/store/g9c7jpazfyk3338np4z9ky09n30sbj37-texlive-hyphen-icelandic-59745-checkout.drv /tmp/guix-tests/store/6zsbv7bp7p3vm7xbjhbasb2rfrb8ia49-texlive-hyphen-esperanto-59745.drv /tmp/guix-tests/store/gryga1fq59ac9j615kz6fx0jc4klg8g4-texlive-hyphen-esperanto-59745-checkout.drv /tmp/guix-tests/store/742ahq9dhlvd58zr8xgwzd4njzqiw1xx-texlive-hyphen-chinese-59745.drv /tmp/guix-tests/store/ny7pk67ra6c49z9rl8mlca36hc2ifldn-texlive-hyphen-chinese-59745-checkout.drv /tmp/guix-tests/store/7nb1jwansghqfbzrxf7i1ll9w5pw90j8-texlive-knuth-lib-59745.drv /tmp/guix-tests/store/v48923xb43k102p426ylkzw7xl62zipz-texlive-knuth-lib-59745-checkout.drv /tmp/guix-tests/store/83537fhilhwdk776x1y3p89dcrgf5x1s-texlive-latexconfig-59745.drv /tmp/guix-tests/store/h43kmlj78p58amdh3vsmqwgfyqlfmxx5-texlive-latexconfig-59745-checkout.drv /tmp/guix-tests/store/8a74cgxlhcigfzg1jn6ddypdgyyi2aqs-texlive-hyph-utf8-59745.drv /tmp/guix-tests/store/dkfvvh7wfq9sps3mq4x7hmxh6akss380-texlive-hyph-utf8-59745-checkout.drv /tmp/guix-tests/store/m3g1c68mz34ia78q7bwy0g5hxa049181-texlive-tex-plain-59745.drv /tmp/guix-tests/store/kna5gxzafwkyc6qhbw95f8b8yprv7ch7-texlive-tex-plain-59745-checkout.drv /tmp/guix-tests/store/qhjf8mjb2cq1q49g8svv1is5zgdl8fa9-texlive-hyphen-base-59745.drv /tmp/guix-tests/store/p820yvcy0mdfr6rcn4q96dlzcm9p5nx9-texlive-hyphen-base-59745-checkout.drv /tmp/guix-tests/store/8idg356cww7yycj0i2q110wybldj4hvs-texlive-hyphen-catalan-59745.drv /tmp/guix-tests/store/80q61pr0c4njrmd9jlr6xxg2bn8cxqxa-texlive-hyphen-catalan-59745-checkout.drv /tmp/guix-tests/store/8mbgw4fal7my6qzqkf5k1si2h4ylvx0z-texlive-hyphen-romanian-59745.drv /tmp/guix-tests/store/n4qksi18yqpx33b1zbmbjmhdzmdsrzd9-texlive-hyphen-romanian-59745-checkout.drv /tmp/guix-tests/store/8sy4vh6xmz8gq4qwryyldmilgjk1k6z8-texlive-hyphen-dutch-59745.drv /tmp/guix-tests/store/akr925l962nkyjvwk2r14fmgbslk62db-texlive-hyphen-dutch-59745-checkout.drv /tmp/guix-tests/store/8vprd021cvzcw0biqwzblz6ydycgbr2r-texlive-hyphen-occitan-59745.drv /tmp/guix-tests/store/f0yndj8vi0iw6jkc7j7ry75avlfxi6h1-texlive-hyphen-occitan-59745-checkout.drv /tmp/guix-tests/store/929q8hsjaqchhkvm8bgg3mqicc6ma1xj-texlive-hyphen-welsh-59745.drv /tmp/guix-tests/store/yn4mdhybwnga5djb0wfz8hxlxl7m6adj-texlive-hyphen-welsh-59745-checkout.drv /tmp/guix-tests/store/999rc8dva80nqbv63ji6b2ir2dwygj42-texlive-ukrhyph-59745.drv /tmp/guix-tests/store/jh0r74c2ydjv1ji06vdgayq2b3wq636j-texlive-ukrhyph-59745-checkout.drv /tmp/guix-tests/store/9f5x3rmlrz5r6hj01d4wnkx9cpczm9hw-texlive-hyphen-lithuanian-59745.drv /tmp/guix-tests/store/1x31y4il4agkmabznvb80pizxk567vgf-texlive-hyphen-lithuanian-59745-checkout.drv /tmp/guix-tests/store/a07j3pg0jnmcq29b2zdi74y36lcqrpmx-texlive-hyphen-spanish-59745.drv /tmp/guix-tests/store/3nhal4xx0zb3phb05j51v9s4037yvf7i-texlive-hyphen-spanish-59745-checkout.drv /tmp/guix-tests/store/axskv7b2blf6gpp3mxgkdm5z0rdvyysy-texlive-hyphen-kurmanji-59745.drv /tmp/guix-tests/store/ns5kjzmgrvwgfli70ndvw52i1v4gbdrx-texlive-hyphen-kurmanji-59745-checkout.drv /tmp/guix-tests/store/bg1yqdabykjza0pmjnxihc1w4pcvqj1x-texlive-hyphen-finnish-59745.drv /tmp/guix-tests/store/yb98cywdaac9br29ircamag7jvxa51r4-texlive-hyphen-finnish-59745-checkout.drv /tmp/guix-tests/store/c2hdz19w4c2fccqshw93mgdwak8vifyc-texlive-dehyph-exptl-59745.drv /tmp/guix-tests/store/y92mbkjmia5006bzxm6nj5nbmvz5mb9k-texlive-dehyph-exptl-59745-checkout.drv /tmp/guix-tests/store/cx39d2gv230hr5bqwzap712fd6lamvi9-texlive-hyphen-irish-59745.drv /tmp/guix-tests/store/sq2aydqrnk8bn5s5dlagip02kzif8hl3-texlive-hyphen-irish-59745-checkout.drv /tmp/guix-tests/store/dd043f39cl5aq7vivd0lzi9s915rn1ah-texlive-hyphen-greek-59745.drv /tmp/guix-tests/store/02fiq2igi1dfbh2qk44aaz0l7x0qqdrn-texlive-hyphen-greek-59745-checkout.drv /tmp/guix-tests/store/ddv5n1cxhbqhfsbba93vdiqy31wrv573-texlive-hyphen-georgian-59745.drv /tmp/guix-tests/store/sfm2c8nvc97ln5z4bqzdlijh81x2yah5-texlive-hyphen-georgian-59745-checkout.drv /tmp/guix-tests/store/df45idg8zga0aqmm5z92drkk2gdrrc1n-texlive-ruhyphen-59745.drv /tmp/guix-tests/store/ix8fjhyr1rhdkx6b24gcq3zp4zjvfh6i-texlive-ruhyphen-59745-checkout.drv /tmp/guix-tests/store/djadrny81scy66qyvqlyy8zkxvf1p141-texlive-hyphen-ethiopic-59745.drv /tmp/guix-tests/store/mprim31imayp1i3ivriyq656f8b24l0w-texlive-hyphen-ethiopic-59745-checkout.drv /tmp/guix-tests/store/ds3wg006ma4i8cxh0xq57fxn1rbksf10-texlive-hyphen-macedonian-59745.drv /tmp/guix-tests/store/kz4yzljslf337rrxwi03ri0qkq96gmny-texlive-hyphen-macedonian-59745-checkout.drv /tmp/guix-tests/store/f2r618g0isy7chp1drxx0wpp4rn0bawz-texlive-hyphen-indonesian-59745.drv /tmp/guix-tests/store/crxzvn6wjl41fl8hb92zm0kkcf44dgpk-texlive-hyphen-indonesian-59745-checkout.drv /tmp/guix-tests/store/fp7bcfxm0hzgqrvm7hk9ys3pn8zzspqk-texlive-hyphen-croatian-59745.drv /tmp/guix-tests/store/3ddg5jv999qkcfy02dkbin1skwagcnd1-texlive-hyphen-croatian-59745-checkout.drv /tmp/guix-tests/store/fyf0sccjrvn7bp138d375w0l20irvi9s-texlive-hyphen-french-59745.drv /tmp/guix-tests/store/cj2w2qq0z8jn5109j4qai380siacwxzj-texlive-hyphen-french-59745-checkout.drv /tmp/guix-tests/store/ghcrjphx72kcdari83zjh2rnc6b3sn2g-texlive-hyphen-norwegian-59745.drv /tmp/guix-tests/store/3ayx9rm7z7q9816cybvqf16mm4sxcd3f-texlive-hyphen-norwegian-59745-checkout.drv /tmp/guix-tests/store/ghkhlh9ysffrix0bfk8x25hja56d3qi3-texlive-latex-base-59745-checkout.drv /tmp/guix-tests/store/gk8yk3fmyrqgax5cshsa2z1qjc2si30f-texlive-hyphen-armenian-59745.drv /tmp/guix-tests/store/8idp13i46xqsa2y329bhg55c30skwwwi-texlive-hyphen-armenian-59745-checkout.drv /tmp/guix-tests/store/h8d3rm2smi56s1zmwf0r2xc16r62n0vd-texlive-hyphen-russian-59745.drv /tmp/guix-tests/store/njhg4j0bavxamb5p1yxzi4p6a27igjac-texlive-hyphen-russian-59745-checkout.drv /tmp/guix-tests/store/hasasspbxkp6vv6iz7vdl69cjgi19xbd-texlive-hyphen-ukrainian-59745.drv /tmp/guix-tests/store/hnhp8gy8zkb6ryakcmrpkx1nd0k9a005-texlive-hyphen-ukrainian-59745-checkout.drv /tmp/guix-tests/store/hy3gzb1kvz6z0j7dlrp0lzs0kjpcz35v-texlive-hyphen-polish-59745.drv /tmp/guix-tests/store/a0bzaad262bn3dmbz0ns02g54jrl17c7-texlive-hyphen-polish-59745-checkout.drv /tmp/guix-tests/store/j0pamvcy8hkij2di7vxcwpxbd5lx0r70-texlive-luatexconfig-59745-checkout.drv /tmp/guix-tests/store/ja1vnz4ir21jgxwaxrs5vamsyz2vlqml-texlive-hyphen-slovenian-59745.drv /tmp/guix-tests/store/9v9vspd2bxkd52yhxwad4mn7h66sqwc2-texlive-hyphen-slovenian-59745-checkout.drv /tmp/guix-tests/store/jhaqhkv0b17x6p826v7adcj4bl11s807-texlive-hyphen-serbian-59745.drv /tmp/guix-tests/store/ksbc9bckv7d7hn5z9864hpcmb2pz2ibw-texlive-hyphen-serbian-59745-checkout.drv /tmp/guix-tests/store/jv2gbw9j0xcxq6giv6bkvsrac9v6lwhh-texlive-hyphen-turkmen-59745.drv /tmp/guix-tests/store/2qqv38v1brsl2yp5wmzzbsq5yj3q9yfl-texlive-hyphen-turkmen-59745-checkout.drv /tmp/guix-tests/store/jw6vqxl67y3s30lil0xyyc4wcpsympxq-texlive-hyphen-uppersorbian-59745.drv /tmp/guix-tests/store/3fvxfszmw0y354xs96x318s4y90yslmc-texlive-hyphen-uppersorbian-59745-checkout.drv /tmp/guix-tests/store/k4bzmzrf684q1iqrgjv7sijb431lsvha-texlive-hyphen-thai-59745.drv /tmp/guix-tests/store/586wy9h1s6n77xxilv2wc63rhpyqwwp5-texlive-hyphen-thai-59745-checkout.drv /tmp/guix-tests/store/lb7bgkdjc5fph5lb9g255cyxfh8cxhfs-texlive-hyphen-slovak-59745.drv /tmp/guix-tests/store/xij7xqzsdxc521w57f88nkhl1m6gh0l7-texlive-hyphen-slovak-59745-checkout.drv /tmp/guix-tests/store/li0cx82377r9kyimpcp84hva3bl6qvha-texlive-hyphen-basque-59745.drv /tmp/guix-tests/store/4bidv6ypjzbin0sdhiixchh08nhk6hcn-texlive-hyphen-basque-59745-checkout.drv /tmp/guix-tests/store/lsn3y9n94wm1vwrvf7yilmd7s4anzmij-texlive-hyphen-latvian-59745.drv /tmp/guix-tests/store/p2za8jrrh7kj9zryk4dhsy9vwpqfg156-texlive-hyphen-latvian-59745-checkout.drv /tmp/guix-tests/store/m62cvfvhagmh2ig8ghfri826w82sa65x-texlive-kpathsea-59745.drv /tmp/guix-tests/store/n9bjk653lwzvpp5lxm2cjgbzdxwjp0ag-texlive-kpathsea-59745-checkout.drv /tmp/guix-tests/store/mhwymi5cvm6d2j15ip3l9n82bfarw8vr-texlive-hyphen-portuguese-59745.drv /tmp/guix-tests/store/papkw00l80wwnjgk7gvh8psvnvh998r4-texlive-hyphen-portuguese-59745-checkout.drv /tmp/guix-tests/store/miscccyxnc706ypvlz8wk1gjjx2n3k86-texlive-hyphen-mongolian-59745.drv /tmp/guix-tests/store/fn7nahrkyj0vv4gbga98h85bay3gxis6-texlive-hyphen-mongolian-59745-checkout.drv /tmp/guix-tests/store/mzk1ri3cqdhi80f0zaknz211b8lzsziz-texlive-hyphen-latin-59745.drv /tmp/guix-tests/store/48dsri50w40265slbklmhrkhks2gl872-texlive-hyphen-latin-59745-checkout.drv /tmp/guix-tests/store/n4wsp8xk7vyb9gf8mvn9jxshf57cdyss-texlive-hyphen-romansh-59745.drv /tmp/guix-tests/store/qkc7lx2zaq67b0n9ajd4yrm57j2mbc4h-texlive-hyphen-romansh-59745-checkout.drv /tmp/guix-tests/store/n85zjwa5nl5gh7ycsmjyx37il4h0lx7i-texlive-hyphen-ancientgreek-59745.drv /tmp/guix-tests/store/22nvf7lmzhrv14r3hbpz1wjb45hlrna9-texlive-hyphen-ancientgreek-59745-checkout.drv /tmp/guix-tests/store/n9iyfz4z7ibr7ld4p03lmjppyk352ivr-texlive-etex-59745.drv /tmp/guix-tests/store/hh56yd2gzy02i8j0q56za2gsll9sq3xc-texlive-etex-59745-checkout.drv /tmp/guix-tests/store/p1i7apwxxl2rwlhk4sy8al45v4wa1i2p-texlive-hyphen-afrikaans-59745.drv /tmp/guix-tests/store/fb6f3viwwaswn7gmpaczyp8qkd5xwrx9-texlive-hyphen-afrikaans-59745-checkout.drv /tmp/guix-tests/store/p9cymrnkvppnk94k7740jrbm0qh0zgv4-texlive-latex-l3backend-59745.drv /tmp/guix-tests/store/7c6py2c9mmxxy9mpi10zlyng28gvqx5q-texlive-latex-l3backend-59745-checkout.drv /tmp/guix-tests/store/pqgi7123kdhip7f2l9bfv9dph1ff58av-texlive-hyphen-piedmontese-59745.drv /tmp/guix-tests/store/vy1hlcwibafrl9n293l4ib3k13qz74ij-texlive-hyphen-piedmontese-59745-checkout.drv /tmp/guix-tests/store/qfa04wr43v6v4yhsbxvd0fxgsil45l7g-texlive-hyphen-indic-59745.drv /tmp/guix-tests/store/9a5f2mb55hbcv2zg8fs68vbillc1sp2q-texlive-hyphen-indic-59745-checkout.drv /tmp/guix-tests/store/rry4brx0r00sx2zl7w2lv2jy2vpp92s8-texlive-hyphen-german-59745.drv /tmp/guix-tests/store/hfvszmswv2mnr5qiabm92596q01l356p-texlive-hyphen-german-59745-checkout.drv /tmp/guix-tests/store/s5xx7w0fvyfbk4w9nlki2gbrs2irjqwa-texlive-hyphen-hungarian-59745.drv /tmp/guix-tests/store/jqimih64y1yg3xhyr8xn7kr4f9wz3m5d-texlive-hyphen-hungarian-59745-checkout.drv /tmp/guix-tests/store/sf7i0m5y6d1g11cy5xzy611b9vbj2r5x-texlive-tex-ini-files-59745.drv /tmp/guix-tests/store/1i4hpj2w5i0wxjxdkdnqy24vgpp4cjjx-texlive-tex-ini-files-59745-checkout.drv /tmp/guix-tests/store/slzrv82lwgs696n018p82rc1zd8bin5l-texlive-hyphen-czech-59745.drv /tmp/guix-tests/store/wsdyr8v0xmy2i28wazgmmskhjgcpkkxi-texlive-hyphen-czech-59745-checkout.drv /tmp/guix-tests/store/svrfmg28nhzv9588avsyxkskgxa7c475-texlive-hyphen-interlingua-59745.drv /tmp/guix-tests/store/n86bbl111pzx2jvmabapz8mw1wgiwx4s-texlive-hyphen-interlingua-59745-checkout.drv /tmp/guix-tests/store/syfpc9hdn3xwiqw5rgwdxvb8vxnr7qgw-texlive-hyphen-swedish-59745.drv /tmp/guix-tests/store/dql4a1j3f2gsj4l6gr1ni30vd5rp0rxk-texlive-hyphen-swedish-59745-checkout.drv /tmp/guix-tests/store/vjgkk4pq4ydvlv4hs3ialgvc3vhd8saq-texlive-hyphen-english-59745.drv /tmp/guix-tests/store/sjwnh4z21ji6gsd878gprbkskw48d6yi-texlive-hyphen-english-59745-checkout.drv /tmp/guix-tests/store/w3wmibd8gdip3b93v9ymwnp2avby45nk-texlive-latex-l3packages-59745.drv /tmp/guix-tests/store/lsvls0xwfxd469cam3qbapng29sf82hy-texlive-latex-l3packages-59745-checkout.drv /tmp/guix-tests/store/wnmni0xkpvi3138yxgqadv2c8hyz8s30-texlive-hyphen-churchslavonic-59745.drv /tmp/guix-tests/store/94kq4bbs7vdvyzrcf60mv76xsbr63702-texlive-hyphen-churchslavonic-59745-checkout.drv /tmp/guix-tests/store/xhr6mnwbhm5xxh2sj98kjldjakf0izxm-texlive-hyphen-pali-59745.drv /tmp/guix-tests/store/bxaimb78y5m86alkphb7imkkr7i8fviy-texlive-hyphen-pali-59745-checkout.drv /tmp/guix-tests/store/xi99mdnd0kn5sym7jw9fmi26nf1m62v8-texlive-hyphen-italian-59745.drv /tmp/guix-tests/store/vd00r9bw4c28nxg2gyixjm229y7gc363-texlive-hyphen-italian-59745-checkout.drv /tmp/guix-tests/store/6dlq1zx8f87palkjqs1q2x962lpjl5kr-perl-module-build-0.4231.drv /tmp/guix-tests/store/3dr2z7qcc09pjcw2n85c92awr67v0d34-Module-Build-0.4231.tar.gz.drv /tmp/guix-tests/store/6nj6iyr7sz14c5f2k7msc6ndjiy1qrhf-perl-yaml-tiny-1.73.drv /tmp/guix-tests/store/45874z6j6ciq0icn8948ddgdmy1694ix-perl-module-build-tiny-0.039.drv /tmp/guix-tests/store/4im5a7k6i44w2bljzgqn2ghnkxwwsdfy-perl-extutils-config-0.008.drv /tmp/guix-tests/store/vb8848zak89z3nx252zaz0y0sjgdbpvg-ExtUtils-Config-0.008.tar.gz.drv /tmp/guix-tests/store/6n18xi6c762cp844w1agg5idgmrfg421-perl-extutils-helpers-0.026.drv /tmp/guix-tests/store/z0kd4sn8br12bvkb35ylx5rybc8gklrj-ExtUtils-Helpers-0.026.tar.gz.drv /tmp/guix-tests/store/qmp6jql1j4kka5yrgga5swpqq6926afn-perl-test-harness-3.42.drv /tmp/guix-tests/store/fnlqg74kjfkr0gihaiwshlj65xg66cj8-Test-Harness-3.42.tar.gz.drv /tmp/guix-tests/store/v7ihwlr46p6wwl5gl0b3pnqrpjch161i-Module-Build-Tiny-0.039.tar.gz.drv /tmp/guix-tests/store/zsgdjw0wr9cha4pdg2wa713ks6hnw5rg-perl-extutils-installpaths-0.012.drv /tmp/guix-tests/store/mzydy96wv31ywvmkfhhp751c4a3rhzf4-ExtUtils-InstallPaths-0.012.tar.gz.drv /tmp/guix-tests/store/5y526jl2bqx3clzmhbd57v02fxm6g360-perl-json-maybexs-1.004003.drv /tmp/guix-tests/store/2xz243rz372nfklmxnf0j24b6ap4bl1i-perl-common-sense-3.75.drv /tmp/guix-tests/store/98aglcvvvzp84x4d0p668zcqz5slpzzx-common-sense-3.75.tar.gz.drv /tmp/guix-tests/store/52qybi82wbbzywxl3i7yv8m9qvjmlsln-perl-cpanel-json-xs-4.26.drv /tmp/guix-tests/store/dhnkqxymyvz07mql9iad6vz8lghd8i47-Cpanel-JSON-XS-4.26.tar.gz.drv /tmp/guix-tests/store/hhzqy622w8cbmf4y8jbsrab46z54i0rj-JSON-MaybeXS-1.004003.tar.gz.drv /tmp/guix-tests/store/anmgahzgf5l9kvvbfnmlnz4paw2k1r8v-YAML-Tiny-1.73.tar.gz.drv /tmp/guix-tests/store/869gnf7dkmh42d7w3nz9sfmg89f18xlr-texlive-graphics-def-59745.drv /tmp/guix-tests/store/l7k0g05i15diz68wy4mblkngghwn95yg-texlive-graphics-def-59745-checkout.drv /tmp/guix-tests/store/yyrfidanv08ilxhv6qalxkml6ycx2zwk-texlive-latex-epstopdf-pkg-59745.drv /tmp/guix-tests/store/jxm5hpc3xw6y0xvy0367rzf7iw79rxkp-texlive-latex-epstopdf-pkg-59745-checkout.drv /tmp/guix-tests/store/b0r24iwj145b1g4wzfvna8pwibg1nl56-texlive-amscls-59745.drv /tmp/guix-tests/store/i7c76g8g1bkny6yw1v12ngnss4gxq4ig-texlive-amscls-59745-checkout.drv /tmp/guix-tests/store/b2w2g0nzs8mn945fpq0p2w8pb2q86p38-docbook-xml-4.1.2.drv /tmp/guix-tests/store/55v3by9g3l7afl0bl167acgwz3limirf-docbkx412.zip.drv /tmp/guix-tests/store/c6x6r5mr1iwd8sadb7v4cjksn0s3hkgf-texlive-psnfss-59745.drv /tmp/guix-tests/store/lyx2gfx63g1sn2add80rc0id26z9g5gf-texlive-psnfss-59745-checkout.drv /tmp/guix-tests/store/cdn7gdddp9y786zflmxn81w5pbhplhdv-texlive-tiny-59745.drv /tmp/guix-tests/store/fwjz5q37hvjwgi2pqz6xvml4kizg96rp-texlive-cm-super-59745.drv /tmp/guix-tests/store/59jk07z2vz5daw7lbwq9ijc9z3n8c5sh-texlive-cm-super-59745-checkout.drv /tmp/guix-tests/store/g4iyk5g22f7px23mdn7qgq3jbgba1hid-texlive-graphics-cfg-59745.drv /tmp/guix-tests/store/dss7yw2lb1cy31rlf7yjmcar9khznkip-texlive-graphics-cfg-59745-checkout.drv /tmp/guix-tests/store/h3b5iy9c337438qp5np19vwnvi3cf25l-texlive-latex-cyrillic-59745.drv /tmp/guix-tests/store/58rk3sa52bpkxn51i51k507liizwzvkp-texlive-latex-cyrillic-59745-checkout.drv /tmp/guix-tests/store/jxbkjb96z5zlsarw7gd00vxnwviqcz2k-texlive-latex-amsmath-59745.drv /tmp/guix-tests/store/wkm65g4vaipkyfb69fw6iqrh4gh27a29-texlive-latex-amsmath-59745-checkout.drv /tmp/guix-tests/store/lw8sqs2d3l0jjl41k3s7hldk9pqzw9yl-updmap.cfg.drv /tmp/guix-tests/store/mmfl11kl0l577nnbdvfipygc4n4h71jx-texlive-generic-babel-english-59745.drv /tmp/guix-tests/store/djm233j075lw09maa9r82pis3z3c53xx-texlive-generic-babel-english-59745-checkout.drv /tmp/guix-tests/store/r2plcggy8934fs32xd6bnfhkpivi2w8z-texlive-latex-tools-59745.drv /tmp/guix-tests/store/k2vapw1a30icpwmx4ib9v5bavr5ab218-texlive-latex-tools-59745-checkout.drv /tmp/guix-tests/store/v5b55nyibwmz8j0lmws3yrzgzabin7j0-texlive-babel-59745.drv /tmp/guix-tests/store/yj3bmhnqp68pa90ssnm7f6kbd2n2xd2v-texlive-babel-59745-checkout.drv /tmp/guix-tests/store/wk96qhxiypdcr5dy4jn5jgypr0wfrsp4-texlive-dvips-59745.drv /tmp/guix-tests/store/av6l4qjvmpmls89mz26rwgglf4w1cw7a-texlive-dvips-59745-checkout.drv /tmp/guix-tests/store/yxv34iypd2b0idfx18m7wy0wxrg4sycy-texlive-latex-graphics-59745.drv /tmp/guix-tests/store/4cpap8kb7f739csirf6mgl4yxpz63qb6-texlive-latex-graphics-59745-checkout.drv /tmp/guix-tests/store/zjrb58x7xfqf7arlmnlxwv2snqkgljrs-texlive-fontname-59745.drv /tmp/guix-tests/store/nqrbdyzxyvrrk2kgkr0qf5v1kvnp4ywb-texlive-fontname-59745-checkout.drv /tmp/guix-tests/store/cgg0kzlydxngwl9l67y40phnqac1canj-po4a-0.63.tar.gz.drv /tmp/guix-tests/store/spcsmd5v4ly3nm1xp401807ij7snghgy-perl-test-pod-1.52.drv /tmp/guix-tests/store/m2mhndhixdj3a21yhiahhi1v6948p2bw-Test-Pod-1.52.tar.gz.drv /tmp/guix-tests/store/w4k2k7r8wzkf2ij5ldf2qc4fx7ljqanf-perl-pod-parser-1.63.drv /tmp/guix-tests/store/5c2j3zr38kpg8dmnpspc5k74fy857cj5-Pod-Parser-1.63.tar.gz.drv /tmp/guix-tests/store/82pm5vc49x4r60d1di2z9a907lc75xgz-disarchive-0.4.0.drv /tmp/guix-tests/store/iss4xrhwpd6bfwpfnympa1f77av2ic3h-disarchive-0.4.0.tar.gz.drv /tmp/guix-tests/store/kf64bmmfykhkpsrgl20kskilfdkwk86i-guile-quickcheck-0.1.0.drv /tmp/guix-tests/store/7vbd1f8krir5jqccz3mxq0044bwc7ihd-guile-quickcheck-0.1.0.tar.gz.drv /tmp/guix-tests/store/lpy7vlz5wd3rih2as1xb41lkf9mmq329-guile-lzma-0.1.0.drv /tmp/guix-tests/store/xfb2vf4yh9s94j9ipc54riak27qh1d92-guile-lzma-0.1.0.tar.gz.drv /tmp/guix-tests/store/i8lwzllyh801gnyig9qg2ssrxp4w04qm-guix-1.3.0-16.10ceb3e-checkout.drv /tmp/guix-tests/store/7w5akmhcxgj5kwk8i34l4ar0347fwxas-module-import-compiled.drv /tmp/guix-tests/store/2d2cbya67yyji8xchr1in8knxix9mcr8-mkfontdir-1.0.7.drv /tmp/guix-tests/store/k1sh37msdlm5cq4phpj9kj9gqvw7pqr2-mkfontscale-1.2.1.drv /tmp/guix-tests/store/1zabz0ns5hza30yw81i99mqmcn2v0995-libfontenc-1.1.4.drv /tmp/guix-tests/store/zsd55ydb7knk2cz01f6d3hpgq2ph48c2-libfontenc-1.1.4.tar.bz2.drv /tmp/guix-tests/store/akh1wmkmcaxhfk1s4pf9wka6bim8671l-mkfontscale-1.2.1.tar.bz2.drv /tmp/guix-tests/store/my0azai9frif7yfdr4flv0a39hd9xj52-mkfontdir-1.0.7.tar.bz2.drv /tmp/guix-tests/store/vsjakghydi7drfic19zf183zr36qahyd-module-import-compiled.drv /tmp/guix-tests/store/gs1yf3z7qns4md3i0xd09l1fhsks3lf1-guile-gdbm-ffi-20120209.fa1d5b6.drv /tmp/guix-tests/store/ixizak8jmhxlx20a6mfhjyfpyvfymk31-guile-gdbm-ffi-20120209.fa1d5b6-checkout.drv /tmp/guix-tests/store/3mkzj099x06c836655r5m1dwk8nnwi2f-guile-gdbm-ffi-20120209.fa1d5b6-checkout.drv /tmp/guix-tests/store/jn061ljmq78h8q0d8hkhz7hc82nb4s0y-module-import-compiled.drv /tmp/guix-tests/store/2ibhvm4kjqzl7jimn8sw30nrljrj8c0y-locale-multiple-versions.drv /tmp/guix-tests/store/kzzlxx72p8wgxrgcjh13p3128kpgkw7f-locale-2.33.drv /tmp/guix-tests/store/pv0ziwf8zikap87l6l2q935aydhcz9gd-module-import-compiled.drv /tmp/guix-tests/store/rh0z0b8gwryj2m25wr00wimxrrckynzk-module-import-compiled.drv /tmp/guix-tests/store/wmdk807ql9dk2d2nh982870j5h6w9wnz-locale-2.31.drv /tmp/guix-tests/store/4nkpxx2jjapbnl0fnpnas1x2pvahc5ih-glibc-2.31.drv /tmp/guix-tests/store/kflx39w92xlv1lg3pvgv1sqz939mzjc9-glibc-2.31.tar.xz.drv /tmp/guix-tests/store/1ipqan74q3gddmn8v2xc3giz6i5r6wks-glibc-2.31.tar.xz.drv /tmp/guix-tests/store/c3mvmy6wmray1scq9c0wrg1jb307rbld-etc.drv /tmp/guix-tests/store/3dppzrmjipl215357m62qp0rxxqcigkl-skel.drv /tmp/guix-tests/store/4hi5mc14v13wcx7s3ghlq7ddx5n6h509-pam.d.drv /tmp/guix-tests/store/1801p42rgy9mkkpdf9bmzrgk41fna0bc-groupadd.drv /tmp/guix-tests/store/5jybgg7awqw792vb8gk74i1kny6f087i-groupdel.drv /tmp/guix-tests/store/63zwpr2yb02fg2fjyzfmyl7sby5wpcg9-userdel.drv /tmp/guix-tests/store/9v5ds3f9pa7na20wmfrg0l2qsjxdpzi7-passwd.drv /tmp/guix-tests/store/c1i43n1ip1s8ppmc13igxgzj61c2bffl-other.drv /tmp/guix-tests/store/fsbvj9x1yz3pvvgy5xq70c91cfmy2brq-useradd.drv /tmp/guix-tests/store/jx9xjzd42063rhjap04wrgwrnn1qivsc-su.drv /tmp/guix-tests/store/n3nc4rvccdncrsycb0lwavd83fabk81w-login.drv /tmp/guix-tests/store/nwy8z7fv1dw5y94p3icw7mw749pk4nj6-sudo.drv /tmp/guix-tests/store/wzlh1j5xv051jxjxj4mn002lz969xsx8-usermod.drv /tmp/guix-tests/store/zx1d38g65ycdx57c6jk9yabk82yfzlvr-groupmod.drv /tmp/guix-tests/store/g4j8q8jvbxkr9pckrm5lxpqjnlsrn1dd-shells.drv /tmp/guix-tests/store/gibpg9bbb294maqsf1nh5nd5hy8zs9xf-profile.drv /tmp/guix-tests/store/jbfzgwqm2x8lwj1l0rawqv9dz2cmbjkq-sudoers.drv /tmp/guix-tests/store/lbhq0w2q30ahgxldp37gqczyknn4rhvb-rottlog.drv /tmp/guix-tests/store/njg93x7nvmxyqhyvdd4lgg9m2qc1yqzj-rottlog.weekly.drv /tmp/guix-tests/store/fz21mf3w5scnc69n1cdxxnc9yswc1822-rottlog-post-rotate.scm.drv /tmp/guix-tests/store/v4pgfxsj2hx7f88hq37wpgb2xg3rf572-environment.drv /tmp/guix-tests/store/khd7n6cr2rxrvmppw54pcxw35a9zkp2r-raw-initrd.drv /tmp/guix-tests/store/4wzg2f1zv056ywpd9mpfrv9d4hkq2axq-guile-static-stripped-3.0.7.drv /tmp/guix-tests/store/1xq5rs4pscsgszmlc5izml9nrjhbifs2-gcc-7.5.0.drv /tmp/guix-tests/store/1x5dx260g6h28n6az37hclpq9cdcgdfj-libstdc++-headers-10.3.0.drv /tmp/guix-tests/store/4bjmwzhm6q4fkfzr86bpckmmbjjxwr5n-libstdc++-10.3.0.drv /tmp/guix-tests/store/gxp7fnmlmcif375r9bwdj1r3ndcjqgaf-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/4572swx6ia9g2dqq8b5hcrazzv8v3w1n-glibc-2.33.drv /tmp/guix-tests/store/gq5b77lk64cqf8mhkd32jxp1i741cpdz-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/smsrnlbqgsjzl9n9sggv6dv7y7m9azpg-gcc-7.5.0.drv /tmp/guix-tests/store/7dl30lqn8x1ripjzbgpkfz9xmlm707zy-gcc-7.5.0.tar.xz.drv /tmp/guix-tests/store/4s95n8zhs5b2m4sj0q1kgkgy48vncpas-gcc-7.5.0.tar.xz.drv /tmp/guix-tests/store/9jnsjis5r35yinyyawlc41hwb590gai6-isl-0.23.drv /tmp/guix-tests/store/wa4yvjq1svk7767z9c84pqpzs79ix10b-isl-0.23.tar.bz2.drv /tmp/guix-tests/store/fdx1lj479fbqnc0vfgb351gb0km6jkg8-mpc-1.2.1.drv /tmp/guix-tests/store/21i644r94x8gswgmc5iss8wa62h0ncy4-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/ciyddip3x717k9g3i8f3a2gx14r5mi86-libunistring-0.9.10.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/d1mj63gqs8izim6ky57bk41xg6yzgdvj-pkg-config-0.29.2.drv /tmp/guix-tests/store/jbg2790c8haz1gl5k3lyr1s1z6wyiw4g-bash-minimal-5.1.8.drv /tmp/guix-tests/store/m2nrfckb4ff4r12m0mx77rlffdqql13c-libgc-8.0.4.drv /tmp/guix-tests/store/rg94n3mpkxblliwvg12mbvc0kzpdcn9s-libffi-3.3.drv /tmp/guix-tests/store/v1rvwqa4brbhfafr01i17vwsg0z5aprk-guile-static-3.0.7.drv /tmp/guix-tests/store/aq7plja293zcaahd2jlfqpb32m6b0f5w-init.drv /tmp/guix-tests/store/0f7a6d6qc2jc6mgirglfr023m74iji8f-linux-modules.drv /tmp/guix-tests/store/b9qd33i2s5jxl3cs7sgkwibdivbhrh19-module-import-compiled.drv /tmp/guix-tests/store/s26lr7s069dwydznixz07bn0qmpcbigp-linux-libre-5.15.10.drv /tmp/guix-tests/store/07n9ps8hpmbkbhwsbmkd6jk8jx9j5mqj-bc-1.07.1.drv /tmp/guix-tests/store/4w46qd2mgv12i9xrp7rrknsgx9xgvgzy-bc-1.07.1.tar.xz.drv /tmp/guix-tests/store/b3js201yr9f5iqs9frwq49hrlrbap0ja-bc-1.07.1.tar.gz.drv /tmp/guix-tests/store/77hnwm8qkdrk9kqva42hz8q1b5v0a4z3-elfutils-0.183.drv /tmp/guix-tests/store/lshhrjlv19fi8nzwd9dd6ma8nzx7gs7r-elfutils-0.183.tar.xz.drv /tmp/guix-tests/store/j188gxqdvzjh0pkrf2xgnginallxg49a-elfutils-0.183.tar.bz2.drv /tmp/guix-tests/store/g525wv7c3dya1ccwbp1p1b62whyn9dqc-linux-libre-5.15.10-guix.tar.xz.drv /tmp/guix-tests/store/c3s808k5xvc9lxy2ckdj8ryw15n8klni-linux-libre-5.15.10-guix.tar.xz.drv /tmp/guix-tests/store/4l57v4b3a4s1r0kfj2pvcln9m1pykbw9-linux-5.15.10.tar.xz.drv /tmp/guix-tests/store/wyirxncav87mpxzd77izq2lqwbzfhdxx-linux-libre-deblob-5.15.10-gnu.drv /tmp/guix-tests/store/ypxrlkgmmakhdma2k2b0s36bsna711hn-linux-libre-deblob-check-5.15.10-gnu.drv /tmp/guix-tests/store/rq0dwsih9817phny6kz3h9g9bk44gxs7-100gnu+freedo.patch.drv /tmp/guix-tests/store/zf7a8fgkq4w3cc44lsv934vmq47i85i5-linux-libre-arm-export-__sync_icache_dcache.patch.drv /tmp/guix-tests/store/a738f8asyhsl0frsgnrsqsanm1s8b4wc-e2fsck-static-1.46.4.drv /tmp/guix-tests/store/n8zb309g24wq727f3p4vlblkxxpsrqvf-e2fsprogs-1.46.4.drv /tmp/guix-tests/store/wzknjvhwrxp782k4kqqvs8mjmb1vcr03-module-import-compiled.drv /tmp/guix-tests/store/yf3l8m0wqkd1wc1r4zns4bzgsj78fis8-module-import-compiled.drv /tmp/guix-tests/store/mhc3hkxmzwdf5j16c0sd6aiszn8gdbdc-activate.scm.drv /tmp/guix-tests/store/1qynvw49rnrf8gbdfmql9wr0qnxs3z6z-activate-service.scm.drv /tmp/guix-tests/store/2m6b9gl6c604ws1xz25r9iy9n7wyv35x-activate-service.scm.drv /tmp/guix-tests/store/dagrabysflq2f1lqp1z7hcr3i71gyfca-activate-service.scm.drv /tmp/guix-tests/store/4qvvh9dz4v6zyzr2kbqmhl2ssip5iy07-firmware.drv /tmp/guix-tests/store/kdqkirpml4xd4zich6i035lbxwkxdkff-ath9k-htc-firmware-1.4.0.drv /tmp/guix-tests/store/2vamx6irh3ynkmv05c430c73f2lsr0gj-ath9k-htc-firmware-1.4.0-checkout.drv /tmp/guix-tests/store/jipfzcdv5yj6jx7ld7j1s6r0r28xk1aa-ath9k-htc-firmware-1.4.0-checkout.drv /tmp/guix-tests/store/n0cw1a60ypwh557mjwg12h9mzyg4sdad-binutils-cross-xtensa-elf-2.33.1.drv /tmp/guix-tests/store/c7xkbfszmjr7mg5pgs4k6f25wa98arfp-binutils-2.33.1.tar.xz.drv /tmp/guix-tests/store/7mdbc0654zq1wjaprrfnj2w7nq1zkljz-binutils-2.33.1.tar.bz2.drv /tmp/guix-tests/store/x49j6ldvjf5f5zpac42c9fbrjlaq3s06-gcc-cross-sans-libc-xtensa-elf-10.3.0.drv /tmp/guix-tests/store/3nvq0gkam8k20l0gc48hfjslcmgshixk-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/d8l1jxzqd20ma3d5nl3mchwgkm713w1y-module-import-compiled.drv /tmp/guix-tests/store/x20glm8arvb8v6pdhmnrzhc14k2hvbmw-ld-wrapper-xtensa-elf-0.drv /tmp/guix-tests/store/ncmzhy0y3xzg06mdwczx58c6nvy7n1hc-openfwwf-firmware-5.2.drv /tmp/guix-tests/store/l94sp53jfs13h8a3k23n49ygs1r3brwz-openfwwf-5.2.tar.gz.drv /tmp/guix-tests/store/n8545gsxsna2wkav1yd20m56dz2c8yiz-b43-tools-0.0.0-1.27892ef.drv /tmp/guix-tests/store/8si0b4bx61imy7p8k6md8ijb7ndxwh0s-b43-tools-0.0.0-1.27892ef-checkout.drv /tmp/guix-tests/store/fbvkrlmrcdrzwhlc28zw7ls1n8534w8r-activate-service.scm.drv /tmp/guix-tests/store/g1cqpg3fg2znbxk90bvfagvnz7imwicn-activate-service.scm.drv /tmp/guix-tests/store/3aflpa7pa4awlygblgxjkkwx99yj54q9-fuse-2.9.9.drv /tmp/guix-tests/store/xq1mlgk5rw7ka30jdx4aj31sa2grg039-fuse-2.9.9.tar.xz.drv /tmp/guix-tests/store/rrxskzv964zilsi81wwam87ix2yxvr2c-fuse-2.9.9.tar.gz.drv /tmp/guix-tests/store/3hpca7axi08bvdy48v06w93l7i656dyf-module-import-compiled.drv /tmp/guix-tests/store/hxnjyfvkybzwxqknil19wflaqad64jxp-module-import-compiled.drv /tmp/guix-tests/store/jv51zjsr89bn1qq2mi0x7kwly2z6fdfs-activate-service.scm.drv /tmp/guix-tests/store/m8h9xj59lg60wiy28j1zma3ijv1x3rhp-activate-service.scm.drv /tmp/guix-tests/store/nnxl09npxwmswwkl6kwa3jzqwf7hh376-modprobe.drv /tmp/guix-tests/store/p7ls8mpcjih57blfqpwq4imfgz7q1j7c-activate-service.scm.drv /tmp/guix-tests/store/s1j1919p16apd1cpxz1ibmj4shc5i18p-acl.drv /tmp/guix-tests/store/7igz808sygf9kiwhj7fjw71s5g0imsx2-module-import-compiled.drv /tmp/guix-tests/store/inki0769jxfpvzbk8jm3sky0mfgj2bk0-module-import.drv /tmp/guix-tests/store/8x5s2m9sqdk6sppr4382b93ygsbaijbw-config.scm.drv /tmp/guix-tests/store/w8wl3kwvpi52iihxa2nsmb1dnwj25fli-module-import-compiled.drv /tmp/guix-tests/store/yy7d38m6nbvhbgsxrvscfv4zl15p97cw-activate-service.scm.drv /tmp/guix-tests/store/lfl2z97yr6r6iva1v2y4c851mcy84xhn-module-import-compiled.drv /tmp/guix-tests/store/r6vm6fspfkdw7nnxmlll33ym6amy9xvs-parameters.drv /tmp/guix-tests/store/ssz3aaqj3nilnisdbxhg072vrwqi96lv-boot.drv /tmp/guix-tests/store/ycf04rpdm68xgpsilwjr77kak8krgwfy-shepherd.conf.drv /tmp/guix-tests/store/05ir128ki8dr8az3x8cx9mi8q64kwjkz-shepherd-file-system--dev-shm.go.drv /tmp/guix-tests/store/rmb5kxipybpdm48wdc208vvyqn78mdma-shepherd-file-system--dev-shm.scm.drv /tmp/guix-tests/store/hnzl0dlchng6cm4fznzxfl3pyjnfl5f7-module-import-compiled.drv /tmp/guix-tests/store/s3w6qpdrf58sqh37nz0wl21r5rharc7k-module-import-compiled.drv /tmp/guix-tests/store/0ca6ykz8b0rpij105amxqs8zcbra70ab-shepherd-file-system--sys-firmware-efi-efivars.go.drv /tmp/guix-tests/store/m60pqqzv507p7i4waffysnpv1pas8xsn-shepherd-file-system--sys-firmware-efi-efivars.scm.drv /tmp/guix-tests/store/3wxv95j50h8xrn3q433rp99271va36cp-shepherd-root-file-system.go.drv /tmp/guix-tests/store/q4nbrgc4fcngi45pv3bsg443zxwdgs8v-shepherd-root-file-system.scm.drv /tmp/guix-tests/store/9zlxc9kgswhccf9192kd9xrk5l9dsi0s-module-import-compiled.drv /tmp/guix-tests/store/wjvppjq14hm9vyymkmd5qsswyy7i17c0-module-import-compiled.drv /tmp/guix-tests/store/4vhn8mvz80advyy97b73grrr3xa3vilx-shepherd-nscd.go.drv /tmp/guix-tests/store/gnmakai7cxbzdkr5sww1wvpwjgqiz02r-shepherd-nscd.scm.drv /tmp/guix-tests/store/527fsfhxc1a9ryn5a8lrdbxs7fy83l64-shepherd-term-tty6.go.drv /tmp/guix-tests/store/h4k92vm8jjx4lsr66mzc65mirip3j4bw-shepherd-term-tty6.scm.drv /tmp/guix-tests/store/4dsmds0m1lirgl0nzdl57n5siwm2mz6d-mingetty-1.08.drv /tmp/guix-tests/store/14ixg3cp2fpdijzbk4d8qn9s9w4g88yy-mingetty-1.08.tar.gz.drv /tmp/guix-tests/store/547904qqk8m4gwqcmq1l48qy65fn7m22-shepherd-console-font-tty5.go.drv /tmp/guix-tests/store/kay6v2f8rhvj72w9m0ya88l519l1nxrd-shepherd-console-font-tty5.scm.drv /tmp/guix-tests/store/9k8abzivz7v3x5m063cs9bnbsgbc0v0g-shepherd-syslogd.go.drv /tmp/guix-tests/store/rl8jfgwli3pfma3clksfld2hl2jrzp67-shepherd-syslogd.scm.drv /tmp/guix-tests/store/apjyy2r0k8s2ki9brz7l6092hdjsiggj-shepherd-urandom-seed.go.drv /tmp/guix-tests/store/024h3c4zjgslinr3nvh41wg6chz9c1ld-shepherd-urandom-seed.scm.drv /tmp/guix-tests/store/arczysi6hsqpawaa2kvsrqzkhhvymmh1-shepherd-guix-daemon.go.drv /tmp/guix-tests/store/m1p951xfjd1nwwlx8b5589f3jz8qqvdz-shepherd-guix-daemon.scm.drv /tmp/guix-tests/store/mwd8vj7h4rslp4qkri4dk8hnrfrj1ql1-module-import.drv /tmp/guix-tests/store/n3rn9ipfychllr8dar2rxcxx43kmxhbg-module-import.drv /tmp/guix-tests/store/ncd2b6k55azqmrzyllsjzdry93l77qn4-module-import-compiled.drv /tmp/guix-tests/store/qa6rw3g1mi42p1nycs51vgcgdaq7yk3d-module-import-compiled.drv /tmp/guix-tests/store/byib2n10y4vamwnc2mcjdll09sbw6z6a-shepherd-console-font-tty6.go.drv /tmp/guix-tests/store/9vhvzlzhz3pdi68rrhhs3kd444gvinzx-shepherd-console-font-tty6.scm.drv /tmp/guix-tests/store/d4llci3g9kqg8flzyiwy09ipkpcc14nm-shepherd-user-processes.go.drv /tmp/guix-tests/store/7kp78i7w8aj42n1d16bmnkbyxqz0f8h5-shepherd-user-processes.scm.drv /tmp/guix-tests/store/fa2ivfg3wxaw1bdq92jgl7hccbhr97c7-shepherd-console-font-tty2.go.drv /tmp/guix-tests/store/9snwb94i9ki1d18cf334ag9h4l3k3kc6-shepherd-console-font-tty2.scm.drv /tmp/guix-tests/store/fdvxw802m7fjxzn8pqdn46szwz47hakz-shepherd-tor.go.drv /tmp/guix-tests/store/jfcldyqrq8gy6dmw6qjv012b8a3bp2n5-shepherd-tor.scm.drv /tmp/guix-tests/store/198dzrpy02dzwkj15xgd08gkdvj7xgzc-module-import-compiled.drv /tmp/guix-tests/store/9mv6h7c6hmfyb1h7vydx0hp55l6my4ac-tor-0.4.6.9.drv /tmp/guix-tests/store/2hfysacigdnpailb80mjjhpxiliyr9j8-tor-0.4.6.9.tar.xz.drv /tmp/guix-tests/store/3a832i01vqlg31s0i89q7n14p50qv2cj-tor-0.4.6.9.tar.gz.drv /tmp/guix-tests/store/yq3pn0f0zbwpnmsqqzr9rnjk6hva273c-libseccomp-2.5.3.drv /tmp/guix-tests/store/p51fxri0mf3jpvif5lqzyiih79aqb1wg-libseccomp-2.5.3.tar.gz.drv /tmp/guix-tests/store/hrzg7y4s26jdcfnv1q4q25j7jq2523a4-torrc.drv /tmp/guix-tests/store/inj46h1xybzwg0myz349bs3sr7pfpyll-module-import-compiled.drv /tmp/guix-tests/store/fk7g2kb2sl9vwx52hyh5p19l9ksssgby-shepherd-loopback.go.drv /tmp/guix-tests/store/fx8kksvnkmalymxdy5q6al4lypygg656-shepherd-loopback.scm.drv /tmp/guix-tests/store/wdqm8d00abcy2f42bd4xl2wgvzp9nwmx-tear-down-network.drv /tmp/guix-tests/store/70212b113v6pbzc9n1avcvv9574bcdw3-guile-netlink-1.1.1.drv /tmp/guix-tests/store/38ajypya8gkjcz69h2ykiz4vvyac60qq-guile-netlink-1.1.1-checkout.drv /tmp/guix-tests/store/rrgm2mnmwsvnk596zmczk01v8fjkmvw8-module-import-compiled.drv /tmp/guix-tests/store/zjdznqsi1w8zwx2zslr7k6064ss1cqk9-set-up-network.drv /tmp/guix-tests/store/fpmxhh6ga5nlz0prh1kf2qc4f8qfpnsw-shepherd-console-font-tty3.go.drv /tmp/guix-tests/store/1hl7s95cnqvbnxlm543c7l33dkhflzgq-shepherd-console-font-tty3.scm.drv /tmp/guix-tests/store/h73ms04dmx1p014idk4k91bpairnil0l-shepherd-term-tty5.go.drv /tmp/guix-tests/store/vx60047x7pmyc4hm8vjdd4jcq70bqk9d-shepherd-term-tty5.scm.drv /tmp/guix-tests/store/hqch2hp1m5llqm0acfasi1xajb6wknvk-shepherd-mcron.go.drv /tmp/guix-tests/store/ijaisd847p10ccmkv04g64vgy72465b0-shepherd-mcron.scm.drv /tmp/guix-tests/store/b43n0fg0fmrn27znbq52mcj88s3mj2ri-mcron-job.drv /tmp/guix-tests/store/hgrp4wgiv8idb9rb0r3568r5nxpqxjxv-mcron-job.drv /tmp/guix-tests/store/if9ayb04iq839vzv37m306y6fifaf7l6-shepherd-console-font-tty1.go.drv /tmp/guix-tests/store/yrcchip5rj5w5fiyz01qcg2p1scd66a5-shepherd-console-font-tty1.scm.drv /tmp/guix-tests/store/jr0mbbpnsg45gjksxppchpkz497qqdsa-shepherd-file-systems.go.drv /tmp/guix-tests/store/i52rzjn72c2cdg9fk3ah922by5pnaynk-shepherd-file-systems.scm.drv /tmp/guix-tests/store/jy1zmy6w6n2b73ccz9fzqfqj718ahz95-shepherd-user-file-systems.go.drv /tmp/guix-tests/store/ysmdg2lv1lfsi3a9dfbj7jmz5xfq6a32-shepherd-user-file-systems.scm.drv /tmp/guix-tests/store/mi34xy94z2idqnbqss3lsrlywv56sc7j-shepherd-file-system--tmp-guix-tests-store.go.drv /tmp/guix-tests/store/5j4ys8qlg5hpgkwfiik0zg95f7iq5px5-shepherd-file-system--tmp-guix-tests-store.scm.drv /tmp/guix-tests/store/nhjsrkydg2j1p54nqy5h2a5azizvd4zg-shepherd-udev.go.drv /tmp/guix-tests/store/v843clfqz2gpjl147fns238qmh75jglw-shepherd-udev.scm.drv /tmp/guix-tests/store/gz0wkf28v9ss6d1m1ahmldss9v7v9nr7-module-import-compiled.drv /tmp/guix-tests/store/kvr4avidix1mdgbcsmszc7yra91fhs6m-udev.conf.drv /tmp/guix-tests/store/yhlcwiwmvy6as110708n8pw02sgpn6sy-udev-rules.drv /tmp/guix-tests/store/5iq94vsvj9g5ylvnsxjk0vhrnjlvyldx-alsa-utils-1.2.4.drv /tmp/guix-tests/store/2bfkk8g82aphfxphbk8ak8lgcqv7wgyl-alsa-lib-1.2.4.drv /tmp/guix-tests/store/bsc41dnqy1g2g0s2g36ai2cambjpmf69-alsa-ucm-conf-1.2.4.drv /tmp/guix-tests/store/q3cf9m524ahanwzkg921s9nzjwmzc5yx-alsa-ucm-conf-1.2.4.tar.bz2.drv /tmp/guix-tests/store/kwcp0mcd5zsg7qzwq4r88kijrpjmvxx8-alsa-topology-conf-1.2.4.drv /tmp/guix-tests/store/zsnmj62w05savi7v9qnyjy3v9abcrpk8-alsa-topology-conf-1.2.4.tar.bz2.drv /tmp/guix-tests/store/p1n4m081mi2nsmfwq0p5zppcg3yg71b5-alsa-lib-1.2.4.tar.bz2.drv /tmp/guix-tests/store/52i08rf16kmpyfxhib1526bgabrn28c8-libogg-1.3.5.drv /tmp/guix-tests/store/16qwdhhkzlkpd8wvsxv0xzqrvg8yc814-libogg-1.3.5.tar.xz.drv /tmp/guix-tests/store/53y6fad0d59jmnkcz544wbq38fjip7zk-libsndfile-1.0.30.drv /tmp/guix-tests/store/lqclr88wcxhj6ijkaqc3sdbfl3sz7ch2-flac-1.3.3.drv /tmp/guix-tests/store/zyanng5z4ksq329x4shlgdr6j5rh8ygv-flac-1.3.3.tar.xz.drv /tmp/guix-tests/store/pkz609irqk1d0lxkzd8krn9z9vpp794b-libsndfile-1.0.30.tar.xz.drv /tmp/guix-tests/store/zg1blp87srv2bw1r5qfz9yhksvjlms30-libsndfile-1.0.30.tar.bz2.drv /tmp/guix-tests/store/wijgv951ph20wn4l43yz4rj2mv2axcjy-libvorbis-1.3.7.drv /tmp/guix-tests/store/7qik7fi5i09c9cd6b71hfhg617dfpnb1-libvorbis-1.3.7.tar.xz.drv /tmp/guix-tests/store/yf42yz2b3cam6cagcmdzhk5vpwjkps4p-opus-1.3.1.drv /tmp/guix-tests/store/dz208rym5vxhkhl6zx9v2fvs1f8ks650-opus-1.3.1.tar.gz.drv /tmp/guix-tests/store/k9nqv6vwwgl0n8gyz8nvb1zgmi6rbvff-libsamplerate-0.1.9.drv /tmp/guix-tests/store/zg3djdgc9s0ybi3blbzwdkz8dbqpgnfq-libsamplerate-0.1.9.tar.gz.drv /tmp/guix-tests/store/pcblm0sf6g0dyx84plphsfrd57wbyhhs-alsa-utils-1.2.4.tar.bz2.drv /tmp/guix-tests/store/lylq6cmrlfgivgqw07lpk3x36r083biy-crda-3.18.drv /tmp/guix-tests/store/0iy3553svn6qaxsqi34sqmqvspxy380m-crda-3.18.tar.xz.drv /tmp/guix-tests/store/z76fdjjwhsyjfp13g6ybycbg5nnfdggn-crda-3.18.tar.xz.drv /tmp/guix-tests/store/8vaqpglndqjj0lkgjndsg0hdp916jhjr-wireless-regdb-2020.11.20.drv /tmp/guix-tests/store/g1nfrbbdvddf9b4l5xbkgvpfhcdmnbmd-wireless-regdb-2020.11.20.tar.xz.drv /tmp/guix-tests/store/v4xazqky7750pc2qqf65nxhy8hzan2hv-wireless-regdb-2020.11.20.tar.xz.drv /tmp/guix-tests/store/wkkacc1g5x79gmxzisrm1hiwvyd64z4k-90-kvm.rules.drv /tmp/guix-tests/store/x9hvp3w74msfmhs3xi75rkf66chaw3si-module-import-compiled.drv /tmp/guix-tests/store/xn7835n120pycqzqhfbsszk555hf0bvn-lvm2-2.03.11.drv /tmp/guix-tests/store/pjm81nfsixr57mzwv6j3n090sy6b204x-LVM2.2.03.11.tar.xz.drv /tmp/guix-tests/store/qbnmrqyxy66rnjxyv3xmcl3cg3184ml9-LVM2.2.03.11.tgz.drv /tmp/guix-tests/store/q22xja91xjgrjpaqvin3m3dla49b21hy-module-import-compiled.drv /tmp/guix-tests/store/pad8kcbkbs2mfgq8i1p4jxmr7c0vybfy-shepherd-file-system--sys-kernel-debug.go.drv /tmp/guix-tests/store/x772778v7ymnbmf6nff5kpvr13hbbxjj-shepherd-file-system--sys-kernel-debug.scm.drv /tmp/guix-tests/store/pas05i4iawcrzw3350h9r98fhj1m25nf-shepherd-file-system--dev-pts.go.drv /tmp/guix-tests/store/5rzi4ah3nah2ll3cc929fd4pdin9kifs-shepherd-file-system--dev-pts.scm.drv /tmp/guix-tests/store/pq15nn0yafddgpjy1dji5xxisinwwa8f-shepherd-virtual-terminal.go.drv /tmp/guix-tests/store/9fd06g155i7qp3aylnahdydypqsj2pfc-shepherd-virtual-terminal.scm.drv /tmp/guix-tests/store/pr1dapi4sz132sn79d256w48cxmfb4wx-shepherd-sysctl.go.drv /tmp/guix-tests/store/jvafzs09sf1rcj3a4prlagx6axbg84s0-shepherd-sysctl.scm.drv /tmp/guix-tests/store/52xsdyhmp3a5bkgj7jv734lrav9rbdnb-sysctl.conf.drv /tmp/guix-tests/store/r7vc685nkwa2v69889231bkchs3kbvry-shepherd-term-tty4.go.drv /tmp/guix-tests/store/3n75qdjnjgrkgcyqf324fq2lzxrzwld0-shepherd-term-tty4.scm.drv /tmp/guix-tests/store/rffxna3gp33708xnvh3k218yhgp4ah2n-shepherd-user-homes.go.drv /tmp/guix-tests/store/f8mnhq1dd0dj03j782rj63446hbb88i2-shepherd-user-homes.scm.drv /tmp/guix-tests/store/awzwm1qisdwgnnk1g39nf7i7dj0d91pz-module-import-compiled.drv /tmp/guix-tests/store/s6lf90dgc1yjrvk78qiiw8bwf26q2i5a-shepherd-term-tty1.go.drv /tmp/guix-tests/store/9820wvllafyjjwki5nq1iqwm0kvv96d3-shepherd-term-tty1.scm.drv /tmp/guix-tests/store/wimi96my5cykp1vc5kixbyixfn2kkkf1-shepherd-term-tty3.go.drv /tmp/guix-tests/store/k5lvc8dasymviiakx0czajyxi0wkb4rv-shepherd-term-tty3.scm.drv /tmp/guix-tests/store/xjjfqkpvx5ycfgybsdc3k1nfy4cprj5z-shepherd-host-name.go.drv /tmp/guix-tests/store/by6kgpdrxvddir5g6k4c8kbnyjjqxc8l-shepherd-host-name.scm.drv /tmp/guix-tests/store/zd9fiqilx60yn7czrili99f5mwvikmx6-shepherd-console-font-tty4.go.drv /tmp/guix-tests/store/4y1w31irbp5ffc9zgajqr4hhm9fv4qf0-shepherd-console-font-tty4.scm.drv /tmp/guix-tests/store/zdsljy9svpkrdgqahcp79dfvi71jywa3-shepherd-term-tty2.go.drv /tmp/guix-tests/store/2cwsmqjlknkgc63dpvm5v2q0ikzgdvl4-shepherd-term-tty2.scm.drv /tmp/guix-tests/store/zy7dc1pjjii1vz875wcm83aywz0g0nl4-shepherd-term-auto.go.drv /tmp/guix-tests/store/agay8h16f1nnvhp4l1fni967l3z0fc3g-shepherd-term-auto.scm.drv /tmp/guix-tests/store/wqjfykadv11c1876h8sr0ahfbwafb326-profile.drv The following profile hooks would be built: /tmp/guix-tests/store/73lirdk43w9p6k1ia4whirssh6m2fsps-ca-certificate-bundle.drv /tmp/guix-tests/store/gvc97b9pdpxkqawd2cixmfqp6z9prw22-emacs-subdirs.drv /tmp/guix-tests/store/mdw090aqgsk16mq57hz5pzwyrr8kdxgv-fonts-dir.drv /tmp/guix-tests/store/rxjdh5w5irhlqqf93hvjsa993c1abfp3-info-dir.drv /tmp/guix-tests/store/s1mx5kn5kyqllqrw5nxd4c02qsnxapfz-manual-database.drv /tmp/guix-tests/store/0apnsl2gwwj6han01d81la1xn91phrqc-linux-module-database.drv + cat + guix system build /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/t-guix-system-13177/config.scm -n /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/t-guix-system-13177/config.scm:4:2: warning: resolving 'whatever.scm' relative to current directory guix system: error: '/tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/t-guix-system-13177/config.scm' does not return an operating system or an image + grep 'config\.scm:4:2: warning:.*whatever.*relative to current directory' + guix system build /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/t-guix-system-13177/config.scm -n /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/t-guix-system-13177/config.scm:4:2: warning: resolving 'whatever.scm' relative to current directory + guix system search tor + grep '^name: tor' name: tor + grep '^shepherdnames: tor' + guix system search tor shepherdnames: tor + grep '^name: tor' + guix system search anonym network name: tor + guix system search . ++ wc -l + test 1457 -gt 500 + rm /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/t-guix-system-13177/search + for example in gnu/system/examples/*.tmpl + echo gnu/system/examples/asus-c201.tmpl + grep hurd + target= + guix system -n disk-image gnu/system/examples/asus-c201.tmpl accepted connection from pid 13442, user nixbld guix system: warning: 'disk-image' is deprecated: use 'image' instead substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable substitute: guix substitute: warning: authentication and authorization of substitutes disabled! The following derivations would be built: /tmp/guix-tests/store/mj4cdjl5r4mdynzm6qj61f56352rbzdb-disk-image.drv /tmp/guix-tests/store/23k5bd2sk1mlimyvv2hvihbki4i8j8cl-guile-gcrypt-0.3.0.drv /tmp/guix-tests/store/21pmnj5l8wwv9j6565ami62ql6rdbivp-gzip-1.10.drv /tmp/guix-tests/store/5rffkc4lx8d86gj4fa4rvg0spps1p4v0-file-boot0-5.39.drv /tmp/guix-tests/store/3drxkc76igrw1fi4hblngm7lmwzvhbfg-gcc-bootstrap-0.drv /tmp/guix-tests/store/d6f0fa8x4if8asg5sf69aqma7nm265a0-glibc-bootstrap-0.drv /tmp/guix-tests/store/jvxnnz4bmgqfh6m8cgmmlv94pi68gwxl-glibc-2.25.tar.xz.drv /tmp/guix-tests/store/hcvxcl1hwj875z5f1h35f32khxafr9lc-gcc-5.4.0.tar.xz.drv /tmp/guix-tests/store/5h5z1far1zz5lb9z2aqj8w711z3qisnx-module-import-compiled.drv /tmp/guix-tests/store/6lwnac3ga3qs598j99n3vfc96fqi554h-file-5.39.tar.gz.drv /tmp/guix-tests/store/8j2q9fv5azb6sclr1b6ypjybpjybwb84-make-boot0-4.3.drv /tmp/guix-tests/store/irmyrsqw0m0mk8swb00ryf3ic6pqw2jf-bootstrap-binaries-0.drv /tmp/guix-tests/store/4x2n9xjb3qqm34vc9k2c1w9b9xm46agx-static-binaries.tar.xz.drv /tmp/guix-tests/store/msy4c035ih8ss7w3mazn0y6cvrwrmazj-binutils-bootstrap-0.drv /tmp/guix-tests/store/zr43wy48bl6lhld21ajilvj895q7jsqa-binutils-2.27.tar.xz.drv /tmp/guix-tests/store/vdg7a9kpy8rs12abqjyxr7d5idcwci68-make-4.3.tar.xz.drv /tmp/guix-tests/store/wy7isgmjyiwbzsyx1f3bmhw4kdi65l7i-make-4.3.tar.gz.drv /tmp/guix-tests/store/5rx3i7c94a787lns10xwgim1hq84m7v1-binutils-cross-boot0-2.37.drv /tmp/guix-tests/store/gp2iyp8vzj2904mha81vsx3a5l9ndkcq-binutils-2.37.tar.xz.drv /tmp/guix-tests/store/vj5dqqhka5p7qi20kh32396bd1y127al-binutils-2.37.tar.bz2.drv /tmp/guix-tests/store/p677ngbz80k4ld9dn87s65ni32v6lmjn-diffutils-boot0-3.8.drv /tmp/guix-tests/store/cpsrirfv2871swvx7slsdabnyma4h781-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/xsmnf0jmi7p4n60i8p1mkvpm05sp6a6w-findutils-boot0-4.8.0.drv /tmp/guix-tests/store/xl0b647qzhamil3s0w46970xp4lqzc09-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/m0hxwnqk3j0v7333n3ii2jqix1da025s-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/5w71j1ahwqsicxm3kvwcfak690fsdwm3-guile-3.0.7.drv /tmp/guix-tests/store/00rl26bz9iy645lfvjz3wz8zv2813cjj-pkg-config-0.29.2.drv /tmp/guix-tests/store/bhan5y2nxnwnz9bcxdy76h9rfq20wml2-pkg-config-0.29.2.tar.gz.drv /tmp/guix-tests/store/dp1ja89a8vkxgf1p4jc6r5ymaf3zf8qc-linux-libre-headers-5.10.35.drv /tmp/guix-tests/store/0nqx5jlmc5mk9nrfvab8sn3g33fssycs-m4-boot0-1.4.18.drv /tmp/guix-tests/store/6d9fq4zyksi8my2avvmf4ccca6x353am-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/wfv4vwpw1xv13b7yff3siichmhifi8j3-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/cxfvgfda8b95ld7yb98472bzr487akfl-bison-boot0-3.7.6.drv /tmp/guix-tests/store/dsmw8wfsxlq3nk1vrc8ni7a6387k0695-perl-boot0-5.34.0.drv /tmp/guix-tests/store/q45vcwi1vdnl1ivwaxk6v2xcd8xa4ang-perl-5.34.0.tar.xz.drv /tmp/guix-tests/store/aaqnz7s3w73pb173krlx673qpmism8f5-perl-5.34.0.tar.gz.drv /tmp/guix-tests/store/mzllf2r2i5rzjqy79fs13ny8vgn86qpr-bison-3.7.6.tar.xz.drv /tmp/guix-tests/store/k8iplw0kw2dmly8v5lamgplx04ggn15j-linux-libre-5.10.35-gnu.tar.xz.drv /tmp/guix-tests/store/s9pg6r6jza7r5f3m94k7sgwpynwpxwcd-flex-2.6.4.drv /tmp/guix-tests/store/d1zzhllih6bhzvnc80jsm43r9kmflr9z-flex-2.6.4.tar.gz.drv /tmp/guix-tests/store/ffc5rg7wnrjrpzrmbg22h351280xijm6-ld-wrapper-boot0-0.drv /tmp/guix-tests/store/fm6ink06dpxk87bqc6lgxx8ky74ia62x-gcc-10.3.0.drv /tmp/guix-tests/store/7khqqxqxi03q8abfi49crphk30wm65i8-mpc-1.2.1.tar.gz.drv /tmp/guix-tests/store/97d6m61x48g8n8fnrn0pqrhx2209110m-gcc-cross-boot0-wrapped-10.3.0.drv /tmp/guix-tests/store/ah3g5mnihalpr1sccip82sxfrr0vr1pz-gcc-cross-boot0-10.3.0.drv /tmp/guix-tests/store/a4v61rcb2masds25m6i38bk66xn7zgbg-gmp-6.0.0a.tar.xz.drv /tmp/guix-tests/store/xmsm1kzrmrari5chwcil4dgmrq8xjcqf-gmp-6.0.0a.tar.xz.drv /tmp/guix-tests/store/flzxa3z4k5qv55km5gwn4w4b5ncnsmwm-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/ix1j66481xr2xy267qj0b8c36a9yd7g7-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/vasq2n0j43fxvhr1gz3r8h7gfasq8j5r-libstdc++-boot0-4.9.4.drv /tmp/guix-tests/store/4pn6afwyavhi2fwggq250b9dkf4j9lj8-gcc-4.9.4.tar.xz.drv /tmp/guix-tests/store/ciw3b48qvhb5fx35hllb74czfcjp2zn0-gcc-4.9.4.tar.bz2.drv /tmp/guix-tests/store/z4vfg9vv6w1ak3j942b50z7a86f37qn3-mpfr-4.1.0.tar.xz.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/gm3v790gmxrcssw929w1dhinzph12gdy-gettext-boot0-0.19.8.1.drv /tmp/guix-tests/store/lvp6i19y0xxszb921nckl5hy0jwp3dlh-gettext-0.19.8.1.tar.gz.drv /tmp/guix-tests/store/gx0cfkdlx8ani5v80y7rcn25wcsak11j-texinfo-6.7.drv /tmp/guix-tests/store/v1diq15pcscjp1g1nba5difq7i5a8444-texinfo-6.7.tar.xz.drv /tmp/guix-tests/store/hnr0xg3bd3ba4qzrc71br1pywls01z9r-python-minimal-3.5.9.drv /tmp/guix-tests/store/dl06g703krs6wsjh13cil554baifr5v2-expat-2.4.1.drv /tmp/guix-tests/store/gckzpnh0im4a98l1c5r44g3442b20f13-expat-2.4.1.tar.xz.drv /tmp/guix-tests/store/ma9dns8jdkkvy3kvbiv0h6wbac88pi8a-Python-3.5.9.tar.xz.drv /tmp/guix-tests/store/qy27syldpl7c5amch4fx70b79pmxh0fi-Python-3.5.9.tar.xz.drv /tmp/guix-tests/store/j8bhbikxlay3j3q41qw0yl0gay5yrs6w-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/1yl394nf5ndwikn9c48d17fmbxfvcbgk-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/lrl0dhhb4072c0hrs81jl5sgks7a5nh4-bash-static-5.1.8.drv /tmp/guix-tests/store/0s1f5gk80rgqpvjbxf4ayf7vnjw71mxr-bash-5.1.tar.xz.drv /tmp/guix-tests/store/0614ryjqzr489495nq6d99jajmhqjiab-bash51-003.drv /tmp/guix-tests/store/2agrqh7i0sywnfv7f7b9m7mmgvmn8skw-bash51-007.drv /tmp/guix-tests/store/2rs4l6v390s5ybkypvpdikk34bfsb2wi-bash51-008.drv /tmp/guix-tests/store/8cd3hyh9h1dj3cndzrjwg82ry3k9fywr-bash51-004.drv /tmp/guix-tests/store/8cjan671yq08m76d7l0qrfjg5kg0i0f4-bash51-006.drv /tmp/guix-tests/store/90is400r9i58rv532wj0cm1yxyhfsw1k-bash51-002.drv /tmp/guix-tests/store/agfndag1jx1rlxnjzxm3ab4ncyk0ihb9-bash51-001.drv /tmp/guix-tests/store/hain1z6c9v2zgkxm57vabb8qiasgc44r-bash51-005.drv /tmp/guix-tests/store/vpym9p0qg5brhi62jqzjhggar0ika4zc-bash-5.1.tar.gz.drv /tmp/guix-tests/store/36i906s7ib2nj0gzzvw0hfyirrbx5lp7-glibc-intermediate-2.33.drv /tmp/guix-tests/store/7ky23iywrg5winwlpbgj5hl129qx13jw-gcc-cross-boot0-wrapped-10.3.0.drv /tmp/guix-tests/store/36i906s7ib2nj0gzzvw0hfyirrbx5lp7-glibc-intermediate-2.33.drv /tmp/guix-tests/store/d1b92fz4y431r62xsvkqbdd13i93lzfh-zlib-1.2.11.drv /tmp/guix-tests/store/ji48bhh10nv6djiz16a1cljnq08fdck7-zlib-1.2.11.tar.gz.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/fbn7qarm6adak53jg4dz1gy4p064gy9y-binutils-2.37.drv /tmp/guix-tests/store/lrc73gzhggn1l16dlsdj1lv34qsjfan7-libstdc++-10.3.0.drv /tmp/guix-tests/store/r94pzhn6yx0knmnlbn49134yrvwbs29b-ld-wrapper-boot3-0.drv /tmp/guix-tests/store/gkl3anjfh20qqp73mq0hmdknjsqp1zfa-bash-minimal-5.1.8.drv /tmp/guix-tests/store/4lxlikg47slp0mrcd25rlcm6qcii6kqj-libunistring-0.9.10.drv /tmp/guix-tests/store/w9zlnd1lsfx9i24f59im4zfrgr86qyif-libunistring-0.9.10.tar.xz.drv /tmp/guix-tests/store/gc355jps6lvgnhny001hs7zf7k6rbn3m-libffi-3.3.drv /tmp/guix-tests/store/40qj4rc7c1rjhbh4yl21z5qi8md2ialv-libffi-3.3.tar.xz.drv /tmp/guix-tests/store/1km3h7zb41pjrldqgq6gjny5f0aissi0-libffi-3.3.tar.gz.drv /tmp/guix-tests/store/nrn3byjrdgf1c0icybmisrkcn28ypjyx-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/7gnpyf9a1i789jvz9j8cr69jaj0x5p28-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/rcp4r9nkzi1jhb4z8bgmhq0cmqlmgqxa-libgc-8.0.4.drv /tmp/guix-tests/store/ifxf227928p46a44kadh3qwc3xgi7kll-gc-8.0.4.tar.gz.drv /tmp/guix-tests/store/91z5zk9cv2bryzxa94zqpbph3i5x0v0d-gzip-1.10.tar.xz.drv /tmp/guix-tests/store/bmzp76q0a1ihpd044dfjj160wb8fqgs8-grep-3.6.drv /tmp/guix-tests/store/2bxdmf4galrb85yv3gkdhkrcw8jxyidg-grep-3.6.tar.xz.drv /tmp/guix-tests/store/1zk1y70l49d03g9czi6w1pzngc43g212-grep-3.6.tar.xz.drv /tmp/guix-tests/store/dyvkgvsbx1iz19ad4vmjp8f25k70bziw-module-import-compiled.drv /tmp/guix-tests/store/rj6lyl5dpik9kp20q04lbpr1aq6jx466-glibc-utf8-locales-2.33.drv /tmp/guix-tests/store/3xx3dcm5zyfgjkvyal7azvkr13981w4j-module-import-compiled.drv /tmp/guix-tests/store/6623qs8y2ddd3fbgy4fhagkphx28pdq6-gzip-1.10.drv /tmp/guix-tests/store/m0xiw3dznzaaxw8izp2ywc1hc5hd3blj-coreutils-8.32.drv /tmp/guix-tests/store/afbnqhzv3bam6n593027krw63kjlppd0-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/bik73j39d1bb6ksn3x2xdc9h133kiigf-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/2pqyydqw0z0zf2vhdw6xs3wfnbhza0qd-guile-3.0.7.drv /tmp/guix-tests/store/3w6zpyvj10b7yj0zjskixwkxaf49q48w-libunistring-0.9.10.drv /tmp/guix-tests/store/50h57gnjb225z2qzh580zcpqniiz07jb-diffutils-3.8.drv /tmp/guix-tests/store/55n6pa2bks7fk13p12bchw8lpi2sy88m-perl-5.34.0.drv /tmp/guix-tests/store/p0p0ab2zq1p1332h5x07wixh0r7am998-coreutils-minimal-8.32.drv /tmp/guix-tests/store/z2x6zgpv6gzyp12b4a5ikr6n75yws86b-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/6ank9bknb1f95kcvir5v0jnpzxa07ir3-tar-1.34.drv /tmp/guix-tests/store/vgkjb9gr1mc39k5c46arbjbks15b35cj-tar-1.34.tar.xz.drv /tmp/guix-tests/store/bnnng57rswby8xhvzy9vjwmwh1xc80m1-tar-1.34.tar.xz.drv /tmp/guix-tests/store/cj7y0ngqdj3r2yx6grcqb1ppkgpyb8b8-bzip2-1.0.8.drv /tmp/guix-tests/store/5dpcig3kzm5vrskw80977ifgblkcffwr-bzip2-1.0.8.tar.gz.drv /tmp/guix-tests/store/dpgm59v7m8p8hi1ci2jv43a84l67qlqa-file-5.39.drv /tmp/guix-tests/store/g3vzcjpysp0hcl7wnwjykpi3ps1fgjyk-make-4.3.drv /tmp/guix-tests/store/9mk3x98kxqdz034rj1rmilij0grz3kc7-pkg-config-0.29.2.drv /tmp/guix-tests/store/g6hrlky5sy7nz3kg0whxq44xfpc6r8z8-patch-2.7.6.drv /tmp/guix-tests/store/600hnwvm1w09da6mrjfdvqkl0ld96gg7-ed-1.17.drv /tmp/guix-tests/store/5z89n7v0b8mnswpaiw3j9anva591lbva-ed-1.17.tar.lz.drv /tmp/guix-tests/store/6zfa9zfpig9kxc1ciaxhxlif7rj96h6k-lzip-1.22.drv /tmp/guix-tests/store/i2a9klhfkfyfrqfsqbmyy60mdgbxjb34-lzip-1.22.tar.gz.drv /tmp/guix-tests/store/a7b5882ma5bii2isrc81wad9qig922m9-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/h9837470b7xbdc5045rfq4q8p50pnayr-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/jqlmsrpnnww1qq08n9dm8wnk4y2jcl8f-findutils-4.8.0.drv /tmp/guix-tests/store/p62d7v83mfzh9q2gr238iw1iwzaa54bb-gawk-5.1.0.drv /tmp/guix-tests/store/jnl5s25mlvhhx7513mf7wxnjf9k12bwb-gawk-5.1.0.tar.xz.drv /tmp/guix-tests/store/lddc2s21apl8jzayr0qh8z4jv37qzgk6-libsigsegv-2.13.drv /tmp/guix-tests/store/p7ch1zpda76ng44lcylkmvkqj9p6rrbj-libsigsegv-2.13.tar.gz.drv /tmp/guix-tests/store/xdjpbx97b8xwxv0y5f3vbj269512m5za-sed-4.8.drv /tmp/guix-tests/store/a8fn7nd882wxpcxmfmlhdy9nn3hxq3h5-sed-4.8.tar.xz.drv /tmp/guix-tests/store/6a35xdllgbxwfk369rmz03qqh76m1i83-sed-4.8.tar.gz.drv /tmp/guix-tests/store/zirq8ypbjch79fc9xrkpm0d6lbb9im9q-ld-wrapper-0.drv /tmp/guix-tests/store/zvam0j9fwpnd11c43lawwamw1fxhdq8z-xz-5.2.5.drv /tmp/guix-tests/store/c2p3ba4bkm2ddllr61lf83ksy2ji326g-xz-5.2.5.tar.gz.drv /tmp/guix-tests/store/8k44mfp0hsvy3q4yxfrb0m6495zjf7dp-pkg-config-0.29.2.drv /tmp/guix-tests/store/azrmgrz2mshmic3hmiwmbl81x6v719d0-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/c7dmh3kaihk8n1ya0b4bqdmgmjjzyham-libgc-8.0.4.drv /tmp/guix-tests/store/k9jkyk4qwbcwh9nd9yvhghgkmpz8wrg5-libffi-3.3.drv /tmp/guix-tests/store/94iz0h14l7wvg9m7kwv9sycs0bq1khnb-libffi-3.3.tar.xz.drv /tmp/guix-tests/store/pgvp468v34dplcwzcw4km0j03wj73lz6-bash-minimal-5.1.8.drv /tmp/guix-tests/store/fshyvm6adcq7hw62v89zisypdl5ilxd9-bash-5.1.tar.xz.drv /tmp/guix-tests/store/8l20rv7jrwmb0lbrljj1q16dlqr5gsb0-libgpg-error-1.42.drv /tmp/guix-tests/store/k1wvwaxbn0zxdkn42ipghkjk3ralg5db-libgpg-error-1.42.tar.bz2.drv /tmp/guix-tests/store/lyb9a6nkfl8g0bgyjnn239w8ikrjjgib-gettext-minimal-0.21.drv /tmp/guix-tests/store/3hdq83yb29ijw91bqijzx896y06a11m5-gettext-0.21.tar.gz.drv /tmp/guix-tests/store/8jiqwcn2fxs6zjp71pr4iz0l7kq62jgi-zlib-1.2.11.drv /tmp/guix-tests/store/hizh2pv4afqhci3fspmnwkl24qvz7mmf-libxml2-2.9.12.drv /tmp/guix-tests/store/20icgpa30z6rlkbqwn141p9pbi14n37m-libxml2-2.9.12.tar.xz.drv /tmp/guix-tests/store/7rpjscyfv3gwj8fwc39xhymq0qxrngrh-libxml2-2.9.12.tar.gz.drv /tmp/guix-tests/store/fy16mi1xm2vmbhj017ggfxg4a0h77nim-xz-5.2.5.drv /tmp/guix-tests/store/hwppn7f1mws18zsk2n53klrwlpmlr124-perl-5.34.0.drv /tmp/guix-tests/store/gqx7l2gzp88gif0az3dqg0r3wl0yij3w-coreutils-minimal-8.32.drv /tmp/guix-tests/store/jcn6z8hnhyls6g48hk8y5x5kzhliv6d5-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/wb6kx05hi2a99pbcac0i6yd176sll04i-perl-5.34.0.tar.xz.drv /tmp/guix-tests/store/wc435c6jb85m8f3xmcz5avwnqza1id91-ncurses-6.2.20210619.drv /tmp/guix-tests/store/3dgf4kwi1nvcy95nn020di0klkjg9s19-ncurses-6.2.tar.gz.drv /tmp/guix-tests/store/rzh9fakqivjd02wpx26wis4dh5mhmjjr-ncurses-6.2-20210619-patch.sh.bz2.drv /tmp/guix-tests/store/bha2smigk61y51cl0brvr1ds6wiscrik-texinfo-6.7.drv /tmp/guix-tests/store/kjfzhznvhq6ygrqn76zwxpnyq746n3az-libgcrypt-1.8.8.drv /tmp/guix-tests/store/0272fnn9cjcp9lkv586jsim8qq7aq8if-libgcrypt-1.8.8.tar.bz2.drv /tmp/guix-tests/store/lcfbv652p20b6rcm3w61z1dg3bi4z94q-guile-gcrypt-0.3.0-checkout.drv /tmp/guix-tests/store/11jcipdfmlnygkksr489gq0420lsnq7p-guile-zlib-0.1.0.drv /tmp/guix-tests/store/pnhz6swwip33aa2pzp16jqjb6p1nvcaa-automake-1.16.3.drv /tmp/guix-tests/store/pwnhk4lmjcb626qj1d9l4zhi87gfns5p-autoconf-wrapper-2.69.drv /tmp/guix-tests/store/dwpdx1cxzk3yxxlxzpxl7ykj3hsqx6ky-autoconf-2.69.tar.xz.drv /tmp/guix-tests/store/pl3xwmvlg60isx6aq8gn52h7jamq0c07-m4-1.4.18.drv /tmp/guix-tests/store/xjsp9pbxvr0hwpi5ykzlz1kinkjcxybb-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/ry30lchbhfr56ddqxblgdy37ab7irxnj-autoconf-2.69.drv /tmp/guix-tests/store/qry2r79hhzyl31nr6ry1pqs4b86ykv09-automake-1.16.3.tar.xz.drv /tmp/guix-tests/store/9mhn9vqx0x9smnqkgd609mrh9r3m8w38-automake-1.16.3.tar.xz.drv /tmp/guix-tests/store/xhx26v8vkr3arnw630z4hjrsf2hzymq3-guile-zlib-0.1.0.tar.gz.drv /tmp/guix-tests/store/1nxdsds0mhd1lbgiar5qrd1yf2fpz4an-gnutls-3.7.2.drv /tmp/guix-tests/store/23j6x323q3rc4nqvapmw41h5p22vcxrk-which-2.21.drv /tmp/guix-tests/store/1nvf74rjkzjxp59kcck0wgjbdfn0vfs3-which-2.21.tar.gz.drv /tmp/guix-tests/store/3wrg5lcgzysjr5srqdfsl61svva1k3ks-gnutls-3.7.2.tar.xz.drv /tmp/guix-tests/store/rn6k3anl07fkgpsqgz9r478vw5dmdy81-gnutls-3.7.2.tar.xz.drv /tmp/guix-tests/store/bwdfif6x0805bv262gcg26yj0i8pmahc-libidn2-2.3.1.drv /tmp/guix-tests/store/g1gf7w2l8jqi2fvakfla7wsi30idhs1x-libidn2-2.3.1.tar.gz.drv /tmp/guix-tests/store/hnilzisybg688ddgizx3w5d63w8qs05g-gmp-6.2.1.drv /tmp/guix-tests/store/wwlwl85r9hg1cknaw9wjagp2qgqy62mm-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/y5m24mds14ncjlrwldfng8xkmmjhjj3h-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/k3sxxnpd3rpxb6c2idc1k4wj3ll1cyq8-nettle-3.7.3.drv /tmp/guix-tests/store/ash166sr7hzjjfh3kc8qrg8j9zd3bxac-nettle-3.7.3.tar.gz.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/3y8z12v0g2ai2hr9rfwlrvm25dxz3bm4-util-linux-2.37.1.tar.xz.drv /tmp/guix-tests/store/ksjqykwy7gykgdpjyc01bdh2fg3mmblr-util-linux-2.37.1.tar.xz.drv /tmp/guix-tests/store/h8828pl50ix2h5p87vykbqak1v9zq4rm-file-5.39.drv /tmp/guix-tests/store/z131mia9hl1qclyhsfyhh9jxm04c9gcf-net-base-5.3.drv /tmp/guix-tests/store/1b9jlbrqhjl1f6lmhb24h7v88jrsr0xi-netbase_5.3.tar.xz.drv /tmp/guix-tests/store/bd7scd6k3x51i3y9r7gbajqhd4a8jq7y-tar-1.34.drv /tmp/guix-tests/store/3hbcvhf4yl83hy918rv05rfq0yg16grv-tar-1.34.tar.xz.drv /tmp/guix-tests/store/nljx6lmvcpmvhysmykn7p34gbsisri10-socat-1.7.4.1.drv /tmp/guix-tests/store/npdcrdnmz4xc181ndn4lz5qy36ai2l5v-openssl-1.1.1l.drv /tmp/guix-tests/store/w49g2dpvf7ryrifm52gyv43mjm9gmadq-openssl-1.1.1l.tar.xz.drv /tmp/guix-tests/store/9cyf1qifhj2h699r562q4lflx66bqvws-openssl-1.1.1l.tar.gz.drv /tmp/guix-tests/store/rkfa70mbh893zvvgzkw7fxjskj27n5cm-socat-1.7.4.1.tar.bz2.drv /tmp/guix-tests/store/rhd80g918d5ig6z136wn6r809s4qp5wk-datefudge-1.23.drv /tmp/guix-tests/store/0yzp4sn3iddyjjszlxffd9n227yvms7z-datefudge_1.23.tar.xz.drv /tmp/guix-tests/store/dwcd2jc7jfnyl8kg4k0hs9722pilczjw-datefudge_1.23.tar.xz.drv /tmp/guix-tests/store/s4gbsg874c932hy6kvxzpv0khfc9ih5p-p11-kit-0.23.22.drv /tmp/guix-tests/store/8jmsds3s0j33mkr6wjni6ywzr0cribzd-p11-kit-0.23.22.tar.xz.drv /tmp/guix-tests/store/sxxpsj6q99zhxxzabqhc4nrk8ri05z55-libtasn1-4.17.0.drv /tmp/guix-tests/store/rbf07kjifkgxbs2dyns6k9qp00i9mm84-libtasn1-4.17.0.tar.gz.drv /tmp/guix-tests/store/vcyfmww6m86bh1hbbkf9c1s1mfcbdbl6-net-tools-1.60-0.479bb4a.drv /tmp/guix-tests/store/09k8xbs5m1d5b5i4xbr5xv4833ps0yyf-net-tools-1.60-0.479bb4a.zip.drv /tmp/guix-tests/store/amyqdn43835z8n4nr7mnm2v8438bfkrg-unzip-6.0.drv /tmp/guix-tests/store/5sfchzcg8c9jdly24h3hspbddfcxrgmv-unzip60.tar.xz.drv /tmp/guix-tests/store/g1laxgrn8h1zyrjy9gd9901sjzx69b33-unzip60.tar.gz.drv /tmp/guix-tests/store/hplrcllrlfjklmp6wi4pxq482gnvbqmi-bzip2-1.0.8.drv /tmp/guix-tests/store/wdmrfjybsq9nb2v1zagr9nc0gc2amxwf-iproute2-5.15.0.drv /tmp/guix-tests/store/3gzp4wxrxblp5z27kmknjqccg9zwvcan-iptables-1.8.7.drv /tmp/guix-tests/store/3dr5pwp604s695mx7zyzyygm5nfj3kl3-libnftnl-1.2.0.drv /tmp/guix-tests/store/hqadr2qrs8aj4w2cb8bhg49zgndw4vpa-libmnl-1.0.4.drv /tmp/guix-tests/store/zcxykwwyg4hd3a6g18g5hh27gsjmivkx-libmnl-1.0.4.tar.bz2.drv /tmp/guix-tests/store/y46dhypls1ygjnsskm9xm9gz1n6k9y4r-libnftnl-1.2.0.tar.bz2.drv /tmp/guix-tests/store/7vpjgw85wsraa2a7bp7ln5ilcdk3sbvx-bison-3.7.6.drv /tmp/guix-tests/store/90an45ybmxxdk2j5j9fv0ji8q7iyyiav-flex-2.6.4.drv /tmp/guix-tests/store/g6msfm26i8b5h396504c8110yibnh7l8-help2man-1.48.3.drv /tmp/guix-tests/store/0d6iv542mz1li1lai6v0dc6pzikq5b8r-help2man-1.48.3.tar.xz.drv /tmp/guix-tests/store/7xam65p8mwva5k7xf7fi931600x5qi93-perl-gettext-1.07.drv /tmp/guix-tests/store/468lblrdf3cv2w8a3j3r48blb7vb1ymk-gettext-1.07.tar.gz.drv /tmp/guix-tests/store/5bb0bvrqz67ijc9ihw938dlb0rrh0srw-module-import-compiled.drv /tmp/guix-tests/store/yzyjm7g0zaa5gzfqyyg2r4nqib0nj27f-bison-3.7.6.drv /tmp/guix-tests/store/znp4jcsv6rjw93am0db8c2smkaywj1ni-iptables-1.8.7.tar.bz2.drv /tmp/guix-tests/store/idxr9ffaks89mrbx1yjly4ibwhif0i0x-iproute2-5.15.0.tar.xz.drv /tmp/guix-tests/store/r754ad1aprcp89353a6qjakps2walryc-bdb-6.2.32.drv /tmp/guix-tests/store/h1wymwl4qwbcapsidm5zzglkhyq0cfpr-db-6.2.32.tar.gz.drv /tmp/guix-tests/store/f6lajahpqi1dd9crj60g1mbkik0yaamz-git-minimal-2.34.0.drv /tmp/guix-tests/store/14ri30vi1hxr0rsjv8pypbgvc4fvkvya-curl-7.79.1.drv /tmp/guix-tests/store/1nxdsds0mhd1lbgiar5qrd1yf2fpz4an-gnutls-3.7.2.drv /tmp/guix-tests/store/6va9q19n8h6j6h1cn9pkb8dwm9f0wvrk-mit-krb5-1.19.2.drv /tmp/guix-tests/store/ji5s8y4cw4nbf83h85h9lzs1fz1ljb0y-krb5-1.19.2.tar.xz.drv /tmp/guix-tests/store/mzyfxingdk4xvk4z37fsbk1192sdmf4w-krb5-1.19.2.tar.gz.drv /tmp/guix-tests/store/v7y9lvr7ca443v56c3rxvgm1rgwp81ci-tcl-8.6.11.drv /tmp/guix-tests/store/s1g0w4mmh61sjiwhby8xc5hd8jnx46xy-tcl8.6.11-src.tar.gz.drv /tmp/guix-tests/store/8hkyk814a2042g5cbmaz8d37kg6158bf-curl-7.79.1.tar.xz.drv /tmp/guix-tests/store/rr2517yxgyayknjyfv70j79m9k4gfn7d-curl-7.79.1.tar.xz.drv /tmp/guix-tests/store/8ngxgsybz3sfw773wj43v9hfdi8gk1m6-python-minimal-3.9.6.drv /tmp/guix-tests/store/19cjj4qn5nplk3x2sfammqpg9hlf9sbr-Python-3.9.6.tar.xz.drv /tmp/guix-tests/store/iria8q3qidpz2bjm49v2winn3vjxypp8-Python-3.9.6.tar.xz.drv /tmp/guix-tests/store/c9lcckp47bak9j8ksxjc6lac7fhlqi8r-zip-3.0.drv /tmp/guix-tests/store/ywkmbnkp6n7jpqx1j1q80lha47ivmr3a-zip30.tar.gz.drv /tmp/guix-tests/store/kkly0bjdn3vckm8daniz6y9jrs42idz0-expat-2.4.1.drv /tmp/guix-tests/store/lxp25j1rqh9g4akh9ya7ck8vhaiz0q8k-tzdata-2021e.drv /tmp/guix-tests/store/g6ssndxfwf9f2584zdyvd85hkxxhgs02-tzdata2021e.tar.gz.drv /tmp/guix-tests/store/yyajwl02cfrwaprvxxbn96wy6nzzgv6j-tzcode2021e.tar.gz.drv /tmp/guix-tests/store/jjzdbgvha4lxmxgihvm0iyj8hmkr9cap-nghttp2-1.44.0.drv /tmp/guix-tests/store/3qchlvj4csg1nd06ya59lxj5r5qq7bda-nghttp2-1.44.0.tar.xz.drv /tmp/guix-tests/store/4y27gha09kld75zshnmyia57xmq9mjjs-cunit-2.1-3.drv /tmp/guix-tests/store/fks2jq3fqflm3n0fvyrkcr3g4r1kb56z-libtool-2.4.6.drv /tmp/guix-tests/store/bphi7f415ca2fksfcjnixy661321llxb-libltdl-2.4.6.drv /tmp/guix-tests/store/r6d7n4ilf0f7cfaxyyikjcpmvjmcir5r-libtool-2.4.6.tar.xz.drv /tmp/guix-tests/store/r4rjin6gzz0bcaiwmsb2hvgcjq7hmag8-libtool-2.4.6.tar.xz.drv /tmp/guix-tests/store/s98b1fzvmhdziamv2858fz9k6g69xgzb-CUnit-2.1-3.tar.bz2.drv /tmp/guix-tests/store/60z6gh840cqa4lrnzfwx0iw2xnrqghph-jansson-2.13.1.drv /tmp/guix-tests/store/36fdhi8is3d52wcqpjk7sr7xh79xvb10-jansson-2.13.1.tar.bz2.drv /tmp/guix-tests/store/bwd5pzh2j9xqi7k5nndj52a78y0sq61a-python-3.9.6.drv /tmp/guix-tests/store/12ai3gxrj1m3ij8gv22sb5dgcpv3ng20-util-macros-1.19.3.drv /tmp/guix-tests/store/z4z0ha93rk5m4x9grynk62p7j054kry1-util-macros-1.19.3.tar.bz2.drv /tmp/guix-tests/store/1s6xwrs17i1nl62vabiz3gbgf3ljld88-readline-8.1.1.drv /tmp/guix-tests/store/ckb9nzpjh8qcrxi0izalc673a372zxsj-readline-8.1.tar.xz.drv /tmp/guix-tests/store/4zjjf1h3imnzd43nzbr29ws926chi6gy-readline-8.1.tar.gz.drv /tmp/guix-tests/store/pgz10hw4hia626xbjlyhzir277nw2934-readline81-001.drv /tmp/guix-tests/store/6d8ybzkz8rm5vcl79664443pqpa2hf2x-libxdmcp-1.1.3.drv /tmp/guix-tests/store/fkm1lq1yjjyi0g04qpp94c2g9z6zfq6v-xorgproto-2021.5.drv /tmp/guix-tests/store/gfn93s2dy2z4rqrbpmj3pz8gwfaf4wkd-xorgproto-2021.5.tar.bz2.drv /tmp/guix-tests/store/j63dxva124aj5n41h0g0g3h62wwdl04q-libbsd-0.10.0.drv /tmp/guix-tests/store/4qamifn14izjih5n74kaym42g0gbh1x3-libbsd-0.10.0.tar.xz.drv /tmp/guix-tests/store/jqgv2x635lvd45lkgizn8ww88mm38pkl-libXdmcp-1.1.3.tar.bz2.drv /tmp/guix-tests/store/b2axffmpy7xpra7ad1q05j47nvr1wvk4-libx11-1.7.2.drv /tmp/guix-tests/store/8kr3mbm12vs5h453w43mbv24qh2i369z-libX11-1.7.2.tar.bz2.drv /tmp/guix-tests/store/l1vjnxwvn0n2pj717i8ankxgqr37qjaq-libxcb-1.14.drv /tmp/guix-tests/store/1sv0g93b0fpbsqm91qrd8rzsi4ghprg1-libxcb-1.14.tar.xz.drv /tmp/guix-tests/store/ggdnn1b7zfnixx3y8p7pa5f7rrslgil0-xcb-proto-1.14.drv /tmp/guix-tests/store/4g0ciqbdh73xkcx6iyzvxx458fy72vj6-xcb-proto-1.14.tar.xz.drv /tmp/guix-tests/store/nicc7434l857m6pn1nldrl1iycvfa6z2-xcb-proto-1.14.tar.xz.drv /tmp/guix-tests/store/w0q72700i2v48ik05jaak38g4n1340pk-python-minimal-wrapper-3.9.6.drv /tmp/guix-tests/store/xdk1lfrcd51g7i2i7lkmbyjpyzipc2zm-bash-5.1.8.drv /tmp/guix-tests/store/vkixsak7qv5jsim76sa7zkq0sjm8ffv0-libpthread-stubs-0.4.drv /tmp/guix-tests/store/hwdxl7fny9sh7034hfkcxjma8pcy107n-libpthread-stubs-0.4.tar.bz2.drv /tmp/guix-tests/store/w0dwmy34rs10n7rh100j3c1v7fdk1q95-libxau-1.0.9.drv /tmp/guix-tests/store/5fdjjbsmgaf73lmfbwp1syzi9dpfj4ki-libXau-1.0.9.tar.bz2.drv /tmp/guix-tests/store/z4scfly9fws2q3k097x2fiyml2xjms6q-libxslt-1.1.34.drv /tmp/guix-tests/store/0fgn8iqagrz9d8hzakkjbcfyh95l7mm7-libxslt-1.1.34.tar.xz.drv /tmp/guix-tests/store/1da1kh5yvmxq3kspiqgsfdnrnqrh17qi-libxslt-1.1.34.tar.gz.drv /tmp/guix-tests/store/m79hnhjw3i1y99xwf7rg771xhf99hdvy-xtrans-1.4.0.drv /tmp/guix-tests/store/8jwhbqwafy7haqjkk15bmx8cg1ybyhp7-xtrans-1.4.0.tar.bz2.drv /tmp/guix-tests/store/di8hlsnfacip72sxzhi8k8fd0pzrv7zk-gdbm-1.20.drv /tmp/guix-tests/store/7yjcgjpgnh7szk10rdki8wqpnvnzhs8b-gdbm-1.20.tar.gz.drv /tmp/guix-tests/store/psxi5c3yvv4xm3mif8ddaswmjp0wbk28-sqlite-3.36.0.drv /tmp/guix-tests/store/zf5y36j726cfri6m6c7951hw0i499rrz-sqlite-autoconf-3360000.tar.xz.drv /tmp/guix-tests/store/a84rbsxnyx15jdg82xdn164qa96dnn9k-sqlite-autoconf-3360000.tar.gz.drv /tmp/guix-tests/store/pxrv528rakvqw4sjjlb0wmnvjyia39w9-libxext-1.3.4.drv /tmp/guix-tests/store/73whp8srb8nr5c5zn11xrrq0nl0sa1wh-libXext-1.3.4.tar.bz2.drv /tmp/guix-tests/store/xmb8zw25ydf9qncq91waj3c4hpdnbsjh-tk-8.6.11.1.drv /tmp/guix-tests/store/1kk2vqp36s9d5594hbd40f2pbzls7xnz-tk8.6.11.1-src.tar.xz.drv /tmp/guix-tests/store/8dnfigpzdy1hdhfa46gix97zfnvn2lv7-tk8.6.11.1-src.tar.gz.drv /tmp/guix-tests/store/2lbg1pwja5lnn0jd69pr7rqc1wf73mn4-libxft-2.3.3.drv /tmp/guix-tests/store/a42jslaiw3n7pbr73f9nqx5jga5lny9b-libXft-2.3.3.tar.bz2.drv /tmp/guix-tests/store/g1cg0xh5ii9mc9zwxf0ahlfj74zr9r5x-fontconfig-minimal-2.13.94.drv /tmp/guix-tests/store/b081xw509nqg9jchl062lllxsp3gixwf-font-dejavu-2.37.drv /tmp/guix-tests/store/0dm5a4akpbvz5adfck7z5n71k3grnq6h-dejavu-fonts-ttf-2.37.tar.bz2.drv /tmp/guix-tests/store/bw6h4j46crzwmw15xq1mj4fg2hwym9xi-module-import-compiled.drv /tmp/guix-tests/store/kwcb79jcnimag8dsp16p0xyivpz4yf9c-gzip-1.10.drv /tmp/guix-tests/store/gnn656w5ai6h3y71lzq6aflc69p5b8si-freetype-2.10.4.drv /tmp/guix-tests/store/913xvnkyjyr9wpy5yyq4ald01vynvxj2-freetype-2.10.4.tar.xz.drv /tmp/guix-tests/store/p218ymga1ixpjhqvkkwx5jr74ln7qcy7-libpng-1.6.37.drv /tmp/guix-tests/store/ds8l06mgv1llghrqqydj8v244ck0gss0-libpng-1.6.37.tar.xz.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/nh1kzsk0kaip51ys6yigh7za0b4n0abc-fontconfig-2.13.94.tar.xz.drv /tmp/guix-tests/store/3hzm9r3k2gzfinka6m0vfn3ny7fk734i-fontconfig-2.13.94.tar.xz.drv /tmp/guix-tests/store/w537jrzzh9517wcnq8dg4hkcf31yfri6-gperf-3.1.drv /tmp/guix-tests/store/avqyx04y2by5q8sh0bn658dm8l2gbf3i-gperf-3.1.tar.gz.drv /tmp/guix-tests/store/y567js4v5n504frabyip2lfbs3d8c9s9-libxrender-0.9.10.drv /tmp/guix-tests/store/aajf4cc26g4y84h7kzgmsxqz8pkvyica-libXrender-0.9.10.tar.bz2.drv /tmp/guix-tests/store/hmz6j0m3l356zwf5qhii500fgbxsl0vd-c-ares-1.17.2.drv /tmp/guix-tests/store/95p5v1wqiih9i1jwnrsc8vzvhjdxl8lk-c-ares-1.17.2.tar.gz.drv /tmp/guix-tests/store/irmq4qan6pd9irm70xalv20ygb1n7vqm-jemalloc-5.2.1.drv /tmp/guix-tests/store/b90sxmfg5bn0qmb6kz9vs2lxy12pq4f6-jemalloc-5.2.1.tar.bz2.drv /tmp/guix-tests/store/kgvidm7g4c95ayvyb9hidjqbrlwq2210-libev-4.33.drv /tmp/guix-tests/store/j9hk17nyqdv3pj81nsa77njxl3pr9jjj-libev-4.33.tar.gz.drv /tmp/guix-tests/store/kyc7hx0zj21kry7mxj8ks6sid1apvl6x-libidn-1.37.drv /tmp/guix-tests/store/6jcak9dw49dz4dl84206wzgr4n09vnk0-libidn-1.37.tar.gz.drv /tmp/guix-tests/store/gnj35c1cx3d65n0nffwb0vjskp8znxj1-git-2.34.0.tar.xz.drv /tmp/guix-tests/store/w3al8qd0l6y6h5ji67ampfck8qf25biy-guile-json-4.5.2.drv /tmp/guix-tests/store/2jsvq6g3mm0zd2bfysm3d5x0l9qignqh-guile-json-4.5.2.tar.gz.drv /tmp/guix-tests/store/zczss9jzfvg6w3218pyxf9rp3rc5p53k-module-import-compiled.drv /tmp/guix-tests/store/2q0vizlrfigfym166gjsxcm2v6zmjpzg-module-import.drv /tmp/guix-tests/store/8x5s2m9sqdk6sppr4382b93ygsbaijbw-config.scm.drv /tmp/guix-tests/store/40mp2k0naxpiapiq8dz8pzkhxcvvzx65-findutils-4.8.0.drv /tmp/guix-tests/store/kwlld6yi8abb567a1s52z11ravaiz3yn-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/4mp4q96x8s989b8sj3b5173jvjxbbzvv-genimage.cfg.drv /tmp/guix-tests/store/1ryk8n6jfz6bl54ixzbpp5px59vvdc1k-partition.img.drv /tmp/guix-tests/store/2gvqyn8k7ywbkc3fqhwkzqjgvfcn6bds-e2fsprogs-1.46.4.drv /tmp/guix-tests/store/1i9rb17bz35zswpdics7q5pnk8hd6m66-procps-3.3.16.drv /tmp/guix-tests/store/xwdwvpgbkqk0afqnmn8vyivgr137305i-procps-ng-3.3.16.tar.xz.drv /tmp/guix-tests/store/60ajy8fhp2pfznlx5ippk3y5lh05rqgg-e2fsprogs-1.46.4.tar.xz.drv /tmp/guix-tests/store/6vm4apwi19sbnh1qhxjz5ndjyhzx1dlj-dosfstools-4.2.drv /tmp/guix-tests/store/vmx7m2m8ckk2ih8z0jvsgnvfxf6yrqw8-xxd-8.2.3487.drv /tmp/guix-tests/store/ib6pk0mhk8vnppzbiz1iv5y2bbxhwvp5-vim-8.2.3487-checkout.drv /tmp/guix-tests/store/yqcbbbanifkf14prmpgzk3212sh1jhbc-dosfstools-4.2-checkout.drv /tmp/guix-tests/store/dskvmzxj8js5bgliqb0y55v1bplzy78p-glibc-utf8-locales-2.33.drv /tmp/guix-tests/store/k7xjyqm9krkbv9qvw87z7dcwnc828lgn-glibc-2.33.drv /tmp/guix-tests/store/4978fq5br4v48dk27vk71yllddnn3kzm-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/kbwm91cmwawdj4cr3cwfkwxpfpjgg0ml-bash-static-5.1.8.drv /tmp/guix-tests/store/zjsnvvk557wmb5w2i962mq60fynrk6jz-linux-libre-headers-5.10.35.drv /tmp/guix-tests/store/m7w7d0ba41gg665aq9shwk68d56q44sd-grub-efi-2.06.drv /tmp/guix-tests/store/1vbgi0a26rnyvws37v5afqmzfs29l585-grub-2.06.tar.xz.drv /tmp/guix-tests/store/7k5daaqrmca44w4lgdgc3gbf3bngn5sj-grub-2.06.tar.xz.drv /tmp/guix-tests/store/3aflpa7pa4awlygblgxjkkwx99yj54q9-fuse-2.9.9.drv /tmp/guix-tests/store/xq1mlgk5rw7ka30jdx4aj31sa2grg039-fuse-2.9.9.tar.xz.drv /tmp/guix-tests/store/rrxskzv964zilsi81wwam87ix2yxvr2c-fuse-2.9.9.tar.gz.drv /tmp/guix-tests/store/54z5zijpccpjfsq44794svsybv0ifl4v-xorriso-1.5.2.drv /tmp/guix-tests/store/gg0897h8bc5p6ljc4yq74b2c4x7qsdsh-acl-2.3.1.drv /tmp/guix-tests/store/bfqcx4ji79m0igvagplbhha9h3hkhqgb-attr-2.5.1.drv /tmp/guix-tests/store/2pn4vdkzbg5gwjqskby89v8nrn84b66y-attr-2.5.1.tar.gz.drv /tmp/guix-tests/store/fdrp2n3bzzjzdb8im056pgcp98ccscna-acl-2.3.1.tar.gz.drv /tmp/guix-tests/store/ix4k1853388gpg9gk7q7j60c25q809nf-xorriso-1.5.2.tar.gz.drv /tmp/guix-tests/store/94jsmp2v461d86cpsqfsvcpdivlxppv5-parted-3.4.drv /tmp/guix-tests/store/cm8zp3pqpg7c94yhpzfmkrmhhsny6ykl-python-wrapper-3.9.6.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/py9prgrxz261l11b346blzvbnv3dcnjk-parted-3.4.tar.xz.drv /tmp/guix-tests/store/xn7835n120pycqzqhfbsszk555hf0bvn-lvm2-2.03.11.drv /tmp/guix-tests/store/f8q4d9jkq06xqf4l6fwa5fr8yzyx89d9-libaio-0.3.112.drv /tmp/guix-tests/store/yag9j7ycgkbzdgid4wxknyai0m11bag3-libaio-0.3.112.tar.gz.drv /tmp/guix-tests/store/pjm81nfsixr57mzwv6j3n090sy6b204x-LVM2.2.03.11.tar.xz.drv /tmp/guix-tests/store/qbnmrqyxy66rnjxyv3xmcl3cg3184ml9-LVM2.2.03.11.tgz.drv /tmp/guix-tests/store/pryrccddxpjp6rhg9dg63bfj1bxqr9ws-eudev-3.2.9.drv /tmp/guix-tests/store/41lndimrmc5h40wjqwbdbsj98fkmpwgi-kmod-29.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/hiaa99jhg9xibrw26a4gx07ncb1vp42m-zstd-1.5.0.tar.gz.drv /tmp/guix-tests/store/64i36988f5cw6y2cmjyvs70rqxhqxkqc-kmod-29.tar.xz.drv /tmp/guix-tests/store/fplbsi54rvw8krf6rqv86p5514p5lhbk-kmod-29.tar.xz.drv /tmp/guix-tests/store/96qg9y2lrwq5ai7n4dp6n5v5hg1rbhrc-docbook-xml-4.2.drv /tmp/guix-tests/store/4xa6bmg4fysxsi7fcaqcln3dzbch3jbq-docbook-xml-4.2.zip.drv /tmp/guix-tests/store/frv94krkjsrdy4n0h78zjhbygv6iza09-docbook-xsl-1.79.2.drv /tmp/guix-tests/store/5c1aprdmpq422i3lz6gavkirf1vz7xl9-docbook-xsl-1.79.2.tar.xz.drv /tmp/guix-tests/store/3bz1xi8mifzvvihbff8fjpp5fs4ybiib-docbook-xsl-1.79.2.tar.bz2.drv /tmp/guix-tests/store/z3fp9gnyy3n3g27jqflhb7l46cqygxww-eudev-3.2.9-checkout.drv /tmp/guix-tests/store/j8rf89mfp8xklyz4c5fwpfrjmcm4031q-eudev-3.2.9-checkout.drv /tmp/guix-tests/store/9a5fv9invv6f983qi23000sh9yb8zjwp-efibootmgr-17.drv /tmp/guix-tests/store/94xqw5rkkpz8c1p2b2bswplm7i7piwmh-popt-1.18.drv /tmp/guix-tests/store/i26vs037bcwq7jnkq3ssgc8dg0n3avvc-popt-1.18.tar.gz.drv /tmp/guix-tests/store/g41l93j4hpnm5qw4bia65rrv60p6fn3q-efivar-37.drv /tmp/guix-tests/store/yf9bxihf2j8xg2l060507sg6l334wypb-efivar-37.tar.xz.drv /tmp/guix-tests/store/bpn7r66bw8pzfx209ya5friz55ih15r2-efivar-37.tar.bz2.drv /tmp/guix-tests/store/j6qdjbiz7k9ga72dk4bqm92421l9lbaz-efibootmgr-17-checkout.drv /tmp/guix-tests/store/manwiff0fnbvq1v95ad5za889jphabpa-efibootmgr-17-checkout.drv /tmp/guix-tests/store/rjq0wgmw69vfl1rjjggmr64fjws6cl5c-qemu-minimal-6.1.0.drv /tmp/guix-tests/store/01i1dqd7ndz3c98s8dywbwrskljja05y-python-sphinxcontrib-htmlhelp-2.0.0.drv /tmp/guix-tests/store/j4rdkmgmv5gf07mh13q2p8sizfqi0zcx-module-import-compiled.drv /tmp/guix-tests/store/n22civi2bp6ac1xa80izppp03kz3ri60-sphinxcontrib-htmlhelp-2.0.0.tar.gz.drv /tmp/guix-tests/store/12q5a5c6h0w565hq27q73r1xd8mr3yg3-python-asn1crypto-1.4.0.drv /tmp/guix-tests/store/89c6cq93vzqjchw5a7hxil98f870sc3b-python-asn1crypto-1.4.0-checkout.drv /tmp/guix-tests/store/18in8khqhxw5xhxl62q8cszp3ylfj0mk-python-charset-normalizer-2.0.5.drv /tmp/guix-tests/store/1d43ppzhvv8ss51649knyyqqiy50zl0m-python-pyparsing-2.4.7.drv /tmp/guix-tests/store/2mjimlk8rz6yb79r9qbb3v2f232m9qkc-pyparsing-2.4.7.tar.gz.drv /tmp/guix-tests/store/23psdhx9d9x5kjvgpzfx1hi56rm8ni4m-charset-normalizer-2.0.5.tar.gz.drv /tmp/guix-tests/store/4im9x2mbmjl1cn21s7l9kl29kn5wmw0j-python-six-bootstrap-1.16.0.drv /tmp/guix-tests/store/fz8jx0fx1i03ax2sf3c33r9y069ixahm-six-1.16.0.tar.gz.drv /tmp/guix-tests/store/5p0bvvky448923k7fylsdzgsv8fdppww-python-py-1.10.0.drv /tmp/guix-tests/store/cvhnybips1n2cy2yaw0yfhy1ar4lqphv-py-1.10.0.tar.gz.drv /tmp/guix-tests/store/mqg9wwykz0dmqjmm6zdh9wp5iqg9x9yw-python-setuptools-scm-6.3.2.drv /tmp/guix-tests/store/pirnb59cw9wr18ar7h2d195zhr74l3sy-setuptools_scm-6.3.2.tar.gz.drv /tmp/guix-tests/store/sklgjna5vkzr1kd9rp8czvnd3yvqlqhr-python-tomli-1.2.2.drv /tmp/guix-tests/store/72ikfq0yinwmnhiyxjwcgvzp5bwq78zn-python-flit-core-3.4.0.drv /tmp/guix-tests/store/v5qfxqkfbigl8ls0jpiki8jjzsj0fwql-flit-3.4.0.tar.gz.drv /tmp/guix-tests/store/yqplrl93igh8b2j8l3lcgkmqky2rddna-python-toml-0.10.2.drv /tmp/guix-tests/store/vgq2xxs4ami7pwd2r00f9jqzhd2a2l4r-toml-0.10.2.tar.gz.drv /tmp/guix-tests/store/c66fzdc43r5gnxm5cw2cs51swhyq3imj-python-pypa-build-0.7.0.drv /tmp/guix-tests/store/jams5qd3hs82bjqa55x7r2wqzglgcyjz-build-0.7.0.tar.gz.drv /tmp/guix-tests/store/sbn7vfhnjf0dv6vw732k2vkwf9yvjjqs-python-pep517-bootstrap-0.9.1.drv /tmp/guix-tests/store/w0cz8xk3pf2nzgibfdf3i3i3yb20hcy6-pep517-0.9.1.tar.gz.drv /tmp/guix-tests/store/w2a8nw7lpi8jv4hbp1pa0xb9gv94c56f-python-wheel-0.33.6.drv /tmp/guix-tests/store/ghnsg29srfi8xhjzq069a667zb883cfc-wheel-0.33.6.tar.gz.drv /tmp/guix-tests/store/w893c4ik91b1a8lkziqnm18i6kgbvx5d-python-packaging-bootstrap-20.0.drv /tmp/guix-tests/store/qxvrgxg6q9smn6z8nlrqrwnif93x9pww-packaging-20.0.tar.xz.drv /tmp/guix-tests/store/13xp6id4887qq28b6sc6h9wzhlkbksc8-packaging-20.0.tar.gz.drv /tmp/guix-tests/store/rla4c0kgqjcm16l79hqc54hxscai5n7k-tomli-1.2.2.tar.gz.drv /tmp/guix-tests/store/83x000x8nqk95j7xcxiswn62fzq1l8g0-python-attrs-bootstrap-21.2.0.drv /tmp/guix-tests/store/73jn0glzgd211jicb55dfp81m55k255w-attrs-21.2.0.tar.gz.drv /tmp/guix-tests/store/jknvfj1msw0c1qs0d3day2zc5244jsbq-python-more-itertools-8.2.0.drv /tmp/guix-tests/store/clv9p0c7v9l5y2v6yl9z23nl4psb6csx-more-itertools-8.2.0.tar.gz.drv /tmp/guix-tests/store/l5ghzm4xa5hp8bvrr7zk9hrmcrzk90nw-python-pytest-6.2.5.drv /tmp/guix-tests/store/2r79s4gaz7qp0310ky8ny9qzsxngl3g4-python-sortedcontainers-2.1.0.drv /tmp/guix-tests/store/4w8xkhsgjwr6xjr6jvmpcd16fxf8pfvs-python-filelock-3.0.12.drv /tmp/guix-tests/store/rmimazya2r7xxbivh7y2w5w49387abzb-filelock-3.0.12.tar.gz.drv /tmp/guix-tests/store/6wivz10hfixa5jy9788zdxcbv0l16wls-python-appdirs-1.4.3.drv /tmp/guix-tests/store/j79g0cbd6ijr44zqffdqwy4ps84wpal7-appdirs-1.4.3.tar.gz.drv /tmp/guix-tests/store/fqcnc4pm0nlpq4p9gjn23qqx8dnnns8m-python-distlib-0.3.1.drv /tmp/guix-tests/store/jv28qccm9b1byfsga3677rznvrawlgrr-distlib-0.3.1.zip.drv /tmp/guix-tests/store/ih7z1b3a6lrkrjr7zwvgq3cm0p09lhm6-sortedcontainers-2.1.0.tar.gz.drv /tmp/guix-tests/store/6hwhxayicrwk3lg9a8v2cb5nn7lvq3vv-python-mock-3.0.5.drv /tmp/guix-tests/store/acvv5nylvrrg6x6597nhybhv540gnv5m-python-six-1.16.0.drv /tmp/guix-tests/store/n6xfvp2qp1b6q8kmlxcbflgmn1vbq5ca-python-pytest-bootstrap-6.2.5.drv /tmp/guix-tests/store/6k7ji090bd9xgl89drg7mg72b38hfhmd-pytest-6.2.5.tar.gz.drv /tmp/guix-tests/store/p69x7vz4k9v8rzp07hqqznr1y7qvpi5b-python-iniconfig-1.1.1.drv /tmp/guix-tests/store/p5m9njda55z5wlahnxja3hxbd7hj1l26-iniconfig-1.1.1.tar.gz.drv /tmp/guix-tests/store/pgm55978kw09r2ymcl12wz12xaagl2ly-python-wcwidth-0.1.8.drv /tmp/guix-tests/store/w2cdb3kc9s3w00cfcir2ydlmljdb2k0r-wcwidth-0.1.8.tar.gz.drv /tmp/guix-tests/store/r8hhnw5h7n5dpyml45273ixag5vz290v-python-pluggy-0.13.1.drv /tmp/guix-tests/store/cyw49jzinnn3dysmlsff31j718p59y4s-pluggy-0.13.1.tar.gz.drv /tmp/guix-tests/store/wjdmpalck3l6df3f5ggdryhf90v4v3mj-mock-3.0.5.tar.gz.drv /tmp/guix-tests/store/9fjdiiy3rf18wgy9kw3q1n1nrs72m4s0-python-nose-1.3.7.drv /tmp/guix-tests/store/p6r6akibgmldl4rsqnm763mpsiqydmr5-nose-1.3.7.tar.gz.drv /tmp/guix-tests/store/cc907ag3kvv1qanzfzn512qxq4i5dabp-python-xmlschema-1.2.5.drv /tmp/guix-tests/store/16lzr4lakg8cdcjmif35jf0wknybf41q-python-xmlschema-1.2.5-checkout.drv /tmp/guix-tests/store/fybsdvq2d2vwm6k7jlk26k8nivbngp0n-python-elementpath-2.0.3.drv /tmp/guix-tests/store/yqynjpjmk3gndv32p4j54nx3zg3l1qdf-elementpath-2.0.3.tar.gz.drv /tmp/guix-tests/store/k841ad1fk364xn2i28457377x67aii3v-python-lxml-4.6.3.drv /tmp/guix-tests/store/kgll9h1rj15ja2k4wlikww4jnl2vh1yd-lxml-4.6.3.tar.xz.drv /tmp/guix-tests/store/rv5z8vvw51i198jfqmyn1nbmj1y9zhzz-lxml-4.6.3.tar.gz.drv /tmp/guix-tests/store/wvk1hnlgjljijvsiv7jqcn5w6kry8jpa-python-hypothesis-6.0.2.drv /tmp/guix-tests/store/g14wbkgrq2d5dxxk544s8s6qxpi00xkn-hypothesis-6.0.2.tar.gz.drv /tmp/guix-tests/store/1c77malcxjx14bwm7nh8q66nyykglbsh-python-idna-2.10.drv /tmp/guix-tests/store/0kxx0x8y407sxmc5dcz574ji9f6cs0rd-idna-2.10.tar.gz.drv /tmp/guix-tests/store/22qy2xj02x5al8jxzq6i5zqcwfsx29yi-meson-0.60.0.drv /tmp/guix-tests/store/9mn0kdb31jrchnp3zzgnvmgzcm1cd7ij-ninja-1.10.2.drv /tmp/guix-tests/store/lg5j257z460kqn5y2zpq9095qpyvvdx8-ninja-1.10.2-checkout.drv /tmp/guix-tests/store/gkxhhd51vbqrrv4x3bycsy2k12f5d0fm-meson-0.60.0.tar.xz.drv /tmp/guix-tests/store/jv39rkg0s8lmmag8r5x30mai1x5136r6-meson-0.60.0.tar.gz.drv /tmp/guix-tests/store/2bfkk8g82aphfxphbk8ak8lgcqv7wgyl-alsa-lib-1.2.4.drv /tmp/guix-tests/store/bsc41dnqy1g2g0s2g36ai2cambjpmf69-alsa-ucm-conf-1.2.4.drv /tmp/guix-tests/store/q3cf9m524ahanwzkg921s9nzjwmzc5yx-alsa-ucm-conf-1.2.4.tar.bz2.drv /tmp/guix-tests/store/z73n3cdwj0jbw5frn2jffyai2nzb6pld-module-import-compiled.drv /tmp/guix-tests/store/kwcp0mcd5zsg7qzwq4r88kijrpjmvxx8-alsa-topology-conf-1.2.4.drv /tmp/guix-tests/store/zsnmj62w05savi7v9qnyjy3v9abcrpk8-alsa-topology-conf-1.2.4.tar.bz2.drv /tmp/guix-tests/store/p1n4m081mi2nsmfwq0p5zppcg3yg71b5-alsa-lib-1.2.4.tar.bz2.drv /tmp/guix-tests/store/2ghsivipr1yb6yf00y8bcz27j0z35nmy-libcap-ng-0.8.2.drv /tmp/guix-tests/store/nf2lxkhiir1w4k28lfg4xz2kz9bla2d8-libcap-ng-0.8.2.tar.gz.drv /tmp/guix-tests/store/407ihpf2h9pwnr4aywrmw75wb5v76fqf-python-docutils-0.17.1.drv /tmp/guix-tests/store/g14vvpr3ird9ybkn1q65pik05mfx80f8-docutils-0.17.1.tar.gz.drv /tmp/guix-tests/store/59l36lhvcsjkb0pw3hnfg13p3dbmz0si-python-pytz-2021.1.drv /tmp/guix-tests/store/0sdnik47q72psssnc5x5mnfsr5yv9jpx-pytz-2021.1.tar.gz.drv /tmp/guix-tests/store/64vrsskq97czn86i525dpkr4q0yy5gnb-python-certifi-2020.12.5.drv /tmp/guix-tests/store/vk7xxhljhm6scqsldjjqrcbi1rkmrngy-certifi-2020.12.5.tar.gz.drv /tmp/guix-tests/store/83m7b0q4g306d49y334q349hn9qjryhw-python-babel-2.9.0.drv /tmp/guix-tests/store/cqz8kzdwms7ipd99bz4qaq8imr6vpjkd-python-freezegun-0.3.14.drv /tmp/guix-tests/store/2jbd3i45jkp1fn3yl9ac2pxv7y0c44b5-freezegun-0.3.14.tar.gz.drv /tmp/guix-tests/store/kd688ymzmsnzpn442kjbpjfp945kxm6y-python-dateutil-2.8.2.drv /tmp/guix-tests/store/13f3h50mzv2n17l5qs96myfn349g14zj-python-pytest-cov-2.8.1.drv /tmp/guix-tests/store/7ln83xypzs1vl81qli6m5psqyndblllg-python-coverage-5.2.1.drv /tmp/guix-tests/store/dvcqm0016nbby836mhj99s0d34ngbyak-coverage-5.2.1.tar.gz.drv /tmp/guix-tests/store/zzpd8w78qpxvvwhh2g882lhmfvkfzv6v-pytest-cov-2.8.1.tar.gz.drv /tmp/guix-tests/store/syw38d3nvmgdisgv63zhryy3h91hr09a-python-dateutil-2.8.2.tar.gz.drv /tmp/guix-tests/store/dqzk82fhfm654pcsgblbvsgnwnfvb06f-Babel-2.9.0.tar.gz.drv /tmp/guix-tests/store/9vvj3igk13pfxfq47yamfw5vm7kvaz3l-libjpeg-turbo-2.0.5.drv /tmp/guix-tests/store/6rbfyfard7972xp7gdlai8hsv2hsq4zn-module-import-compiled.drv /tmp/guix-tests/store/9300n7xf7nakazm93nkz4s2lmjznfw65-nasm-2.15.05.drv /tmp/guix-tests/store/0402pfph3s15mnib10rkxc3qx8wk1r7j-nasm-2.15.05.tar.xz.drv /tmp/guix-tests/store/vrn18j4438yk8x266hxm9yj1h338ij5w-cmake-bootstrap-3.21.3.drv /tmp/guix-tests/store/1mwnr87746w4yw62b7jxbbmd8dbc9rsv-libuv-1.41.1.drv /tmp/guix-tests/store/jljx74ak5ql238hg9hxipa17wmchmq04-libuv-v1.41.1.tar.gz.drv /tmp/guix-tests/store/adzkdxigm9w7v6w26nrwpjzy50dzrhyb-libarchive-3.5.1.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/3j5idg9r07m0bj5d3kr157y4h63z296l-libarchive-3.5.1.tar.xz.drv /tmp/guix-tests/store/sjk59gnkp4vmkp60rq02pb2z5c0nik9d-lzo-2.10.drv /tmp/guix-tests/store/n01vi6wwqgrcgfwblyj944g4wk3z1b76-lzo-2.10.tar.gz.drv /tmp/guix-tests/store/mapkpngb78vc71h6hidaq1y1haimy9r5-rhash-1.4.2.drv /tmp/guix-tests/store/0c7n3q8x5ayj5ll7m16b9cl8yiwzdrcm-rhash-1.4.2.tar.gz.drv /tmp/guix-tests/store/mxdsa1lnahn5hah35dkwpvlhdidrb5b9-cmake-3.21.3.tar.xz.drv /tmp/guix-tests/store/q6wx3cw7cynrx74l67dyqcdvlrvsqf5k-cmake-3.21.3.tar.gz.drv /tmp/guix-tests/store/zhvkblzv4r36kqi3dp5mizra85384a21-libjpeg-turbo-2.0.5.tar.gz.drv /tmp/guix-tests/store/akwd6b9vagad50v50plfa2j7q1mh6h0z-glib-2.70.0.drv /tmp/guix-tests/store/2r6rbqbvgqi0msmajqz1ylv3hgv18p2r-libelf-0.8.13.drv /tmp/guix-tests/store/jxrg02rgaymp91llhihyygvj2mnar895-libelf-0.8.13.tar.gz.drv /tmp/guix-tests/store/63wvgyi3jk3aa3vbbhx14cbqnqivxh0n-bash-completion-2.8.drv /tmp/guix-tests/store/rws4frwzrw3fwd8nk53axbxjjbwsim5j-bash-completion-2.8.tar.xz.drv /tmp/guix-tests/store/x5mynqylgv1vrs9gmf63dfdih7n63q0w-bash-completion-2.8.tar.xz.drv /tmp/guix-tests/store/lhrcf8n28hh7a70slzcjcbwv8x876k7q-dbus-1.12.20.drv /tmp/guix-tests/store/f1pv7sj0vb1f4cff2xrlyfh5yykrvdvv-itstool-2.0.6.drv /tmp/guix-tests/store/p94shj49z9m8j2wq3jmskxvi7gbpzia9-itstool-2.0.6.tar.bz2.drv /tmp/guix-tests/store/xdi5126485gsw6mvx37vc6n5wr36yhfy-python-libxml2-2.9.12.drv /tmp/guix-tests/store/ddwzrp96zh4fch63w0n81acc65dc5n1q-libxml2-2.9.12.tar.xz.drv /tmp/guix-tests/store/igkmyldvyjb57jg0kwhjsm0ddksk700a-xmlto-0.0.28.drv /tmp/guix-tests/store/wppi02xzax3c4ivvbhhfpsn9j9j1l52m-xmlto-0.0.28.tar.bz2.drv /tmp/guix-tests/store/qvrk2k11sm7wfgzxlc7mh46lp2s5iybl-dbus-1.12.20.tar.xz.drv /tmp/guix-tests/store/43mj9x70809bvm0xds686lf0xn5id1n9-dbus-1.12.20.tar.gz.drv /tmp/guix-tests/store/w1df50wgkyql0b8sj1cn65qn1jn098kh-doxygen-1.9.1.drv /tmp/guix-tests/store/ln972qkvma2g6qwwcba09g1gmh1pamnh-cmake-minimal-3.21.3.drv /tmp/guix-tests/store/59qygq2wky37iyjq9jl39b9zgbaj6yd7-cmake-3.21.3.tar.xz.drv /tmp/guix-tests/store/pg9qr99nqpl4ibhih23dvsly9srcrird-jsoncpp-1.9.4.drv /tmp/guix-tests/store/9ksb8j9yl8y3mw76c02isd5c1zi7kgbi-jsoncpp-1.9.4-checkout.drv /tmp/guix-tests/store/4mdija5vd7149a9v9mwdmznw1pjgdfvp-jsoncpp-1.9.4-checkout.drv /tmp/guix-tests/store/np2m2v8p5hv89ffc1xd8kkjmc9x6dwvx-doxygen-1.9.1.src.tar.gz.drv /tmp/guix-tests/store/w4s80qcss3rvlnrqaznrnc9xx2b4hzhk-yelp-tools-3.32.2.drv /tmp/guix-tests/store/h3bk6giywb5dzhmlk2y3ypgzbaif1b2h-yelp-xsl-41.0.drv /tmp/guix-tests/store/63k0rqrvvqk30d2z0xha13bwid3sh5si-intltool-0.51.0.drv /tmp/guix-tests/store/i10li6jbqagg9mg77pvh813bz1zwpa1z-intltool-0.51.0.tar.xz.drv /tmp/guix-tests/store/5d6qr6jjk5nkmgsnkj73asahwa4ync42-intltool-0.51.0.tar.gz.drv /tmp/guix-tests/store/y2ndd5cyxiwy2n48a0is6vzcnwlw60fn-perl-xml-parser-2.46.drv /tmp/guix-tests/store/rrrrxprhj5v5kdxi5yf0sljhi3gndzq6-XML-Parser-2.46.tar.gz.drv /tmp/guix-tests/store/fsfrm6cpnmjalwkygqpx95afj75w3vsb-yelp-xsl-41.0.tar.xz.drv /tmp/guix-tests/store/vdcv3rxkk4dj6n06kh25fpfpk48sa42r-mallard-ducktype-1.0.2.drv /tmp/guix-tests/store/jdq6fhxdf28djx2avfwlpppq1wp8miin-mallard-ducktype-1.0.2-checkout.drv /tmp/guix-tests/store/vwfl23gk5shi4bslm74bixm45y7lajfc-yelp-tools-3.32.2.tar.xz.drv /tmp/guix-tests/store/x6vqn652f2kkdg0wx4mckn6nspqz43dd-docbook-xml-4.4.drv /tmp/guix-tests/store/0ksyjfjvnwf0rw3xq4b43khd19dnqxsb-docbook-xml-4.4.zip.drv /tmp/guix-tests/store/lw3vp2q5gazfwjnfh9f5i9mxyrsaqjh6-glib-2.70.0.tar.xz.drv /tmp/guix-tests/store/dwqa9sp2cs7sphy7psa1sspw8zyqs0yz-glib-2.70.0.tar.xz.drv /tmp/guix-tests/store/na8q08f52nzbhfq7k420yjbpbvcws9d1-module-import-compiled.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/hvih1zpzxk0mj9qpfwh02cxn0cn9zwj9-pcre-8.45.tar.bz2.drv /tmp/guix-tests/store/arzdd00nfj3b4s228ns0pnhggqdvalfq-python-sphinx-4.2.0.drv /tmp/guix-tests/store/0zgpdz9ygz4sli5wwd429mnkd426ac4s-graphviz-2.49.0.drv /tmp/guix-tests/store/00869marixcrqj5axm0bm3by8nxh1pd9-swig-4.0.2.drv /tmp/guix-tests/store/64vl8sv5q10x0wx5qz2yr1a966grs27k-boost-1.77.0.drv /tmp/guix-tests/store/6wf8ybg4ad5ndbsykaffzyrifh4rjxj6-boost_1_77_0.tar.bz2.drv /tmp/guix-tests/store/ahxbd7r4pwpz7plklqq9jr1rk48xv3zl-tcsh-6.22.03.drv /tmp/guix-tests/store/glxl883f74gazyldc9rjzqcnh1qgb1xk-tcsh-6.22.03.tar.xz.drv /tmp/guix-tests/store/5ggczxi2i04vd81yh42v7sg0lr0bv5fs-tcsh-6.22.03.tar.gz.drv /tmp/guix-tests/store/mwgh318v1ma3idnj3l4vsbn71yh9rkhx-icu4c-69.1.drv /tmp/guix-tests/store/97bz00wrbbwn79skw5m5a22qz7hwrrlg-icu4c-69_1-src.tgz.drv /tmp/guix-tests/store/sdw1p14wrcjqjz0r3jmsywy0lh3nms0r-swig-4.0.2.tar.gz.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/518rx93g9y0dq7mbwhdpr0dqyzxcd0bl-libdatrie-0.2.13.drv /tmp/guix-tests/store/cqp8x0bnpjkxiy949h7c5kyivyrj8s4k-libdatrie-0.2.13.tar.xz.drv /tmp/guix-tests/store/5myq09qf466wka0b5fzpfmcvcikq2300-libxaw-1.0.14.drv /tmp/guix-tests/store/9ah006xxmdjr2hc9srmfnh55x0xslyn9-libxpm-3.5.13.drv /tmp/guix-tests/store/c81ixkb0abyckywhfmnp3966i2fnz40y-libxt-1.2.1.drv /tmp/guix-tests/store/h6yxfd4fm8zsvyygb3zzvna8hsys6536-libice-1.0.10.drv /tmp/guix-tests/store/l0ydvipidjilav2xkfc9d8x593scp7xh-libICE-1.0.10.tar.bz2.drv /tmp/guix-tests/store/mp66vbanf751fr8xslddhwsh9sw9jlwj-libsm-1.2.3.drv /tmp/guix-tests/store/7ir6rvz3ijm3bi7d6hyrnkpzxa3nibgg-libSM-1.2.3.tar.bz2.drv /tmp/guix-tests/store/pspndz27fi9lr0m7nafmbyy0vg44xsdf-libXt-1.2.1.tar.xz.drv /tmp/guix-tests/store/2jja5ci203vghx0g9va4wfak90rdjwfw-libXt-1.2.1.tar.bz2.drv /tmp/guix-tests/store/s97ngr3x783qxh2yk03lkjhka4vj0dqk-libXpm-3.5.13.tar.bz2.drv /tmp/guix-tests/store/gagrzik18ii9w65j4ki8zchcrx97i9dd-libXaw-1.0.14.tar.bz2.drv /tmp/guix-tests/store/wlpmac7biws74w8gfs4fd1bab65rg535-libxmu-1.1.3.drv /tmp/guix-tests/store/3qh8q3j64dfcdkscrmfspary1h0s4rk7-libXmu-1.1.3.tar.bz2.drv /tmp/guix-tests/store/6nnsb5ij49hqrb38j1xzd51mkignsygs-cairo-1.16.0.drv /tmp/guix-tests/store/1vwqa9dkwhggp5i5c6f4r5mhrm9jnr05-libpciaccess-0.16.drv /tmp/guix-tests/store/1633zavvypdlxn33xscws5dixkxk2xvj-libpciaccess-0.16.tar.bz2.drv /tmp/guix-tests/store/fpmwwkafs0ppcp478m82vsk4qbqb6bxl-pciutils-3.7.0.drv /tmp/guix-tests/store/p8bzhrqn88y4v6sysrkpld645vnv3mf1-pciutils-3.7.0.tar.xz.drv /tmp/guix-tests/store/7zj0chwvkz7bgkhvji1q7khz6538z2gv-pciutils-3.7.0.tar.xz.drv /tmp/guix-tests/store/2cz4hv6dgp1l25c4jjvrq0afbrbcma0s-gobject-introspection-1.66.1.drv /tmp/guix-tests/store/49i46bq4kmzasvkl55d2a7is0p5ygf8h-gobject-introspection-1.66.1.tar.xz.drv /tmp/guix-tests/store/wpk723agq2ywwsnrpjpfsllid19y9547-gobject-introspection-1.66.1.tar.xz.drv /tmp/guix-tests/store/6f82h68g03inanl5236x60vil6j76awg-libdrm-2.4.107.drv /tmp/guix-tests/store/8sx78yf9lfd5nx3f1yl4bbb271vxilqj-libdrm-2.4.107.tar.xz.drv /tmp/guix-tests/store/950nfjl37002pjyxkzmb003mq5xlix6z-libspectre-0.2.9.drv /tmp/guix-tests/store/l07rpf0f1yvxzgn8yji1zc5ya2g2zqx2-ghostscript-9.54.0.drv /tmp/guix-tests/store/5rh6x6j9gfl82193sxlvb474pb3nkrwc-ghostscript-9.54.0.tar.xz.drv /tmp/guix-tests/store/xx5hnbs01aba5dk246zqmvl9qwh9j460-ghostscript-9.54.0.tar.xz.drv /tmp/guix-tests/store/5vnml2rg59fipa1r0akrdw6fdnjfy46c-font-ghostscript-8.11.drv /tmp/guix-tests/store/azlxx6qzgwjm6yyy0z05jbdxrpm02crq-ghostscript-fonts-std-8.11.tar.gz.drv /tmp/guix-tests/store/jmliaf57fyx77wq1rk5ja0h05mn11sc9-jbig2dec-0.19.drv /tmp/guix-tests/store/xkis6w40kr8l1n91y8xhdyn3q0ngrggr-jbig2dec-0.19.tar.gz.drv /tmp/guix-tests/store/mnyf11gpi02b1j6b30282cksn6p29iw1-libpaper-1.1.24.drv /tmp/guix-tests/store/j2kvglmqz8k2lwkfc09l230fkrf825k9-libpaper_1.1.24.tar.gz.drv /tmp/guix-tests/store/rgr3isbphrcg13zwzc2xycg49604knf1-libtiff-4.3.0.drv /tmp/guix-tests/store/c28gr8dky7a1pv83rznvc7zc7xa63852-tiff-4.3.0.tar.gz.drv /tmp/guix-tests/store/p3nbj46s3pa9m8jpmq570jd0dfssb8h6-libspectre-0.2.9.tar.gz.drv /tmp/guix-tests/store/a551rjad05wa1j4fa6f6ria10w7wkzqg-module-import-compiled.drv /tmp/guix-tests/store/bb84qa9qwh8qgglq969nm40kgh7l8z7g-pixman-0.40.0.drv /tmp/guix-tests/store/2kppbr9qf9m8wjr4hnfmlwww2bp85xy9-pixman-0.40.0.tar.xz.drv /tmp/guix-tests/store/ig0j6nwczg9jl5xn2bvi9bczy71z00za-pixman-0.40.0.tar.gz.drv /tmp/guix-tests/store/qwhkcj6gifhipdx0bykh8k508iv20wv0-cairo-1.16.0.tar.xz.drv /tmp/guix-tests/store/5rl93jh93l4lk72ayjkvy9pk1k9q5wvp-cairo-1.16.0.tar.xz.drv /tmp/guix-tests/store/rxws90r8xdblf9zm6v85k5gnb72sjwag-poppler-21.07.0.drv /tmp/guix-tests/store/0gdx1ggq4bdvyzbiprl8akbx0qfag00f-lcms-2.12.drv /tmp/guix-tests/store/id06kx2lmfyzwygvai01njzgdpvgxmgi-lcms2-2.12.tar.gz.drv /tmp/guix-tests/store/6lnqgvpwjxlc0mdc3wnys6zvylpzy571-cairo-1.16.0.drv /tmp/guix-tests/store/8i18wrimi8q61nrvf3ldf3fir1m5kgjc-openjpeg-2.4.0.drv /tmp/guix-tests/store/2zjfjys3k0nbwmsnwzmm1hdg4n8kg5cb-openjpeg-data-2020.11.30.drv /tmp/guix-tests/store/dhvvb83w2mlqflgvy1600sicnn4ny7gm-openjpeg-data-2020.11.30-checkout.drv /tmp/guix-tests/store/54nawf3lmxbipflmpwzb0zwpkan6zpkh-openjpeg-2.4.0-checkout.drv /tmp/guix-tests/store/pjrd3y75k6s05mcvacawa1d1hjaqhiz6-poppler-21.07.0.tar.xz.drv /tmp/guix-tests/store/8i3kns3w97qgixhn4q7wb5n6yjyvy8sp-pango-1.48.10.drv /tmp/guix-tests/store/b1a1ndzgxjc5r856wqkp0m65yczvdy39-harfbuzz-2.8.2.drv /tmp/guix-tests/store/frbfs7dcw5rkrmny4iwxyv6s3whq8paa-harfbuzz-2.8.2.tar.xz.drv /tmp/guix-tests/store/wgjj3bjv2gx0xdml240cpj0ws558y29m-graphite2-1.3.13.drv /tmp/guix-tests/store/3vlz4jvai3ijrg5y196y528fkwfgzx6s-graphite2-1.3.13.tgz.drv /tmp/guix-tests/store/j02az1xlma527fwlnjq1h668q3y8vl3l-python-fonttools-4.6.0.drv /tmp/guix-tests/store/1h2lyrlgj97g3n16wwhc79c7ln2l024l-python-pytest-runner-5.2.drv /tmp/guix-tests/store/ggwznmj631clj16p3xjixh1x2yphbabg-pytest-runner-5.2.tar.gz.drv /tmp/guix-tests/store/rchdn7fkqzhkhyhc3vc16qfr8xr5lw4w-fonttools-4.6.0.zip.drv /tmp/guix-tests/store/bz0fz8qvgpd72zjnzpz5km09hdbzx2wn-libthai-0.1.28.drv /tmp/guix-tests/store/3cw20nvvzakssdrhiilwp0l0a7qwn6dz-libthai-0.1.28.tar.xz.drv /tmp/guix-tests/store/d5kih80xiplf7cmnslqgdyzcj8frn4zy-fribidi-1.0.9.drv /tmp/guix-tests/store/dd8n4rcqdlw1swx78ww2hyci13qci8lm-fribidi-1.0.9.tar.xz.drv /tmp/guix-tests/store/qb1nsf5jahi9444ng6g0navi9agsaskk-pango-1.48.10.tar.xz.drv /tmp/guix-tests/store/dy6hd89lb65wqf97wn6768pcs0yjfvvb-pango-1.48.10.tar.xz.drv /tmp/guix-tests/store/akwd6b9vagad50v50plfa2j7q1mh6h0z-glib-2.70.0.drv /tmp/guix-tests/store/kx2igpxh0yn94klc72w5q0j3iyaibfk6-gts-0.7.6.drv /tmp/guix-tests/store/7wdbwbs2lmq4ljp29kvj3n89lwlyhdbv-gts-0.7.6.tar.gz.drv /tmp/guix-tests/store/wj2wwpcgvsw0rljdwkjwgadqsrjiqqgx-graphviz-2.49.0.tar.xz.drv /tmp/guix-tests/store/xa7r2qdzcyl4mavpigr3jdf8bxpfxr27-gd-2.3.2.drv /tmp/guix-tests/store/wij1b56irx5hfbpc65l1fyyid7w4zlfx-libgd-2.3.2.tar.xz.drv /tmp/guix-tests/store/kjcf53firqwhmaah3ih1cwkkm6qk76mi-libgd-2.3.2.tar.xz.drv /tmp/guix-tests/store/2zyw6lw6d0dwmgnbi2hhiwvn9ijb0c02-Sphinx-4.2.0.tar.gz.drv /tmp/guix-tests/store/bm2h6ls4zir9vvkxv8a8rg840dn35dda-python-urllib3-1.26.7.drv /tmp/guix-tests/store/d6y75g1hfpb0vbcy620i4mqqxfcf50hz-python-cffi-1.14.4.drv /tmp/guix-tests/store/f5cgdvz9xzp88nk29az87rpwc8phrrp5-cffi-1.14.4.tar.gz.drv /tmp/guix-tests/store/njhh79fqs1h0brjl5xlgrqgnnj913wmk-python-pycparser-2.20.drv /tmp/guix-tests/store/1czag77s1c08i0z56312d8q4rg5ffxay-pycparser-2.20.tar.gz.drv /tmp/guix-tests/store/f4il6aszmfxci62lkaf2q08my6gg3g73-urllib3-1.26.7.tar.gz.drv /tmp/guix-tests/store/fai69jm1vmcg0zm1lkg5hs6kdc7a2nwc-python-cryptography-3.3.1.drv /tmp/guix-tests/store/2q6idpik06cx7ba558ly921v6nza4fnw-python-cryptography-vectors-3.3.1.drv /tmp/guix-tests/store/xjjyjzk44aq44cqfmb446zaamd9i9nvq-cryptography_vectors-3.3.1.tar.gz.drv /tmp/guix-tests/store/cikd1ka7q2w6935b0q29fx204sq6hagn-python-pretend-1.0.9.drv /tmp/guix-tests/store/2f9mkw7b3x78b11s5l94gjfcxbdfa9sf-pretend-1.0.9.tar.gz.drv /tmp/guix-tests/store/p3g1253jznnnv9m60fdafbvl4xaavp1k-python-iso8601-0.1.13.drv /tmp/guix-tests/store/aax0vmnzw2g0rvid773wkwg2f0wpka6k-iso8601-0.1.13.tar.gz.drv /tmp/guix-tests/store/pgwdhlmhpj959rlh619dhf6gig87kmqm-cryptography-3.3.1.tar.gz.drv /tmp/guix-tests/store/h8w3kixcpz7phpdrd69v57jcnsng6b34-python-pysocks-1.7.1.drv /tmp/guix-tests/store/zar1xp9jwhac68pd9c7dd8qpchlzh33j-PySocks-1.7.1.tar.gz.drv /tmp/guix-tests/store/r5gw54wynrm3pa5bx8l8ylqg963baz0c-python-pyopenssl-20.0.1.drv /tmp/guix-tests/store/2qzs9g02y4mv4h7ppvp12c0dwkriw6jd-python-flaky-3.5.3.drv /tmp/guix-tests/store/7qb7lfakv1bsj5x8c15b3bxwpsyh4vcd-flaky-3.5.3.tar.gz.drv /tmp/guix-tests/store/64036g9fjw2g487snlvsix0i2s1nihd8-pyOpenSSL-20.0.1.tar.gz.drv /tmp/guix-tests/store/zhi7l92dja5c9vxa8blrn9nlqm7p5maz-libfaketime-0.9.9.drv /tmp/guix-tests/store/a3gv2hy9g38jgv1lbr4k89i7w09nqnc0-libfaketime-0.9.9-checkout.drv /tmp/guix-tests/store/rsxj25ipcp5kzdgmgd59lfhdyijn1vgg-coreutils-8.32.drv /tmp/guix-tests/store/nyc558r8806f7b4f8cwp2mdxp1qgx0aj-libcap-2.51.drv /tmp/guix-tests/store/1l45dy2rjh880s0k4mij9iwj4b6lwzk0-libcap-2.51.tar.xz.drv /tmp/guix-tests/store/c0nck7i44gw6z7f1cy4xy2x57hh049c9-python-requests-2.26.0.drv /tmp/guix-tests/store/68070zqnzywk8zpqkgkg5g0bvcsnai78-requests-2.26.0.tar.gz.drv /tmp/guix-tests/store/hjzqb4yl91jqgswpi7kzn3zp10awp319-python-chardet-3.0.4.drv /tmp/guix-tests/store/1a5mb76vk1l5d84bx7lcbgbc2igzs7zd-chardet-3.0.4.tar.gz.drv /tmp/guix-tests/store/d2qcs74lib84ayjbx0kdbnnnrcndc7y4-imagemagick-6.9.12-4.drv /tmp/guix-tests/store/ganfj86w0mwg26wf178k3k7fn3a31gii-ImageMagick-6.9.12-4.tar.xz.drv /tmp/guix-tests/store/7pivcm45q4hw5jra2jpgbi4qd5ssipp8-ImageMagick-6.9.12-4.tar.xz.drv /tmp/guix-tests/store/is2i0k7647r82lav7n4l117alz5l5kcs-fftw-3.3.8.drv /tmp/guix-tests/store/13x9yk166is9c0kyq5mb9qw72krngnxm-fftw-3.3.8.tar.gz.drv /tmp/guix-tests/store/dgwnph3hf3pxzmlvnzd0l0ilrdq3j36c-python-sphinxcontrib-devhelp-1.0.2.drv /tmp/guix-tests/store/h2qpa86ymnqidvig1dmnd4yh5fqyx2vc-sphinxcontrib-devhelp-1.0.2.tar.gz.drv /tmp/guix-tests/store/dln91hn5x2p9l1kqnbz6b4071qds12pq-python-pygments-2.8.1.drv /tmp/guix-tests/store/aazra4za7p9lbi8csn556wpvhy45rlip-Pygments-2.8.1.tar.gz.drv /tmp/guix-tests/store/fr36j1bmsv8g2znvv0499wgy3nfxc55w-python-sphinxcontrib-jsmath-1.0.1.drv /tmp/guix-tests/store/agp9iwn82f2ra8v1sx02b95x64x2sr7v-sphinxcontrib-jsmath-1.0.1.tar.gz.drv /tmp/guix-tests/store/h2lhimwf3chi5rri2qxl7y9vlma0gyic-python-snowballstemmer-2.0.0.drv /tmp/guix-tests/store/9a49mk14vvpgbn4rw1600lwzc5rx4554-snowballstemmer-2.0.0.tar.gz.drv /tmp/guix-tests/store/ivvc8pi1f4w06fgl4m9qw5jkg6h13w18-python-markupsafe-2.0.1.drv /tmp/guix-tests/store/vjfmxg648virpddqwk8f9p9zxk26406w-MarkupSafe-2.0.1.tar.gz.drv /tmp/guix-tests/store/jki51kc261vlrjjdf84mm258x3yycxl8-python-packaging-20.0.drv /tmp/guix-tests/store/jxhfdhc34ixj8nxf6h48jjd8s10a9rga-python-sphinxcontrib-qthelp-1.0.3.drv /tmp/guix-tests/store/sygw5jqw4hb4msa4rgzgwhd51lqzcbk7-sphinxcontrib-qthelp-1.0.3.tar.gz.drv /tmp/guix-tests/store/lhfmi0acg19x52mxxb3f089r4ysfgi8r-python-sphinx-alabaster-theme-0.7.12.drv /tmp/guix-tests/store/q9pk2f4nyx4b2814p99faqwk8r96lb98-alabaster-0.7.12.tar.gz.drv /tmp/guix-tests/store/nllpay12x91rw85asj25dgzknkqk2d1n-python-sphinxcontrib-serializinghtml-1.1.5.drv /tmp/guix-tests/store/dx7vypdvs8d3j744lx89s3b4blh0w3l0-sphinxcontrib-serializinghtml-1.1.5.tar.gz.drv /tmp/guix-tests/store/nrzrk84v7ny3hws4mxak7vriciahxhbk-python-webencodings-0.5.1.drv /tmp/guix-tests/store/30acf20biyi24cklnprxy6sin4dxzycr-webencodings-0.5.1.tar.gz.drv /tmp/guix-tests/store/sqlw91q4gjvf3lysz16ympyj0s40gy7h-python-sphinxcontrib-applehelp-1.0.2.drv /tmp/guix-tests/store/bw1irzvp3pzpc4gpifmripdl55b46i26-sphinxcontrib-applehelp-1.0.2.tar.gz.drv /tmp/guix-tests/store/xijv71f9xx0nlswmgii46fbg22zmanma-python-imagesize-1.2.0.drv /tmp/guix-tests/store/q2c76w2sfgmdycv3cl9sc00nfdzdhr5z-imagesize-1.2.0.tar.gz.drv /tmp/guix-tests/store/yfr28d7xcq19hgqbg7yjvkmw7v0vfszq-python-jinja2-3.0.1.drv /tmp/guix-tests/store/3msr00fkq1b43dpsy9q1qdfhivz079bd-Jinja2-3.0.1.tar.gz.drv /tmp/guix-tests/store/ylyff6vcdnvfmldv7sg896y2d0n81w0z-python-html5lib-1.1.drv /tmp/guix-tests/store/ln1bp8xrbmljdz4m27wjb4k3cn60fab2-html5lib-1.1.tar.gz.drv /tmp/guix-tests/store/b2xnvs14gq8y279j33g6zphybzwyvcxj-qemu-6.1.0.tar.xz.drv /tmp/guix-tests/store/w59bzn2p78mdpk5wb26jj3kf9qq44amw-qemu-6.1.0.tar.xz.drv /tmp/guix-tests/store/gz9sy7296rmiycrlkj76x8l39jll2d2l-python-sphinx-rtd-theme-0.2.4.drv /tmp/guix-tests/store/33s841a2ijmz71fiksngzz8az6dxld19-sphinx_rtd_theme-0.2.4.tar.gz.drv /tmp/guix-tests/store/yq3pn0f0zbwpnmsqqzr9rnjk6hva273c-libseccomp-2.5.3.drv /tmp/guix-tests/store/p51fxri0mf3jpvif5lqzyiih79aqb1wg-libseccomp-2.5.3.tar.gz.drv /tmp/guix-tests/store/xci6rbyxxcqq000dhw1brycb3va9j0py-console-setup-1.205.drv /tmp/guix-tests/store/3xnnjz19snffsz4ifn39bkhp9sxbnskh-bdftopcf-1.1.drv /tmp/guix-tests/store/1zabz0ns5hza30yw81i99mqmcn2v0995-libfontenc-1.1.4.drv /tmp/guix-tests/store/zsd55ydb7knk2cz01f6d3hpgq2ph48c2-libfontenc-1.1.4.tar.bz2.drv /tmp/guix-tests/store/m51xbgwmddmalhlb47hxy5i186qs2gjh-bdftopcf-1.1.tar.bz2.drv /tmp/guix-tests/store/vj75b102g8cvrwn17xj7mqzmpkzxg0xv-libxfont-2.0.4.drv /tmp/guix-tests/store/rypixq3myxcdh4ivj5574wlfvz5kpiw1-libXfont2-2.0.4.tar.bz2.drv /tmp/guix-tests/store/4d82476lpigdh993vsy0w2yvjka381zk-sharutils-4.15.2.drv /tmp/guix-tests/store/qx4b0qq0ccvbqmc8l9g5dxlxvlixj8q7-sharutils-4.15.2.tar.xz.drv /tmp/guix-tests/store/acqnvmjhnsy1paadqd9sgbp49i9wvcys-sharutils-4.15.2.tar.xz.drv /tmp/guix-tests/store/j8hnirmx00civbqqarxska8l83p7cgyz-console-setup-1.205-checkout.drv /tmp/guix-tests/store/qwha10vgcvwfqd8q3hmbris7gml6fs9r-bdfresize-1.5-11.drv /tmp/guix-tests/store/k4lqfhgql9xp59fijigg9zcg3rizbkn4-bdfresize-1.5-11-checkout.drv /tmp/guix-tests/store/5pfnj4vjixnff85ifhj1lc6cxlag9b08-bdfresize-1.5-11-checkout.drv /tmp/guix-tests/store/ydq5y6crh7ahaf2p7zvx5w55brkviqbn-mdadm-4.1.drv /tmp/guix-tests/store/gfw5yabijmqdn3l5a7w9y1bnrrcra12r-mdadm-4.1.tar.xz.drv /tmp/guix-tests/store/zpv61y3la0frkx599ls4jywkgvdd5mr8-unifont-7.0.06.bdf.gz.drv /tmp/guix-tests/store/zrmavn3b0dbypg27c1ffxw2zh1jyy0bn-mtools-4.0.36.drv /tmp/guix-tests/store/h2d4xp2h2m5dpynhgc3zi9bclxd7jin5-mtools-4.0.36.tar.xz.drv /tmp/guix-tests/store/k4nm2qwi83s982kn1m7803gcb881ya8w-mtools-4.0.36.tar.bz2.drv /tmp/guix-tests/store/mrf21sy7kaqv2w460qai9bm4m17hq90b-vmlinux.kpart.drv /tmp/guix-tests/store/cxig0kdvvbdfv4qikvcvk8g6vxh0awjf-vboot-utils-R63-10032.B.drv /tmp/guix-tests/store/fcb2zajdf60zzqsjz64n2rypxww1x1m0-libyaml-0.2.5.drv /tmp/guix-tests/store/sc53x2q3h4sss6vmasrpk81zaflw9c1b-yaml-0.2.5.tar.gz.drv /tmp/guix-tests/store/jlfzl42fs15znvh7bjsjkzb4j7hiy3vn-diffutils-3.8.drv /tmp/guix-tests/store/ksqy4pgivydykas6p5vr55vhm85ywlp4-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/jn8h3dh3hcqcz93sxaqj69bnnsnc84d1-vboot-utils-R63-10032.B-checkout.drv /tmp/guix-tests/store/p9x9js96qx3cd405xz7bqf02a6h7nrhm-vboot-utils-R63-10032.B-checkout.drv /tmp/guix-tests/store/npdcrdnmz4xc181ndn4lz5qy36ai2l5v-openssl-1.1.1l.drv /tmp/guix-tests/store/vzgl514lblfd2rcgkwriq90dabxv0b7d-python2-2.7.18.drv /tmp/guix-tests/store/f9vz92w4s15q0ypm7pw6gir2xdww91cr-Python-2.7.18.tar.xz.drv /tmp/guix-tests/store/1rz842w55z2vy7kyqjaj2vxgp7qkflsb-Python-2.7.18.tar.xz.drv /tmp/guix-tests/store/fc3ksvjvblm1x2k1ycrmc3j39zis69sv-u-boot-tools-2021.10.drv /tmp/guix-tests/store/07n9ps8hpmbkbhwsbmkd6jk8jx9j5mqj-bc-1.07.1.drv /tmp/guix-tests/store/0yaz8903406bdjggf3qci4xfl3v9v1vw-ed-1.17.drv /tmp/guix-tests/store/11vvvvwwd3ssyla9jjsy0kal6jsg2kg1-lzip-1.22.drv /tmp/guix-tests/store/4w46qd2mgv12i9xrp7rrknsgx9xgvgzy-bc-1.07.1.tar.xz.drv /tmp/guix-tests/store/b3js201yr9f5iqs9frwq49hrlrbap0ja-bc-1.07.1.tar.gz.drv /tmp/guix-tests/store/0f4v143sf9hrkqmqs5ysjazlzhzi5sh0-libxfixes-6.0.0.drv /tmp/guix-tests/store/knm8n2122bxqf1dibappak4hpcc376q2-libXfixes-6.0.0.tar.bz2.drv /tmp/guix-tests/store/6mqwsfbvl7920zmhkbpy11vian08irbr-libxdamage-1.1.5.drv /tmp/guix-tests/store/hhdgkq70mm1y3l7djrzlaihqr7fd8hpw-libXdamage-1.1.5.tar.bz2.drv /tmp/guix-tests/store/9hjylqx90b24zc48i1rs87fn1laxcbaq-lz4-1.9.3.drv /tmp/guix-tests/store/5kyr84znk1llqw0hk0wfgq6pv94c90ys-valgrind-3.17.0.drv /tmp/guix-tests/store/s7njaa84r894m76jfq3gvv4k7iav4j5r-valgrind-3.17.0.tar.xz.drv /tmp/guix-tests/store/nkxjl1qkpnhh6wg6zklyf59qjk6cpx7d-valgrind-3.17.0.tar.bz2.drv /tmp/guix-tests/store/ncjw157s7k071ih8r48gvf5qjkq4skpk-lz4-1.9.3-checkout.drv /tmp/guix-tests/store/aakk35y3iiskxcis0k4kprvimmplbrda-libvdpau-1.4.drv /tmp/guix-tests/store/lharpkh073cnbsi3rxrp70r3zgvgxiy0-libvdpau-1.4-checkout.drv /tmp/guix-tests/store/fl2nwddxvck92m1r34azkwx6bppvqqqm-python-pycryptodomex-3.11.0.drv /tmp/guix-tests/store/0ikzbggbxsxnaw0anr2pd4c210d47sar-libtommath-1.2.0.drv /tmp/guix-tests/store/qsd4vs0qswgs6hh9rkfya7cx9qgjli0j-ltm-1.2.0.tar.xz.drv /tmp/guix-tests/store/25wwj0icd11m5wqnyfhyj1vbn081rw8z-pycryptodomex-3.11.0.tar.xz.drv /tmp/guix-tests/store/d206cwib577j0ckp9g5mhlscw2ira2jn-pycryptodomex-3.11.0.tar.gz.drv /tmp/guix-tests/store/immfvxjj20npmmz66j28i8m5nj94kabb-libtomcrypt-1.18.2.drv /tmp/guix-tests/store/c2dfzxrzczcmw5ijdvpgqzcnszczkr4q-crypt-1.18.2.tar.xz.drv /tmp/guix-tests/store/62p8g0kf19vmhibzjddyvjg68r4079y8-crypt-1.18.2.tar.xz.drv /tmp/guix-tests/store/iaf48jk9vsr5z7pxmk2in7izyc4gvvz0-sdl2-2.0.14.drv /tmp/guix-tests/store/0ldj9ylwxp5gj6wclzrm6g7p403s3bj1-SDL2-2.0.14.tar.gz.drv /tmp/guix-tests/store/2wq417gjv0inl2967yzh6wdd9fgn7m1v-fcitx-4.2.9.8.drv /tmp/guix-tests/store/0242g2kynspcrapaxcpjx3hcgya2syin-libxkbfile-1.1.0.drv /tmp/guix-tests/store/4dvrn7g9rna3b7qwabinffrpxy9izfg4-kbproto-1.0.7.drv /tmp/guix-tests/store/i06sm0vcw3fdhxj2rdcq2nyvsqgywraz-kbproto-1.0.7.tar.bz2.drv /tmp/guix-tests/store/is286vwd9yhi3rbm1hsnym42s8w2r4ih-libxkbfile-1.1.0.tar.bz2.drv /tmp/guix-tests/store/02706ifnsq3aqgj97scyl1dmsgm9jvq6-json-c-0.15.drv /tmp/guix-tests/store/910cb21n9r9rhsxdspc3rm1zy3pa5flc-json-c-0.15.tar.gz.drv /tmp/guix-tests/store/0kz1l7grxh2svc2n6dzxyns1dg5cbbrk-gtk+-2.24.33.drv /tmp/guix-tests/store/5b5f15bbsrr5abjfvi1wv6h2lph85q4x-libxcomposite-0.4.5.drv /tmp/guix-tests/store/8zsn39cnnyrmc7b8ic4rd7ajm3hz6lp2-libXcomposite-0.4.5.tar.bz2.drv /tmp/guix-tests/store/6jm6dgzxbdi3viq4dg04q4gxvq44ycgb-libxrandr-1.5.2.drv /tmp/guix-tests/store/mka548gkivgws3s226k39ci3bvii4mvs-libXrandr-1.5.2.tar.bz2.drv /tmp/guix-tests/store/89ngbjyv26prha3mh6a59d0xmcklw9wp-xorg-server-21.1.1.drv /tmp/guix-tests/store/112b8g7ry03pjcyf98yw62kya9ypc225-xcb-util-keysyms-0.4.0.drv /tmp/guix-tests/store/vl57lf5kpxmjj1zcl7z2ckxb1lrwvcv8-xcb-util-keysyms-0.4.0.tar.bz2.drv /tmp/guix-tests/store/22y54jf1dv107v89ivg1ig3nwkmm36kg-xkbcomp-1.4.5.drv /tmp/guix-tests/store/mil8b60i9b1js4iw90jzymq54w35rz6j-xkeyboard-config-2.34.drv /tmp/guix-tests/store/cr5ij6qgci0x7idrj0600r7dw723yp8h-xkeyboard-config-2.34.tar.bz2.drv /tmp/guix-tests/store/s4c5cnr256bz1lk2lm79q2b9vl1dqg6n-xkbcomp-intermediate-1.4.5.drv /tmp/guix-tests/store/pgfdhk3da8iihlb0frv361m95hdxsik5-xkbcomp-1.4.5.tar.bz2.drv /tmp/guix-tests/store/85cxvlf08f9ijzfv2g4cjqv41hpkh5z3-xcb-util-image-0.4.0.drv /tmp/guix-tests/store/h2xg0sfgyhxmkiciqjf6ajzkmbmzkkd4-xcb-util-0.4.0.drv /tmp/guix-tests/store/p1la79193dzxx4n5j260fbb4v915bsr5-xcb-util-0.4.0.tar.bz2.drv /tmp/guix-tests/store/q4irq6w3z4irxim8s8mrfqljd8r4q6ym-xcb-util-image-0.4.0.tar.bz2.drv /tmp/guix-tests/store/a8yyhj9xn53xgcafgzxrzpg8rcl58pw8-xcb-util-renderutil-0.3.9.drv /tmp/guix-tests/store/96y2r2spdffz329sad8zjkmjqi6agmwm-xcb-util-renderutil-0.3.9.tar.bz2.drv /tmp/guix-tests/store/av6jbpini5r1gw6l7vyx54805iy0qqbn-libxv-1.0.11.drv /tmp/guix-tests/store/j5s8f49hz6wdbdcv7vfnv6kbnibf15w3-libXv-1.0.11.tar.bz2.drv /tmp/guix-tests/store/bw36n824l74wqlxcgjsbh3pqafl9hgds-xcb-util-wm-0.4.1.drv /tmp/guix-tests/store/vvlnfl3gjfirdfrhj9sblrmz9l81ysds-xcb-util-wm-0.4.1.tar.bz2.drv /tmp/guix-tests/store/lhi8hky4b60i2swd7ip85pw7fcv2kfzh-libxshmfence-1.3.drv /tmp/guix-tests/store/xvdl64qkzlxd1brvx9i78i6blf338qim-libxshmfence-1.3.tar.bz2.drv /tmp/guix-tests/store/lnj9brddrvsx8w1cwdgfblcbg3alqrgs-libdmx-1.1.4.drv /tmp/guix-tests/store/l53smvl87r0h497mghchhr5d9kd4jhw2-libdmx-1.1.4.tar.bz2.drv /tmp/guix-tests/store/rgg4fpwk3wjk5g1vzmbwn0fqp8h4ci20-mesa-21.2.5.drv /tmp/guix-tests/store/60jw4s11bmqq50mx486mha870lgj993p-llvm-11.0.0.drv /tmp/guix-tests/store/wslfjx88gvlb7cizj0pw65by8h0cy3sf-llvm-11.0.0.src.tar.xz.drv /tmp/guix-tests/store/75dazwvi6njz6nj49433m7nzqrgjvmbi-python-mako-1.1.3.drv /tmp/guix-tests/store/yfxg9pfg88nbc41cbjzl02s11ak5v7n0-Mako-1.1.3.tar.gz.drv /tmp/guix-tests/store/77hnwm8qkdrk9kqva42hz8q1b5v0a4z3-elfutils-0.183.drv /tmp/guix-tests/store/lshhrjlv19fi8nzwd9dd6ma8nzx7gs7r-elfutils-0.183.tar.xz.drv /tmp/guix-tests/store/j188gxqdvzjh0pkrf2xgnginallxg49a-elfutils-0.183.tar.bz2.drv /tmp/guix-tests/store/kajmjxdpj552alfy0yvv01g0sy6d5d4b-wayland-1.19.0.drv /tmp/guix-tests/store/dn4ngpfqw2fkfnwjmnk0c0ya9xxxgyjd-wayland-1.19.0.tar.xz.drv /tmp/guix-tests/store/x3yfjx440ziw2afiykklvczhbvcn1hfk-docbook-xml-4.5.drv /tmp/guix-tests/store/y7p9gwd0l4d1ljbb5arp3fc9gqbyh4f3-docbook-xml-4.5.zip.drv /tmp/guix-tests/store/n42gl0r3rg7c9fk8gqj42lbs1cbmjr27-glslang-10-11.0.0.drv /tmp/guix-tests/store/v4j4g5skcj8gh1ysvdyvk7qidy8v6w2y-glslang-10-11.0.0-checkout.drv /tmp/guix-tests/store/r4lc1sq6n2ym15189qzn2djdqn1czxci-wayland-protocols-1.23.drv /tmp/guix-tests/store/1rcip87y8vnf8rpzlaiwm9x4frzpnjz0-wayland-protocols-1.23.tar.xz.drv /tmp/guix-tests/store/r99ih3gwfkmdfys07whvzpnz12phs3zx-mesa-21.2.5.tar.xz.drv /tmp/guix-tests/store/8f7h3xaimxwhgmddi7gkwmnbfbrbj8zz-mesa-21.2.5.tar.xz.drv /tmp/guix-tests/store/wcmlq4nifvj31a6b74mak4c7cfpk1z58-libva-without-mesa-2.13.0.drv /tmp/guix-tests/store/i1p2bvycbhfp58w9z489szi8mhlyvz8g-libva-2.13.0.tar.bz2.drv /tmp/guix-tests/store/ww60vxx2y1jh92pmsin1gdjb32r89ynl-libxvmc-1.0.12.drv /tmp/guix-tests/store/bkb953r6s98f2pmiy8akpamqbrdp8jiv-libXvMC-1.0.12.tar.bz2.drv /tmp/guix-tests/store/yyiw68ya5300h10vp671dppa5s6y9ss1-libxxf86vm-1.1.4.drv /tmp/guix-tests/store/l2klf72ywcfsdgc8dskr84xlqkdc76cl-libXxf86vm-1.1.4.tar.bz2.drv /tmp/guix-tests/store/s5bhqms3vhv584p1h7wfy562s1av1ww7-libxcvt-0.1.1.drv /tmp/guix-tests/store/8m0wclr8kah7akgcb7gvcz0dvrmv57vr-libxcvt-0.1.1.tar.xz.drv /tmp/guix-tests/store/sdwradfjm675a3lj7xznfzqb6a8dcr40-libxres-1.2.1.drv /tmp/guix-tests/store/sfyb84mwlh3a1bhpasilhglx0mgp5nm0-libXres-1.2.1.tar.bz2.drv /tmp/guix-tests/store/vakx8328r7y1n3h1hwh7qc7971dad6gz-libepoxy-1.5.5.drv /tmp/guix-tests/store/pd2alhk34aq0i5n1jdlpk6ybkjl5ayqm-libepoxy-1.5.5.tar.xz.drv /tmp/guix-tests/store/zqi2n34r35gkr47d5hivr20y4b0hqybw-xorg-server-21.1.1.tar.xz.drv /tmp/guix-tests/store/n0mwrdy5wsdpn9r4mgx2y18dkrq6mhly-xorg-server-21.1.1.tar.xz.drv /tmp/guix-tests/store/y16hpc0qvgpxyv4n1d4wnyabl9a8c2gx-xorg-server-use-intel-only-on-pre-gen4.diff.drv /tmp/guix-tests/store/8lzbr6m2h67xql4hh56gqc9mgjrg6qyj-libxinerama-1.1.4.drv /tmp/guix-tests/store/fh8w9yi1zcysy311120wych7db3n78zd-libXinerama-1.1.4.tar.bz2.drv /tmp/guix-tests/store/a0pxdi1vfz317ms0c812z8357xxgs8xr-cups-2.3.3op2.drv /tmp/guix-tests/store/gmvj16vndjyhyfqkh6n2yw6j99x73vjf-cups-filters-1.28.9.drv /tmp/guix-tests/store/27ic97iwcqsqcmrhj67lx16j8wi3x0qz-grep-3.6.drv /tmp/guix-tests/store/h15q26zy0r6f9jskz77bybi08myqliv0-grep-3.6.tar.xz.drv /tmp/guix-tests/store/8ip7i5j2c69fgzan3i1rphdx4902rysk-ghostscript-with-cups-9.54.0.drv /tmp/guix-tests/store/8z8d5nni8q9rw4gqbq7ldzk8668g3hkk-cups-minimal-2.3.3op2.drv /tmp/guix-tests/store/kbxih53z6hksi6bbbj9956izdpswbsrb-cups-minimal-2.3.3op2-checkout.drv /tmp/guix-tests/store/inl6j4q2b682w1k93663pn4x1w3vzbv3-cups-filters-1.28.9.tar.xz.drv /tmp/guix-tests/store/l77aqg6hzn4i2mdgf3wn0ha5dd3fns21-cups-filters-1.28.9.tar.xz.drv /tmp/guix-tests/store/msbxcxqh5wjgswahsi2dah581yvfpqp4-qpdf-10.0.1.drv /tmp/guix-tests/store/ln7l1nz8b7whxxsrxc7dkxc905rzia7x-qpdf-10.0.1.tar.gz.drv /tmp/guix-tests/store/plwp5ir2xaln7ffd9syfhk6d8m882k5y-ijs-9.54.0.drv /tmp/guix-tests/store/qqadvi6vj5hxn3i86w8nhswpl0r78z4d-avahi-0.8.drv /tmp/guix-tests/store/05mxrlvm0zl5rdhcnpncnfkwlzcccfwb-avahi-0.8.tar.xz.drv /tmp/guix-tests/store/kv5zjaqcw6m0dsqb6d1ifpsp6iza8mx7-avahi-0.8.tar.gz.drv /tmp/guix-tests/store/63hzg9lj4qbc0yzjcqldmkj0l5x4brjm-libdaemon-0.14.drv /tmp/guix-tests/store/cizg1dvmf4l2n1vyr2p9rdi1hc0g8m1f-libdaemon-0.14.tar.gz.drv /tmp/guix-tests/store/jvdj9bd8wdw01qvsh6cwlznfwg1xmf3f-libevent-2.1.12.drv /tmp/guix-tests/store/w358xfjmb9w4ny9bd4p2rl0lf8smqp13-libevent-2.1.12-stable.tar.gz.drv /tmp/guix-tests/store/cpb9gxknn6zdszgwfmr2lplkrbpq2mmy-shared-mime-info-1.15.drv /tmp/guix-tests/store/849616pvharfhc6r4p8kflz647d4mm3b-shared-mime-info-1.15.tar.xz.drv /tmp/guix-tests/store/is3gn0h0zjvg11gjrzj9i1pfvf9dw8z4-atk-2.36.0.drv /tmp/guix-tests/store/zd74cfmqfcps99lw7x0rc87phkww8mq8-atk-2.36.0.tar.xz.drv /tmp/guix-tests/store/j4b912r65vsqmbhq5f9ladja2d19iq0d-gtk+-2.24.33.tar.xz.drv /tmp/guix-tests/store/nal9xpj51d227xgdda4458cdlalibd8b-gtk+-2.24.33.tar.xz.drv /tmp/guix-tests/store/l9ywwqvvdzwyf244618hprsclq2wazbj-librsvg-2.40.21.drv /tmp/guix-tests/store/0r7iyfdx2njcgqi4bsbgrncn0xmf58pr-libgsf-1.14.47.drv /tmp/guix-tests/store/scqlzp3wrmjxiiwqvd6z5vz10gskny78-libgsf-1.14.47.tar.xz.drv /tmp/guix-tests/store/xwgkkzn7v0lfjc5vjj5nbk73rfn74h9b-gdk-pixbuf-2.42.4.drv /tmp/guix-tests/store/6ms48d12d6h6p4mlbvy2pc92z7k59mag-gdk-pixbuf-2.42.4.tar.xz.drv /tmp/guix-tests/store/jv424rnsi01kjqrq04970gpk5cnqihw7-docbook-xml-4.3.drv /tmp/guix-tests/store/rym91smpacy7q9m2vlr0n23znr84lxq4-docbook-xml-4.3.zip.drv /tmp/guix-tests/store/hm5p7xl3ad97k70nqp9ydij4da2l31zk-libcroco-0.6.13.drv /tmp/guix-tests/store/03ddw7xmnib10zap1z2nyn9fpqpv8wmz-libcroco-0.6.13.tar.xz.drv /tmp/guix-tests/store/6cvwsd8snmnc25606gfvdmw7gf0c6l83-libcroco-0.6.13.tar.xz.drv /tmp/guix-tests/store/s21fp4h91fgjg1n2jmrjwmdkd5ijz05h-librsvg-2.40.21.tar.xz.drv /tmp/guix-tests/store/nmp0vl6aalsnqz0pbfzgb6pqgnjvi4zf-libxi-1.7.10.drv /tmp/guix-tests/store/xpwxn95cj41w1cmv4rfh1faccw57aqpi-libXi-1.7.10.tar.bz2.drv /tmp/guix-tests/store/xz1bs852bpbnv3q8fji8my1aiarvs6n4-libxkbcommon-1.3.0.drv /tmp/guix-tests/store/shk13fr21d2nw3gcrnwribkipvqykh23-libxkbcommon-1.3.0.tar.xz.drv /tmp/guix-tests/store/zmz647jls2d4rjwsggpwilisnzp3xr9p-libxcursor-1.2.0.drv /tmp/guix-tests/store/6qxacvvacq6srhfwflrs9whb0yzf2pv9-libXcursor-1.2.0.tar.bz2.drv /tmp/guix-tests/store/2wyhxyh081zi65pipslbd5a0vxw5s7v3-iso-codes-4.5.0.drv /tmp/guix-tests/store/3yab4djyskpcfqqrpi3v4szh15y9428j-iso-codes-4.5.0-checkout.drv /tmp/guix-tests/store/7jqr6jjapmapapbynipwwq48rqa4ijbm-libxtst-1.2.3.drv /tmp/guix-tests/store/938b3my99rmdlrjyc1j8b6hyx8zlbp23-libXtst-1.2.3.tar.bz2.drv /tmp/guix-tests/store/ak1xv6wrzjmcs292zwf5sci8fwcszhqd-enchant-1.6.0.drv /tmp/guix-tests/store/a93yh0raz698p6dxjfv8rjaaq7qmfscl-hunspell-1.7.0.drv /tmp/guix-tests/store/4ns47qsgfwf64s3rfn1znk7656215rkf-hunspell-1.7.0-checkout.drv /tmp/guix-tests/store/kc7paqqc6hkxm704k0kqb8ikniigscqq-enchant-1.6.0.tar.gz.drv /tmp/guix-tests/store/xcc3w83ipc7zysg0gpsmnf8ng7d0j1dh-aspell-0.60.8.drv /tmp/guix-tests/store/w8fgf8cgz9xnwbc0b7wrsrhfzd2qp5qn-aspell-0.60.8.tar.xz.drv /tmp/guix-tests/store/yq761hm160d0prj7252123mk3sp0z2jy-aspell-0.60.8.tar.gz.drv /tmp/guix-tests/store/aly8m8ln4wbfqph902qywcidshggpxm1-at-spi2-atk-2.38.0.drv /tmp/guix-tests/store/c12i2pzpvy9d5hixf0b91mcxqazp42qd-at-spi2-core-2.40.0.drv /tmp/guix-tests/store/8mkc41a2vdl35pv962aihgmhs02jjakr-at-spi2-core-2.40.0.tar.xz.drv /tmp/guix-tests/store/f3zq62rvq1h94yw35244sp6w6b39dkpl-at-spi2-atk-2.38.0.tar.xz.drv /tmp/guix-tests/store/bnazxgffckbl2jfzxj9l7lgxgp1kk85r-gtk+-3.24.30.drv /tmp/guix-tests/store/0jmp7g9m6jhmlqsbrb05n37hjbzn13aw-graphene-1.10.6.drv /tmp/guix-tests/store/gaf065y20vzn7y0ni9xh5xvy74kdxxpn-mutest-0.0.0.drv /tmp/guix-tests/store/kxnz9zq7fclfvsz56q8xr05hj4250hkd-mutest-0.0.0-checkout.drv /tmp/guix-tests/store/j81x4wry2h66qg0i5l2xlh60f1ckfxj2-git-minimal-2.33.1.drv /tmp/guix-tests/store/vwdih22sscz6agfisazfqh4p11gybrfr-git-2.33.1.tar.xz.drv /tmp/guix-tests/store/jdpdzgaywn7310cmzq69a9mdg30ilhfv-graphene-1.10.6-checkout.drv /tmp/guix-tests/store/1953wjqf3sw2lwc7x207rnhy4pkp8bzd-libpsl-0.21.1.drv /tmp/guix-tests/store/npx78j0nqw43j8h6gkx5v8q537x0zkm9-libpsl-0.21.1.tar.gz.drv /tmp/guix-tests/store/337jzrwv31gs5c2i3j2zpvyrnx3vp950-gtk+-3.24.30.tar.xz.drv /tmp/guix-tests/store/y470jr0b736h62n9jplma15wb0cvpanx-gtk+-3.24.30.tar.xz.drv /tmp/guix-tests/store/3r0hhs24914k4w23q1g1wy0y9s5g22il-hicolor-icon-theme-0.17.drv /tmp/guix-tests/store/2j6c7gsq4wcbjdi895k36rlqnqgwccxp-hicolor-icon-theme-0.17.tar.xz.drv /tmp/guix-tests/store/9nccwbrvif02xxdw0fb0cxj0s4s7b13q-colord-minimal-1.4.5.drv /tmp/guix-tests/store/cpxzs0p59d5w4bdzmg0wb4s6izzxpb5y-libgudev-236.drv /tmp/guix-tests/store/2vsq760q0fwd1pw0s6ahfhh30ssh9znr-libgudev-236.tar.xz.drv /tmp/guix-tests/store/f94i9rlkn9w4i76ph9spxy6dn7n7bhn9-colord-1.4.5.tar.xz.drv /tmp/guix-tests/store/i8hxz8bqlv70vv1bssfzws1z05pi4q7x-sane-backends-1.0.32.drv /tmp/guix-tests/store/kdgy3rwn09xj6wrncf8gzrmmkjnhfyrj-autoconf-archive-2021.02.19.drv /tmp/guix-tests/store/5319mkj0w7kyrixl1d8v6852rhyp2rbz-autoconf-archive-2021.02.19.tar.xz.drv /tmp/guix-tests/store/mjzdzmb6565bkbxzr3m4d8kl8vxwyvyi-hplip-minimal-3.21.10.drv /tmp/guix-tests/store/0x393jcfkj7rlck0c3xirc4j8dmzhbk8-sane-backends-minimal-1.0.32.drv /tmp/guix-tests/store/nyvbwmp5r4fvhvzikcf8b4kig7pd3g3g-libusb-1.0.24.drv /tmp/guix-tests/store/wminr6yzj5j504qx7s5k0zm1q3l9d8yl-libusb-1.0.24.tar.bz2.drv /tmp/guix-tests/store/z2a2hrzqybwmz2i41p7wqb524xlsxcq0-sane-backends-minimal-1.0.32-checkout.drv /tmp/guix-tests/store/nrmzdkk4lzw29ivxaf3ww7mlgpq63ynk-sane-backends-minimal-1.0.32-checkout.drv /tmp/guix-tests/store/jidxq8fvwqda65rzili4ld4nvw5bxkly-hplip-3.21.10.tar.xz.drv /tmp/guix-tests/store/qrqk2b5i3b63xpr0hm2sx58dxwnm90y9-hplip-3.21.10.tar.gz.drv /tmp/guix-tests/store/w8h45wgk21mqcj4pjk2mfi12nfky16gf-polkit-duktape-0.120.drv /tmp/guix-tests/store/1ahv9biwiqjpw9ap24s7qmdnz1gwmywk-elogind-246.10.drv /tmp/guix-tests/store/082awpzp75l8s1pqf31yym1y5lvlg1g5-shadow-4.8.1.drv /tmp/guix-tests/store/gf16p699ahr7vbz0hadybq22c928k5rv-linux-pam-1.5.1.drv /tmp/guix-tests/store/c92m79y0gc6m80gf926j38428b12f82i-Linux-PAM-1.5.1.tar.xz.drv /tmp/guix-tests/store/8qxkyympyn7imadwvgy4lzlqzbj8ganw-Linux-PAM-1.5.1.tar.xz.drv /tmp/guix-tests/store/m6dams3882kszqiwy4v4m4kkc1jybj8i-shadow-4.8.1.tar.xz.drv /tmp/guix-tests/store/jnmwcp0li2jbz9dp3bkmz9q91waqn1rb-shadow-4.8.1.tar.xz.drv /tmp/guix-tests/store/446k6zyrxk1wafj1g7cyh9gzblbqm85z-elogind-246.10-checkout.drv /tmp/guix-tests/store/17nk73prqc8inw38vi5wcswpkx7627c5-elogind-246.10-checkout.drv /tmp/guix-tests/store/g9r9d57bxxgqsr953vfi5pddcfq8zl7n-kexec-tools-2.0.23.drv /tmp/guix-tests/store/c191x4dggyr1wg2cps4d82q933a9y8gw-binutils-next-2.37.drv /tmp/guix-tests/store/crs3pvci2zd1dcgn3q42x4s7phz5pxf9-binutils-2.37.tar.xz.drv /tmp/guix-tests/store/hcaf3pss2w1idlp79raigxg8mckzlzm2-ld-wrapper-0.drv /tmp/guix-tests/store/y45mhq799sw29ss8p1zrw10431aw5xm1-kexec-tools-2.0.23.tar.xz.drv /tmp/guix-tests/store/sd3cwl4rq49ci499hpxhkgvixr1yz01s-shepherd-0.8.1.drv /tmp/guix-tests/store/g17zvd9vf2yyadylx3v4ic4c1wm2l5kz-guile-readline-3.0.7.drv /tmp/guix-tests/store/gk3x735dci3qaw541pl9l90z0f5w248b-shepherd-0.8.1.tar.xz.drv /tmp/guix-tests/store/xpcy4xvdh1psxz8s6rfa26hffblgykvs-shepherd-0.8.1.tar.gz.drv /tmp/guix-tests/store/4kbc815i2qqrf0v7w82x91mnmh5p0v4k-duktape-2.6.0.drv /tmp/guix-tests/store/si9di59v8h2ffasn53v6c3apm7mjpc2g-duktape-2.6.0.tar.xz.drv /tmp/guix-tests/store/5kkjvpn88fmqcs7n7x3ii0py8wbh54l3-polkit-0.120.tar.xz.drv /tmp/guix-tests/store/qm12dh10fkig6xrhnaw6r80n038rznwx-polkit-0.120.tar.gz.drv /tmp/guix-tests/store/xszgf0vjvmkigawqyl8g13qwnc9dndkq-nspr-4.31.drv /tmp/guix-tests/store/54iajabrw4ml29ga7nms0a8cdkrv74iw-nspr-4.31.tar.gz.drv /tmp/guix-tests/store/wdygi599pw3n3xb0d0kimc54bpq26ysx-vala-0.54.2.drv /tmp/guix-tests/store/v3k2cjh75v89ln1gqrnfgaxiq723lfpd-vala-0.54.2.tar.xz.drv /tmp/guix-tests/store/wv5lk4cpdxy625x04mighymlvvb1f3rs-dbus-glib-0.110.drv /tmp/guix-tests/store/1kyaamk4k5rzwd4d3ad6flyw0m8g3856-dbus-glib-0.110.tar.gz.drv /tmp/guix-tests/store/z6ynrgrgzqlwbm28w22g2h7ca3dp1030-gusb-minimal-0.3.5.drv /tmp/guix-tests/store/cayiipbhr1ywbjaq7089kxifwvdniy61-gusb-minimal-0.3.5-checkout.drv /tmp/guix-tests/store/9xqcgq7j6477w57088ps8b2y017h0bgj-sassc-3.6.2.drv /tmp/guix-tests/store/fggwzjk8spv55nw71ablxlqf5xxjkgch-sassc-3.6.2-checkout.drv /tmp/guix-tests/store/shamg168gyvk597fr27mc26zh8qqfz8x-libsass-3.6.4.drv /tmp/guix-tests/store/kp45f9q1ljsxp295phpkizyricbdry98-libsass-3.6.4-checkout.drv /tmp/guix-tests/store/b2w2g0nzs8mn945fpq0p2w8pb2q86p38-docbook-xml-4.1.2.drv /tmp/guix-tests/store/55v3by9g3l7afl0bl167acgwz3limirf-docbkx412.zip.drv /tmp/guix-tests/store/gamlxl7jj7p707vn7ni35qywij50r73v-libcloudproviders-minimal-0.3.1.drv /tmp/guix-tests/store/nlrdxjz5waw9gihj2kf8r6k8hipgdrjf-glib-networking-2.70.0.drv /tmp/guix-tests/store/8gpp53y8xhshnr5k57l71fmmcafyjd2i-libproxy-0.4.17.drv /tmp/guix-tests/store/xakdq8snqi10vhfmphyf27l7gky3fis1-libproxy-0.4.17.tar.xz.drv /tmp/guix-tests/store/9piia7lk2294nh1rz9970gfn51njm521-glib-networking-2.70.0.tar.xz.drv /tmp/guix-tests/store/n873rd6w6fi4yksq2jzr9law846z5gxm-glib-networking-2.70.0.tar.xz.drv /tmp/guix-tests/store/lhlg5ihx4q1pma319hirj9l4wz6lzshd-gsettings-desktop-schemas-41.0.drv /tmp/guix-tests/store/nqqcxxy2kngfyapc7m5bfjbxy77dxigd-gsettings-desktop-schemas-41.0.tar.xz.drv /tmp/guix-tests/store/q8w365ifjm7ikcr8y0af88d2z3nii12m-gnome-backgrounds-40.1.drv /tmp/guix-tests/store/b3cn2ky29asrkidfsr9zn7lv6raljkw0-gnome-backgrounds-40.1.tar.xz.drv /tmp/guix-tests/store/riv2lg1dhznfwpkfsm5x0p3gbg13yakr-libcloudproviders-0.3.1.tar.xz.drv /tmp/guix-tests/store/lxsyx955wgklzhhbxnkp4qk72j6q1gbh-json-glib-minimal-1.6.2.drv /tmp/guix-tests/store/yz45iwpqml2chkyxnqx5xfnlva2ffrqc-json-glib-1.6.2.tar.xz.drv /tmp/guix-tests/store/p849b27h90zv6qd80bg2ygmz97s41qcr-rest-0.8.1.drv /tmp/guix-tests/store/is52g8h2dcgvr0k7d9xrjgnqylxsi9ak-rest-0.8.1.tar.xz.drv /tmp/guix-tests/store/q3xix2q60zc4cw05fr22yglnx5kgffdd-libsoup-minimal-2.72.0.drv /tmp/guix-tests/store/6zy6mzpmqx8cqcncqispwjlcaidsd0bs-samba-4.13.10.drv /tmp/guix-tests/store/00mjcznbdwhirl3lr1vxhajpxp4fw5g6-gamin-0.1.10.drv /tmp/guix-tests/store/sza3vij6wlxg4z5vr1xr6vnjgv0jcp93-gamin-0.1.10.tar.bz2.drv /tmp/guix-tests/store/7ssbz6wl5lj4b3q88fchigx67rcsrbff-samba-4.13.10.tar.xz.drv /tmp/guix-tests/store/1rfz8k9zgv5s6ld1vx1wbrv8afas9nvv-samba-4.13.10.tar.gz.drv /tmp/guix-tests/store/82jkmdwj1d53wwa6bdyhnn90r3abiq2q-openldap-2.4.57.drv /tmp/guix-tests/store/81l7fdpcbb6wfz44rxr5si8apcyb6dpl-bdb-5.3.28.drv /tmp/guix-tests/store/fsb8j2wcgp0qz6c44cgqh028qpi6sak2-db-5.3.28.tar.xz.drv /tmp/guix-tests/store/akhcawvpvwjk4arrzcm0xawlqjs39xld-db-5.3.28.tar.gz.drv /tmp/guix-tests/store/a82yvd9rsqlmagir880npckdwkhgjsvx-openldap-2.4.57.tgz.drv /tmp/guix-tests/store/gdy8gamw9jjhlin0iwyzqlf2sbsrfk5z-cyrus-sasl-2.1.27.drv /tmp/guix-tests/store/wnpnkdy9dai5n4k3xpjnjd61s316n21g-cyrus-sasl-2.1.27.tar.xz.drv /tmp/guix-tests/store/kf93w9r4v3fwgcy5jvpy9fkaspgw6d6g-cyrus-sasl-2.1.27.tar.gz.drv /tmp/guix-tests/store/vrmjmliigr4cjjdg7rbadj4hzivasg62-groff-1.22.4.drv /tmp/guix-tests/store/p8lbfpyyqyx0qvx3pbhy84gzsc5yykhn-groff-1.22.4.tar.gz.drv /tmp/guix-tests/store/vrv2lnpjyh1hcrxjf66rr9a4zqz3x60i-psutils-17.drv /tmp/guix-tests/store/p8lxnszfcd4db52k2jgjgma6z261ccpn-psutils.tar.gz.drv /tmp/guix-tests/store/889jddavy0bqvldqfihv1ma9l48dp25b-gpgme-1.15.1.drv /tmp/guix-tests/store/hdmad6msgm00yds6rf171y5c27v9jhh9-gnupg-2.2.30.drv /tmp/guix-tests/store/5dx0qbsmw5bmckcsklja5ir2lga6300b-gnupg-2.2.30.tar.xz.drv /tmp/guix-tests/store/viyc43nny3nfb31s7f1c34mrmy6gxl97-gnupg-2.2.30.tar.bz2.drv /tmp/guix-tests/store/anzyihil4m1vkp8xba9kqzh1qbxp4f5m-pcsc-lite-1.9.3.drv /tmp/guix-tests/store/zvp4pkgj253ssjlblbhnv5acp2p1rcm5-pcsc-lite-1.9.3.tar.bz2.drv /tmp/guix-tests/store/cgzkx7crwj45x4c4nc3sdfjbc5y3cjzh-npth-1.6.drv /tmp/guix-tests/store/rp53sikc2550rbrawqna1p4mwzi11qcv-npth-1.6.tar.bz2.drv /tmp/guix-tests/store/q0jvqx07lvkmz5ihg03psjsvikk0a3yp-pth-2.0.7.drv /tmp/guix-tests/store/hxpgw1azlzxla19jfb0gskp2gzhsabdk-pth-2.0.7.tar.gz.drv /tmp/guix-tests/store/vwk86m4ighfxaajsn4l7682xhy2ymczv-config-0.0.0-1.c8ddc84.drv /tmp/guix-tests/store/s68h2c2i3ryhydxzf2ssblpmmxk5p66z-config-0.0.0-1.c8ddc84-checkout.drv /tmp/guix-tests/store/qz2cxdahz57cidzvipqj2pp5rhaypmp9-libassuan-2.5.5.drv /tmp/guix-tests/store/gigpn2afmnzgk3vwrwsl622maw9jbml9-libassuan-2.5.5.tar.bz2.drv /tmp/guix-tests/store/yvm0pp043209wkhqxi9av5zjziyapn36-libksba-1.6.0.drv /tmp/guix-tests/store/g0b876rlivwx8p8jcsqfc93vx79w0vyz-libksba-1.6.0.tar.bz2.drv /tmp/guix-tests/store/vs03h3mvgf47n6pazqbhr4zl33az2zj4-gpgme-1.15.1.tar.bz2.drv /tmp/guix-tests/store/d2x8jblqpi962y5x2zj1svy3p746mf45-cmocka-1.1.5.drv /tmp/guix-tests/store/0hxqizv2mkz7k6h2v6gbka5jks7pn4kn-cmocka-1.1.5.tar.xz.drv /tmp/guix-tests/store/d8xq55ycr2bvc44w9vvga561sr34y960-libtirpc-1.3.1.drv /tmp/guix-tests/store/l2r03nwqxqjf1851k25vq9jddm8y9d8f-libtirpc-1.3.1.tar.bz2.drv /tmp/guix-tests/store/g90vvcz1pzdwq9acnjl0rahzl1xp5byl-heimdal-7.7.0.drv /tmp/guix-tests/store/sjwx9pxi83dadixqz47lp366jmxjs90j-heimdal-7.7.0.tar.xz.drv /tmp/guix-tests/store/mbv16jxdpbyn93bmzh0lf3l0hzhmj5yy-heimdal-7.7.0.tar.gz.drv /tmp/guix-tests/store/jsz5zjs20k0g0vavp9akjr14z3wfhfpb-ldb-2.4.1.drv /tmp/guix-tests/store/l791laaszj8d3mpx64zsdv342l23hvic-tevent-0.11.0.drv /tmp/guix-tests/store/iabkr1r1zk3kdipiif95gkjw0rkkls60-tevent-0.11.0.tar.gz.drv /tmp/guix-tests/store/w5fn1mq0srplwrmk31rm2i2bqb7kivv8-talloc-2.3.3.drv /tmp/guix-tests/store/2sx3dj6ryb40761pbda831yad2hi4v5w-talloc-2.3.3.tar.gz.drv /tmp/guix-tests/store/q3j3d63rranmsqv5gyghv0x3l5vs8dh1-lmdb-0.9.29.drv /tmp/guix-tests/store/ifjp6z3skby94d4n6cfnaz7ijrpaj3dl-lmdb-0.9.29-checkout.drv /tmp/guix-tests/store/y5ry8z36pwasdqfyfw3ammygwzb12c4m-tdb-1.4.5.drv /tmp/guix-tests/store/cw7w2v0q58hx32zw61py6phy60yr1cph-tdb-1.4.5.tar.gz.drv /tmp/guix-tests/store/znp234pfz6m9g47gnr6hbb1lcmpv0swx-ldb-2.4.1.tar.xz.drv /tmp/guix-tests/store/im9bjc6a0570vg10zj601m1l195wdafh-ldb-2.4.1.tar.gz.drv /tmp/guix-tests/store/pq6wk99f6i2i5lm1p843w834y1fafjpz-perl-parse-yapp-1.21.drv /tmp/guix-tests/store/5rzpnxpbvyg58cn6vxmx04kzi2ycl1d5-Parse-Yapp-1.21.tar.gz.drv /tmp/guix-tests/store/xn6x56jls7nwqaz95wdwi25v880g91z8-rpcsvc-proto-1.4.drv /tmp/guix-tests/store/sxmz0f3w0s9s8n7f5wabkzkvlm93fqwb-rpcsvc-proto-1.4.tar.xz.drv /tmp/guix-tests/store/gcjf1waa4zl9d2w36s9diwm46l9ffph4-httpd-2.4.52.drv /tmp/guix-tests/store/66d050g2wvpnsc493993jdcr0aax2mvy-apr-1.7.0.drv /tmp/guix-tests/store/n4iifygzr0z00q0yanfn2ilr49dvdwxi-apr-1.7.0.tar.xz.drv /tmp/guix-tests/store/mvmxxxv9329799j8k90mspfb3bs9fcjg-apr-1.7.0.tar.bz2.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/xbmxwzhcj11xclcy1x5jqwjcmvckkkvv-httpd-2.4.52.tar.bz2.drv /tmp/guix-tests/store/z3f881dri1cf7vycm2pw02vc628cgjbf-apr-util-1.6.1.drv /tmp/guix-tests/store/ix7s1881lq6rhnwf5999ad8h8lnqggik-apr-util-1.6.1.tar.bz2.drv /tmp/guix-tests/store/i8q22dnqbia3ck614icvcma0ly1vyq63-vala-0.52.0.drv /tmp/guix-tests/store/234cqyri7aywx9v24s6szp5x5aiaarlq-vala-0.52.0.tar.xz.drv /tmp/guix-tests/store/nf25gh5aryj4z6ar59r75hssfp5kn6n4-libsoup-2.72.0.tar.xz.drv /tmp/guix-tests/store/xc7lnbrhghak50iahzmqkg9z5g8mry45-brotli-1.0.9.drv /tmp/guix-tests/store/4bkqcc1pi7w5bbwpac7sbp1m38fwn5bk-brotli-1.0.9-checkout.drv /tmp/guix-tests/store/smkqflb4kpmzfg7ivhcdh0m96zykzw5c-brotli-1.0.9-checkout.drv /tmp/guix-tests/store/chlp2bkxgbpa9glwg4c66q4z1j2gpqys-extra-cmake-modules-5.70.0.drv /tmp/guix-tests/store/i5bqb3rhhjm9w619wl2ckbig2qwymxk6-extra-cmake-modules-5.70.0.tar.xz.drv /tmp/guix-tests/store/m5z5xr5vjywi6a19mq7vglgyldq2jzzd-qtbase-5.15.2.drv /tmp/guix-tests/store/2ykha2hc632p50zxk1qir4r9y0qiqnjw-xdg-utils-1.1.3.drv /tmp/guix-tests/store/48vzxfmnwvgkzwvhxyvpfq3pwjajm117-perl-file-desktopentry-0.22.drv /tmp/guix-tests/store/4q65h7xhy8kbkzj30s7rh1s8nlggf259-perl-uri-5.05.drv /tmp/guix-tests/store/mxnkl5rzx474bzfqh5i6p89d3f60k7ps-URI-5.05.tar.gz.drv /tmp/guix-tests/store/rk3pc5h676kyn657malaykjjjvzc1wk7-perl-test-needs-0.002009.drv /tmp/guix-tests/store/dd45gmkf8hkmw6cr5qy1m1hsz2m48qn7-Test-Needs-0.002009.tar.gz.drv /tmp/guix-tests/store/8d2k45s981sp0lp8lvdyjcbgasbyjzxx-File-DesktopEntry-0.22.tar.gz.drv /tmp/guix-tests/store/9zlv79ywj7ir8fxf4dnhsxjaia536cs6-perl-file-basedir-0.08.drv /tmp/guix-tests/store/04kg0x46kjrjhxrmwqddd0kmzg6yskfd-perl-cpan-meta-2.150010.drv /tmp/guix-tests/store/3xbblh9q03wkinhppx94lsyw4cznd9pq-CPAN-Meta-2.150010.tar.gz.drv /tmp/guix-tests/store/7cxa6x3fs3mb2hblvnzigjnzskmdx2ih-perl-parse-cpan-meta-2.150010.drv /tmp/guix-tests/store/gyxah97nb34z2l70ghyzgc0ypn86l5dx-perl-cpan-meta-yaml-0.018.drv /tmp/guix-tests/store/5ngr6g0iqi4dj8s27yrfybv38nqrzzz6-CPAN-Meta-YAML-0.018.tar.gz.drv /tmp/guix-tests/store/vca8zzap8k41maynsxbxna3ldmcn4gkd-perl-cpan-meta-requirements-2.140.drv /tmp/guix-tests/store/kd2gq3315fyp62vik956s13kbm05fsqn-CPAN-Meta-Requirements-2.140.tar.gz.drv /tmp/guix-tests/store/6dlq1zx8f87palkjqs1q2x962lpjl5kr-perl-module-build-0.4231.drv /tmp/guix-tests/store/3dr2z7qcc09pjcw2n85c92awr67v0d34-Module-Build-0.4231.tar.gz.drv /tmp/guix-tests/store/8w33xjjv3n1k2mpl5h3simwqxbcjzav4-File-BaseDir-0.08.tar.gz.drv /tmp/guix-tests/store/b23fdfp2awhv5g9p8zxg1kkzw5lggyjw-perl-devel-symdump-2.18.drv /tmp/guix-tests/store/gh9vb3zjzri8wxfwrsx2hnhyv88z9358-Devel-Symdump-2.18.tar.gz.drv /tmp/guix-tests/store/ja2p1cdy0s9nqiqvcm7vd906nr932dvj-perl-pod-coverage-0.23.drv /tmp/guix-tests/store/dqgfn54qafr39x1h689cz60ww4akr9sk-Pod-Coverage-0.23.tar.gz.drv /tmp/guix-tests/store/w4k2k7r8wzkf2ij5ldf2qc4fx7ljqanf-perl-pod-parser-1.63.drv /tmp/guix-tests/store/5c2j3zr38kpg8dmnpspc5k74fy857cj5-Pod-Parser-1.63.tar.gz.drv /tmp/guix-tests/store/mxm0rz4k1hdal56fkjzbw7qwfm94bp39-perl-ipc-system-simple-1.26.drv /tmp/guix-tests/store/jakpxym1b9pwblklb5wacqjbs77bj88m-IPC-System-Simple-1.26.tar.gz.drv /tmp/guix-tests/store/spcsmd5v4ly3nm1xp401807ij7snghgy-perl-test-pod-1.52.drv /tmp/guix-tests/store/m2mhndhixdj3a21yhiahhi1v6948p2bw-Test-Pod-1.52.tar.gz.drv /tmp/guix-tests/store/sw6zaqnwi9d9b1wyzqafm2zxq0vbva8s-xdg-user-dirs-0.17.drv /tmp/guix-tests/store/1bb47n7i4196z2zdvw9rdzzi35mfsa6f-xdg-user-dirs-0.17.tar.gz.drv /tmp/guix-tests/store/w4vc9lccrqhs7c6hcdxs142im8834k9y-perl-file-which-1.23.drv /tmp/guix-tests/store/232l7wlzqbi198hajlslgrq9yn0mnc9q-perl-capture-tiny-0.48.drv /tmp/guix-tests/store/swv64x3kzxxc95zbj7iqkx5c2qbx5ps6-Capture-Tiny-0.48.tar.gz.drv /tmp/guix-tests/store/5l44dn2g3spxx5cxhv85759z6fi6wzy1-perl-test-script-1.20.drv /tmp/guix-tests/store/dbcp6aahqjlzh1dh09pmq41gyjgclmsz-Test-Script-1.20.tar.gz.drv /tmp/guix-tests/store/x8lhjfcn07xfq2fbfhk7rzfxsjpdmbsr-perl-probe-perl-0.03.drv /tmp/guix-tests/store/0nry2askypi4qhbbf27lqjwc46falcar-Probe-Perl-0.03.tar.gz.drv /tmp/guix-tests/store/6j1p2arznbp8frl0wzv0shas81il5n85-File-Which-1.23.tar.gz.drv /tmp/guix-tests/store/yx7151hk8mlbip7p7zrfd7dmp4g10sm4-perl-test-pod-coverage-1.10.drv /tmp/guix-tests/store/rv2cazqa4hzkhh5yq7alhly1pjr5rz3i-Test-Pod-Coverage-1.10.tar.gz.drv /tmp/guix-tests/store/bpb10bqfavcxpmix4lw1pb8mykgalynk-gawk-5.1.0.drv /tmp/guix-tests/store/yqszk13mlq0bm6cw4xk8dfs8x5s72brk-libsigsegv-2.13.drv /tmp/guix-tests/store/g5vzh6a63kl79m419dmb0c3050zkm1d5-inetutils-2.0.drv /tmp/guix-tests/store/jsajnsc9fwq36pxmgyg4f7kldx4l4wdz-inetutils-2.0.tar.gz.drv /tmp/guix-tests/store/jjm9nw4i3sy0hdms679p0saq3ns99hih-w3m-0.5.3+git20210102.drv /tmp/guix-tests/store/014q6ksw63335cc2y5kgyc5rnp2cgw3p-imlib2-1.7.1.drv /tmp/guix-tests/store/ihwvdfz4hf11bbvmchwcj4g57qx8iyi4-giflib-5.2.1.drv /tmp/guix-tests/store/cvh8ar9yqg8q2fysn7di52liij5i74jr-giflib-5.2.1.tar.gz.drv /tmp/guix-tests/store/mda32pqx2prwcbcw9r1si48abch0gdks-libid3tag-0.15.1b.drv /tmp/guix-tests/store/gbc5c8mxdwgk156myc119dzc52nm234m-libid3tag-0.15.1b.tar.gz.drv /tmp/guix-tests/store/mr8dnx52vjd9ydcwzz5qj5xxsvchsjpj-imlib2-1.7.1.tar.bz2.drv /tmp/guix-tests/store/szsh0rd1kj9nfy2cgcg77m3hbhjlb81v-libwebp-1.2.0.drv /tmp/guix-tests/store/364m882wv6aqihvzwxr0xbf2wgdr64gi-libwebp-1.2.0-checkout.drv /tmp/guix-tests/store/6kax0nfrhbv11sw07pir4fc3pdbik2lv-glu-9.0.1.drv /tmp/guix-tests/store/lw2grwgmw3fsbh3ff7j0i4jsxa53ifr6-glu-9.0.1.tar.gz.drv /tmp/guix-tests/store/9vdmlbazk57wghszwp25anksnp6aqkzc-freeglut-3.2.1.drv /tmp/guix-tests/store/8c1qvjaja4kq58bsb6vl8rhz89h0xpjd-freeglut-3.2.1.tar.xz.drv /tmp/guix-tests/store/bwjhgan4wcfr1m40q28bf67vzrknnljc-freeglut-3.2.1.tar.gz.drv /tmp/guix-tests/store/kacy6af34527hhx42f7cdaiss8iszf0w-w3m-0.5.3+git20210102-checkout.drv /tmp/guix-tests/store/pc7qcjlchsbq9ki9zz3bldg790kqiwlr-xdg-utils-1.1.3.tar.gz.drv /tmp/guix-tests/store/pil4h0njnpq18aav1qidghbz4fgzk0d8-sed-4.8.drv /tmp/guix-tests/store/bhj4c2q1732gkqrgdvw8kz663vssda4f-sed-4.8.tar.xz.drv /tmp/guix-tests/store/q05drnblwylfn0drbyh2h9a14yj6bsdr-perl-file-mimeinfo-0.29.drv /tmp/guix-tests/store/vw5793s9n3qfpy1hgnfsvps2zpxrkx99-File-MimeInfo-0.29.tar.gz.drv /tmp/guix-tests/store/q0jzw0gqypbbqdxrjgjzr8f2214kcnvj-xset-1.2.4.drv /tmp/guix-tests/store/b1lgzbxvd7rpvf9in9xkc5x2z9fi9p48-xset-1.2.4.tar.bz2.drv /tmp/guix-tests/store/vl19cfr2f3k8474gi1g6a2b33blk84wi-xprop-1.2.5.drv /tmp/guix-tests/store/r18j86ykrrzr7vkb3mkck0lpadry0nyw-xprop-1.2.5.tar.bz2.drv /tmp/guix-tests/store/5hschmgyxcc7gnm6p1pz0cpk70fbzb1s-ruby-2.7.4.drv /tmp/guix-tests/store/p0y6mj365xhh7g30m3z9vmxijik1i89s-ruby-2.7.4.tar.xz.drv /tmp/guix-tests/store/xn88a8ymv5ykrnxg3l6c9b5vzkmywiip-ruby-2.7.4.tar.gz.drv /tmp/guix-tests/store/8680wmn44cz4jziczyi5h39f3cjk7b6k-libinput-minimal-1.19.2.drv /tmp/guix-tests/store/gkcq3x9lkg79znprv7zkqy3m83v1zzlr-libevdev-1.11.0.drv /tmp/guix-tests/store/wqqgnmhp8wx8hcb1rgvm8ydinyzdrv2a-libevdev-1.11.0.tar.xz.drv /tmp/guix-tests/store/ib4y8qszcpdk57xnzlzjz1rp7fw4dcyj-libinput-1.19.2.tar.xz.drv /tmp/guix-tests/store/sq21f5a20qk6gx27ap537dvlshdljmwr-mtdev-1.1.6.drv /tmp/guix-tests/store/ir6f6f0r0sfhmi6dvavjijbhcpq3h8q7-mtdev-1.1.6.tar.bz2.drv /tmp/guix-tests/store/v4jdzzzdf5hrk78av329kw96c5i3qfng-check-0.15.2.drv /tmp/guix-tests/store/mwwv2j5mnksv90mg1pkqmgfzhkfcbzcb-check-0.15.2.tar.xz.drv /tmp/guix-tests/store/f9d57xqxkdwalirc3k45yc73gqnln6j5-check-0.15.2.tar.gz.drv /tmp/guix-tests/store/wxmwi621zbgi19mwg6s7nrrshyr4ifjs-check-fix-test-precision-for-ppc.patch.drv /tmp/guix-tests/store/9zckpns68w91p514g9blbywrqwfaz9yj-mariadb-10.5.12.drv /tmp/guix-tests/store/151c3209b5zd756l6spf58mcs35y8fvy-mariadb-10.5.12.tar.xz.drv /tmp/guix-tests/store/9yx5x2jcrbqm3cqvzldmgmmq0idm77pl-mariadb-10.5.12.tar.gz.drv /tmp/guix-tests/store/kkbd2js27kxhfgkj29vsw7jkk8sz1m9y-pcre2-10.37.drv /tmp/guix-tests/store/19qkl32ja8ib1a7lsh4gwrj37drcrp4j-pcre2-10.37.tar.bz2.drv /tmp/guix-tests/store/ddybzv36lxqqbp9jkr6p73wgf6gnss5k-double-conversion-3.1.5.drv /tmp/guix-tests/store/wa9950s1i1k4hbgyx1v99avcz62llq37-double-conversion-3.1.5-checkout.drv /tmp/guix-tests/store/plaz442b4a06dfq0bilgci5353j6zajw-nss-3.71.drv /tmp/guix-tests/store/cgrhypv7k6422xd9k9nfvjni8wvpqb0q-nss-3.71.tar.xz.drv /tmp/guix-tests/store/zzvbcjmp1rykcwblk0w4w2lbvqs826q9-nss-3.71.tar.gz.drv /tmp/guix-tests/store/qvhlraqz5cskinffqjhsz66x2s64ypg9-libmng-2.0.3.drv /tmp/guix-tests/store/mwk82cpav4d2k0xlka67xpm9i6mxxdgv-libmng-2.0.3.tar.xz.drv /tmp/guix-tests/store/qvkiw8z94qxmdbhbjkmgz62vkbjmc721-unixodbc-2.3.9.drv /tmp/guix-tests/store/xf0s9qlgl83xmlrvp3p5l7gnnrjb6ccl-unixODBC-2.3.9.tar.gz.drv /tmp/guix-tests/store/r6hxzh4fp6b6y5imjdqkqv0w6kx02hs6-vulkan-headers-1.2.164.drv /tmp/guix-tests/store/kfqxpg143nv2l7b37qgmvpgixdmsgasv-vulkan-headers-1.2.164-checkout.drv /tmp/guix-tests/store/ya8gi7spl2124ybyqq7md4hskw0zfm5l-postgresql-13.4.drv /tmp/guix-tests/store/mh9dp0gm243q1s3vwkbjsv1h56rqrvwh-postgresql-13.4.tar.xz.drv /tmp/guix-tests/store/zij1gi8ggcy67r5h21csfm8kviqrvn99-postgresql-13.4.tar.bz2.drv /tmp/guix-tests/store/yfkbg3xlv37g2nfh3a81simikyxhdf7m-pulseaudio-15.0.drv /tmp/guix-tests/store/0x5wmlws09v536q1kpc0gyhayh06a6qm-bluez-5.61.drv /tmp/guix-tests/store/67sn1cq3gspwafgzz4m1pvkmmbgyckpv-bluez-5.61.tar.xz.drv /tmp/guix-tests/store/lpqxxgs5lkwlxmmcgbhl4zlrcdwgygph-libical-3.0.10.drv /tmp/guix-tests/store/73aln1lasdrydl6p398jd6rwx0dwgaad-libical-3.0.10.tar.gz.drv /tmp/guix-tests/store/dvaqliizqwlfb1pp2sqhpmj5dd7l18n8-gtk-doc-1.33.2.drv /tmp/guix-tests/store/1x1grvk9b3wgwmgaw5pwsdmw60z1677m-dblatex-0.3.12.drv /tmp/guix-tests/store/028k30w4f5x79s8y0anrqwfxlms28lgd-texlive-generic-etexcmds-59745.drv /tmp/guix-tests/store/4pfwphwlrncjmjs4g43vpszsmmmkk1x5-texlive-generic-etexcmds-59745-checkout.drv /tmp/guix-tests/store/7l5z7snlsga3fw2flfaffcxsyr6j5vvy-subversion-1.14.1.drv /tmp/guix-tests/store/501mancxh5qh5188h3paqs4pk4fq8b5y-serf-1.3.9.drv /tmp/guix-tests/store/d54vkrhnid9ih38kj5ylcx9xdpzbzbh1-serf-1.3.9.tar.xz.drv /tmp/guix-tests/store/wqp9kx7a7zhkic9dyr8dd9ydn2h9p7sm-serf-1.3.9.tar.bz2.drv /tmp/guix-tests/store/j1x5mizgcj8d336yjyprmfj581jymyr6-module-import-compiled.drv /tmp/guix-tests/store/y1x2iw8b9kpg3i84x05nrg6g3iddg01v-scons-3.0.4.drv /tmp/guix-tests/store/azxdh47x6m9zyrhj44jqw3x7dwqs7dbs-scons-3.0.4-checkout.drv /tmp/guix-tests/store/g8xy3126li96808909l5ybaxyw6wkisb-subversion-1.14.1.tar.bz2.drv /tmp/guix-tests/store/ws0j4ngxinicvp5fs0sdqmwswq7xbjrh-utf8proc-2.5.0.drv /tmp/guix-tests/store/1jxh04yx9h1a6xg6hnp37m015wfam52d-GraphemeBreakTest.txt.drv /tmp/guix-tests/store/4bnmlj9xn83mws5626hhv24n1zi78f63-utf8proc-2.5.0-checkout.drv /tmp/guix-tests/store/vmlk6mkr23fywyyz3gg19gah64nzbdb5-NormalizationTest.txt.drv /tmp/guix-tests/store/v9nimga3xxn0pf7qdl5xr51yi4z0bwk6-module-import-compiled.drv /tmp/guix-tests/store/h98y2qvkgx48x9lh3364gv6da8hzpwg1-texlive-generic-iftex-59745.drv /tmp/guix-tests/store/jkfyavsrm63sjgljqzy7kqyj3ccbjhkq-texlive-generic-iftex-59745-checkout.drv /tmp/guix-tests/store/ly8liqjqxdrsyc0ld23h0h7lpmrfz21j-texlive-generic-infwarerr-59745.drv /tmp/guix-tests/store/ndpkhmvx5sjmlj2g6hq8lgli35h1wqk8-texlive-generic-infwarerr-59745-checkout.drv /tmp/guix-tests/store/05sjz0rc22jvmbx96cs2dqxxs44sbhx8-texlive-fonts-latex-59745.drv /tmp/guix-tests/store/033x5fzq5q8vr6j13armc7r1ca4xwhdj-texlive-fonts-latex-59745-checkout.drv /tmp/guix-tests/store/1xw6j6c6w8dpalm826x3c5qbv9pwdqvr-texlive-metafont-59745.drv /tmp/guix-tests/store/bkri74603h5ivpi2n8z4nbas3ghs7f2d-texlive-metafont-59745-checkout.drv /tmp/guix-tests/store/z276lcx4zcvaf5z3lw3ziig3fmpxdb8b-texlive-bin-20210325.drv /tmp/guix-tests/store/67dbd2w2g0rnvvpxd7yshwb2fhj18cdm-texlive-20210325-source.tar.xz.drv /tmp/guix-tests/store/hagdw0vlzdsjlb9w560y280vacwa8z7m-texlive-20210325-source.tar.xz.drv /tmp/guix-tests/store/6nkf0a3rsj2sx3hjfwnahi3blivrwyhw-zziplib-0.13.72.drv /tmp/guix-tests/store/rrx87idvzsb2nsyd7c3pcdr23yb21l5b-zziplib-0.13.72-checkout.drv /tmp/guix-tests/store/fxmpyib9fp1bzlf7rprrp5b7y1shck6w-mpfr-4.1.0.drv /tmp/guix-tests/store/fzgnb4xd6nflqfb6kgnxilrb6fk3n0xz-teckit-2.5.10.drv /tmp/guix-tests/store/i4zdw3m62k1dp3i24sz7f2hrya6hs05v-teckit-2.5.10.tar.gz.drv /tmp/guix-tests/store/nrkwb1sgmxi9xl5mbb6yf91v9m5iyhfq-potrace-1.16.drv /tmp/guix-tests/store/d8dp47hxx385s5h89zrw48yfbyay6rva-potrace-1.16.tar.gz.drv /tmp/guix-tests/store/qwcsql4dlchvyqgnmn2gqzwv9888fccc-fontforge-20201107.drv /tmp/guix-tests/store/9qpacnnjw43zmf85adjky00rxy4aix33-libuninameslist-20200313.drv /tmp/guix-tests/store/wbxi070izyy2s6iklq7rx6hmgs44n68l-libuninameslist-dist-20200313.tar.gz.drv /tmp/guix-tests/store/ahx9v6vhrfvaq06ac394426hsczhmx30-fontforge-20201107.tar.xz.drv /tmp/guix-tests/store/n32nvwp2h8x6h8lsb3idxq72v13v2pwj-libspiro-20200505.drv /tmp/guix-tests/store/3zbl7jx0dlw41z4z60f439zhdd5169sf-libspiro-dist-20200505.tar.gz.drv /tmp/guix-tests/store/yk929yppgq25xj9gmdks0lmqn6x8x3ph-libungif-4.1.4.drv /tmp/guix-tests/store/cgbwr56isj6jk92na66sxchm832n0x42-libungif-4.1.4.tar.bz2.drv /tmp/guix-tests/store/rsya1dr99cz50xq76f6pbrw1nx0qpzxa-texlive-scripts-59745-checkout.drv /tmp/guix-tests/store/y361fhjx3r74hwaa76mblzywrfmlx6xg-texlive-20210325-extra.tar.xz.drv /tmp/guix-tests/store/y6kyfa9xlx9rjnzcdmyw8nvngs44bis5-texlive-cm-59745.drv /tmp/guix-tests/store/ghpaza4260x6ly1h37ba5k807gc06784-texlive-cm-59745-checkout.drv /tmp/guix-tests/store/0jh1m2pa24fc4m3vp52vnkzvjhvsa077-texlive-hyphen-estonian-59745.drv /tmp/guix-tests/store/09k9vnd7dkb19hv8dhc34glkzbidg6vs-hyph-utf8-scripts-59745-checkout.drv /tmp/guix-tests/store/0dq37vis4zy2zd99bag4i0iq78mw4a1v-ruby-hydra-0.0-0.5abfa37.drv /tmp/guix-tests/store/1ysmk5fxbscxw9n4diiy3yx5adr8dnq5-ruby-byebug-11.1.3.drv /tmp/guix-tests/store/26b4mg3jqhlihsmgm978d2c8fl49i7i5-module-import-compiled.drv /tmp/guix-tests/store/2w24j95bmgdlwvayzgq1qa7f8xadqrkp-ruby-pry-0.13.1.drv /tmp/guix-tests/store/6wji78gb9pc5xii8sk5q171hmvrb7yx1-ruby-coderay-1.1.2.drv /tmp/guix-tests/store/9kawpyx5ba9fb681q3am22zjhgg1jzg5-coderay-1.1.2.gem.drv /tmp/guix-tests/store/bh98fdf928gv0q4n0ymma8xx7330bi35-ruby-method-source-1.0.0.drv /tmp/guix-tests/store/38f3hpg9nqpf1mpry9sp75gdznss019f-method_source-1.0.0.gem.drv /tmp/guix-tests/store/9dhf047aj852m27x46nmdq4b7zsd87lf-ruby-rspec-expectations-3.8.2.drv /tmp/guix-tests/store/i8wd4c75bz0i2hindg6fn7z7rwa1i5b4-ruby-diff-lcs-1.3.drv /tmp/guix-tests/store/cqxs3af7wl5s0lwn38wvy5v6273p13pm-diff-lcs-1.3.gem.drv /tmp/guix-tests/store/ky6mah67sg1gxqla03h0206z404sa0mi-rspec-expectations-3.8.2.gem.drv /tmp/guix-tests/store/rda40n9ii53nqi64c3f81vgij23d0g6l-ruby-rspec-support-3.8.0.drv /tmp/guix-tests/store/21y62wg9lhlbjdww03p446xsvnfcams7-rspec-support-3.8.0.gem.drv /tmp/guix-tests/store/bg2j2mqwggbmba2l6rs7mvcmigj3vp14-ruby-rspec-3.8.0.drv /tmp/guix-tests/store/4y4rkfii0f69xz4dr8xblfassd1z52z3-rspec-3.8.0.gem.drv /tmp/guix-tests/store/pabv5svh0fi3qakfkm193gxc60dbp9ny-ruby-rspec-core-3.8.0.drv /tmp/guix-tests/store/8l88vbzk9l56vxqllbhf0jdvd7qzsirl-rspec-core-3.8.0.gem.drv /tmp/guix-tests/store/qcvzzkfnkyzp5z95jhyyzc2ip0ia1lxn-ruby-rspec-mocks-3.8.0.drv /tmp/guix-tests/store/6d8qa6l899fp00yhhny22skia4j07lnh-rspec-mocks-3.8.0.gem.drv /tmp/guix-tests/store/wvq32r4jcin03byw74znklr0z8qvkyw3-pry-0.13.1.gem.drv /tmp/guix-tests/store/2xh580sg6g239mjzyda0d2m4x2s71jc7-ruby-netrc-0.11.0.drv /tmp/guix-tests/store/4gvgqk1mv282ds4crvlv95jbq32smk1q-ruby-minitest-5.14.4.drv /tmp/guix-tests/store/hycy6gnkzsw8my91n1zg27jpdx6mgi9j-minitest-5.14.4.gem.drv /tmp/guix-tests/store/w2p8dj5pvjb0g4sfniwdhiv265kkby4m-ruby-hoe-3.21.0.drv /tmp/guix-tests/store/hgrxcazfldahc04f9n6sc5j6pr0nlw54-hoe-3.21.0.gem.drv /tmp/guix-tests/store/97qwpdhz5x8n3ia17599q8sy4fn21avy-netrc-0.11.0.gem.drv /tmp/guix-tests/store/6h0pvl76javnv12cw88bdz21hppya526-ruby-rubocop-1.10.0.drv /tmp/guix-tests/store/07g51pfc3kqji3qsizy1f8ivfb64h33g-ruby-bump-0.7.0.drv /tmp/guix-tests/store/8kyyav29z5rx8r0lg39ndc91gd4dpxsc-bump-0.7.0.gem.drv /tmp/guix-tests/store/30z0lizhqz6r3xqhy43i5gwbp0vhvd2n-ruby-docile-1.1.5.drv /tmp/guix-tests/store/9x16xh52jrksjdgx4qp7ii1pl2l5419m-docile-1.1.5.gem.drv /tmp/guix-tests/store/5g012b5cip9yhpcj07b946q4jh43c6g6-ruby-stackprof-0.2.17.drv /tmp/guix-tests/store/1q06r0pq2nvqdpcqdqqf8s5k0d7h5bip-ruby-mocha-1.13.0.drv /tmp/guix-tests/store/02lnrd9jma1nxl1h3fczcad93h5j23k3-ruby-instantiator-0.0.7.drv /tmp/guix-tests/store/0byv9wgigil4c80hsik820afxhpgb0ax-ruby-power-assert-1.1.5.drv /tmp/guix-tests/store/514snacixlp7g53y6ialz6z5xk0ija68-power_assert-1.1.5.gem.drv /tmp/guix-tests/store/vqjmr8l2ahknl228l319p20glq46syvs-bundler-2.1.4.drv /tmp/guix-tests/store/hvnmwp7n0dvj0dahfn42ay0g2nbwz9bl-bundler-2.1.4.gem.drv /tmp/guix-tests/store/5ac160n1w9zmk0iyn3vrhqprk3j5v03n-ruby-blankslate-3.1.3.drv /tmp/guix-tests/store/n5wa6k3fjxlqkwssyb3vcvgchg5klc6v-blankslate-3.1.3.gem.drv /tmp/guix-tests/store/s989ma6vcqcgk2pciahirrnfk9p79yy2-ruby-test-unit-3.4.4.drv /tmp/guix-tests/store/cy85lpk0k0wzhh5mn8rp4136sxdgy5ps-ruby-packnga-1.0.4.drv /tmp/guix-tests/store/kjq3j8ni1c3dk7alnj339ghqvp6mjlj8-ruby-yard-0.9.25.drv /tmp/guix-tests/store/bfcwd393pdrkkr91gjjh90nsdplpdrvv-ruby-yard-0.9.25-checkout.drv /tmp/guix-tests/store/nmjvrv4k6jxjkv98km2b8xyhigw8c87w-ruby-locale-2.1.2.drv /tmp/guix-tests/store/5a76rxgzgpiazkk8wvwalawmjlpwifbn-locale-2.1.2.gem.drv /tmp/guix-tests/store/r9vmnbr2zvy7zjqhradqnqdqcg39yd6i-packnga-1.0.4.gem.drv /tmp/guix-tests/store/v2r729q0axbk3m1nc2fq4zhr8m5cnp9i-ruby-text-1.3.1.drv /tmp/guix-tests/store/fh16xjhr77xh6hlq047kq7wmv0jb3wcz-text-1.3.1.gem.drv /tmp/guix-tests/store/yl064v4hw0kbk4al6pw7cphksqhs757a-ruby-gettext-3.1.7.drv /tmp/guix-tests/store/v0asfhwjggf98vfnvq24rydsa53mdwzl-gettext-3.1.7.gem.drv /tmp/guix-tests/store/hslnwnxxhplv5s4yybrw6a4s21la9m33-test-unit-3.4.4.gem.drv /tmp/guix-tests/store/zjb137yzvp0nmifbkfhlbj756chpr6wj-instantiator-0.0.7.gem.drv /tmp/guix-tests/store/053mv7y6n1a1hypwi1nmj4vn06gczpxj-mocha-1.13.0.gem.drv /tmp/guix-tests/store/4sk5201rg0qmp1lmljl0m222kfbqxrz7-ruby-introspection-0.0.4.drv /tmp/guix-tests/store/gimy8279zh3nw7fngwln4ik0cdk2df38-ruby-metaclass-0.0.4.drv /tmp/guix-tests/store/86w5iy89v8ccpizv14f0hck23iadqc8c-metaclass-0.0.4.gem.drv /tmp/guix-tests/store/pxxkh2xhd2q59cvq69wg77ms6c27i4b9-introspection-0.0.4.gem.drv /tmp/guix-tests/store/8dhn1zvvl8167n919bl9p92ny2nx6xw7-ruby-rake-compiler-1.1.1.drv /tmp/guix-tests/store/9pjgzxz6b3271yh5igzn1053vl1b589w-rake-compiler-1.1.1.gem.drv /tmp/guix-tests/store/js7fdhfm8z411czqx0hhmbk1i5i14333-stackprof-0.2.17.gem.drv /tmp/guix-tests/store/62dyfwxlz939skk3hdzzjr7bsax59wz4-ruby-rubocop-rspec-2.2.0.drv /tmp/guix-tests/store/pmjna5gqv7rcigy49igjshs0n3wfvn4c-ruby-rubocop-rspec-2.2.0-checkout.drv /tmp/guix-tests/store/7652z4wd9n4akn79w0cf4fb81k4l35jc-ruby-rubocop-1.10.0-checkout.drv /tmp/guix-tests/store/7fvyf1w7rv98x7ld33zavy3ywqxc2m7p-ruby-hashdiff-1.0.1.drv /tmp/guix-tests/store/0inr1a5kv6jqqqsxpwn874bs4dk49a0j-ruby-rspec-expectations-2.14.5.drv /tmp/guix-tests/store/0wpfzi41r15awjl1i972k6bhppwv2vil-rspec-expectations-2.14.5.gem.drv /tmp/guix-tests/store/bhfxf6n0qmykxnki79sk3mdninllygjd-ruby-rspec-mocks-2.14.6.drv /tmp/guix-tests/store/9874b00jaans6n95czizpm8p4myg2ppi-rspec-mocks-2.14.6.gem.drv /tmp/guix-tests/store/fh3cq8bqvbknplz5l932y45wxmh8v8qs-hashdiff-1.0.1.gem.drv /tmp/guix-tests/store/n90i8gy8xfmnm1csmli37zwz25d8bjkw-ruby-rspec-core-2.14.8.drv /tmp/guix-tests/store/f73prc25qp5s40plz26xhyyw5qxhqw1j-rspec-core-2.14.8.gem.drv /tmp/guix-tests/store/sw722sandc4q3z2q6rsr3k0jbn24zbsv-ruby-rspec-2.14.1.drv /tmp/guix-tests/store/blmgy1wml1jiywqlzm5q7g0vsm93flvq-rspec-2.14.1.gem.drv /tmp/guix-tests/store/8znqjirknqfzy0kw8qcirfy1dlcnyx6k-ruby-rubocop-performance-1.9.2.drv /tmp/guix-tests/store/qz1i3v4pfif9ki9zb56bm2ahgdpcdgay-ruby-rubocop-performance-1.9.2-checkout.drv /tmp/guix-tests/store/ak191g08768f6vkffd4862vrmwx4c70i-ruby-progressbar-1.10.1.drv /tmp/guix-tests/store/sga6ry8js1gg2jyy2ip7ah5hwyiiqgw2-ruby-progressbar-1.10.1.gem.drv /tmp/guix-tests/store/barpbg063hfrgdsi16s4dkq04i9kp6xq-ruby-parser-3.0.0.0.drv /tmp/guix-tests/store/1y38xv3z2yls22as9yh8s2lx20n4sa0i-ruby-cliver-0.3.2.drv /tmp/guix-tests/store/rj6qrzd987wm8298fzhw8fmjrpkby1qz-cliver-0.3.2.gem.drv /tmp/guix-tests/store/8mglqpwk0s8pq8hcg74wkcdp4s54jy2r-parser-3.0.0.0.gem.drv /tmp/guix-tests/store/8qm7n1ync8y0cf2fn5fq12l7xmfk8j0b-ragel-6.10.drv /tmp/guix-tests/store/i0vm7zlh5nsd7f4drlqqdhdlwqh27pw3-ragel-6.10.tar.gz.drv /tmp/guix-tests/store/gixqhdsqvp70qrzp7mrkn4hq27p4sly9-ruby-json-2.1.0.drv /tmp/guix-tests/store/knv0k9lsz5ajbfj23mgdhyyhr0hqbpgj-json-2.1.0.gem.drv /tmp/guix-tests/store/lrm0k0zfba7ilb9acpz9m4paka69nq8m-ruby-simplecov-0.17.1.drv /tmp/guix-tests/store/j6fdkjd9qzhmiwjnp7wagfb4sg2z3gnk-simplecov-0.17.1.gem.drv /tmp/guix-tests/store/pr9kr5aa0lmxpbbpfpcqvxr1s8x9ga95-ruby-simplecov-html-0.10.2.drv /tmp/guix-tests/store/jk7z42xmya0ghbpz5qql3z8ifhh84lbh-simplecov-html-0.10.2.gem.drv /tmp/guix-tests/store/p89153h77a88k9l2d2cqrxk19h7fargs-ruby-ast-2.4.2.drv /tmp/guix-tests/store/254blxdxglj3gj18bhajbssmc5axjg2x-ruby-ast-2.4.2-checkout.drv /tmp/guix-tests/store/2c857zqjak3c0xiamk2bfq6kz2iwf9x9-ruby-domain-name-0.5.20190701.drv /tmp/guix-tests/store/03khk7fhkswi7jv5yvw4pyk9hdzaqm48-ruby-tzinfo-data-1.2021.1.drv /tmp/guix-tests/store/1cmwqrzk230ym91g1znpyr1jpdfn1sib-ruby-tzinfo-data-1.2021.1-checkout.drv /tmp/guix-tests/store/fg47liyppziz4hgfl7lzbxsmj4c4n4kg-ruby-tzinfo-2.0.4.drv /tmp/guix-tests/store/7vqvi6pm10azixnafka3qz3kf1h6fmla-ruby-tzinfo-2.0.4-checkout.drv /tmp/guix-tests/store/p9rl8vc22dx7pddkhkagiddyx766953n-ruby-concurrent-1.1.5.drv /tmp/guix-tests/store/8p1pck5f7hizcdjg1j7rznyy3p3y205k-ruby-concurrent-1.1.5-checkout.drv /tmp/guix-tests/store/jhx40532r42q1w4l72hd5ap92nzjfs2m-tzdata-for-ruby-tzdata-info.drv /tmp/guix-tests/store/5xyv88lb1gsh9shy786ngc8qa531z1xk-tzdata2021a.tar.gz.asc.drv /tmp/guix-tests/store/qsa5s6m02i62vck7q62q3r6s0zw0r99j-tzcode2021a.tar.gz.asc.drv /tmp/guix-tests/store/sins7ly7xirxvxc08yw0xwfl4fr1pzvi-tzdata2021a.tar.gz.drv /tmp/guix-tests/store/zclshcmjlqq7zcgjvqcq1qcyb65rgx9j-tzcode2021a.tar.gz.drv /tmp/guix-tests/store/061r263pipd3fpyfqrhrjbjxzmsll5rh-ruby-i18n-1.7.0.drv /tmp/guix-tests/store/y4myj60x799pk1dxyrhwa9042v4jzmjw-i18n-1.7.0.gem.drv /tmp/guix-tests/store/46wjdzvp2ga3ip4dwy2iijjpsnlxlchf-domain_name-0.5.20190701.gem.drv /tmp/guix-tests/store/4jqlnyq78lsmqb1g6rpzs3hawxcf052s-ruby-shoulda-3.5.0.drv /tmp/guix-tests/store/6hylimcqh76xq1sjrkzg5mks7cr2q5gd-ruby-shoulda-matchers-2.8.0.drv /tmp/guix-tests/store/hm672xwh1bp1vrc80fqqcn1zjlm5v2pz-ruby-activesupport-6.1.3.drv /tmp/guix-tests/store/msx4ky62gxj0865hml70wqd1k0rpclgz-activesupport-6.1.3.gem.drv /tmp/guix-tests/store/s11mwmn1ngq35lmm4hyw1vz5ah2244z1-ruby-zeitwerk-2.4.2.drv /tmp/guix-tests/store/2b105vgchir450373fa56f30njwx7gg3-ruby-builder-3.2.4.drv /tmp/guix-tests/store/87rlrdp0xcj1dwvrklqyh9r3g95j15x3-builder-3.2.4.gem.drv /tmp/guix-tests/store/801qik2lwza1wkqqscndi3p5r5bxi2lz-ruby-zeitwerk-2.4.2-checkout.drv /tmp/guix-tests/store/9m1plyv8jmdjra00f4768n6xk6bmxkwa-ruby-ansi-1.5.0.drv /tmp/guix-tests/store/p6fp3x8a3q826f16cygg60q2n993xkhd-ruby-ansi-1.5.0-checkout.drv /tmp/guix-tests/store/g2xabwjldyajhaacvkmscxbhnmzy2hmm-ruby-minitest-focus-1.1.2.drv /tmp/guix-tests/store/c3f0yikhlqw96k658vwd11n01bmrwi9r-minitest-focus-1.1.2.gem.drv /tmp/guix-tests/store/zpzlzr6diac9xkvdp1j156g5lrq21xbw-ruby-minitest-reporters-1.3.6.drv /tmp/guix-tests/store/7bq2dfcbnp611qqkv8slc21shpk95iip-minitest-reporters-1.3.6.gem.drv /tmp/guix-tests/store/82l5370rprgal98d7jijnzzcyybjgr9k-ruby-maruku-0.7.3.drv /tmp/guix-tests/store/2dd8nc8lmzkdibr1ypza2s83212rkarf-ruby-nokogiri-1.10.9.drv /tmp/guix-tests/store/b2fxg2i2rlm2j5mzwal2b6548fvi38xd-ruby-pkg-config-1.2.5.drv /tmp/guix-tests/store/rr0nhvrwinx30n221mkkxwa451vx6fh5-pkg-config-1.2.5.gem.drv /tmp/guix-tests/store/cm41f11gn2gz1vp7izrabz0cmhnrx9vy-nokogiri-1.10.9.gem.drv /tmp/guix-tests/store/j8ciqchr1jqb0cyaykl2mqmcvngr3kfg-ruby-mini-portile-2.4.0.drv /tmp/guix-tests/store/clb0dzyvmlygrm71agnvxf6v8lzy058i-mini_portile2-2.4.0.gem.drv /tmp/guix-tests/store/991ycmi0xqrrfi5s8wbcgh2hwk3f078y-maruku-0.7.3.gem.drv /tmp/guix-tests/store/kz7krrqglhj73145gyab4vqkn4qxbmn4-ruby-tdiff-0.3.3-1.b662a604.drv /tmp/guix-tests/store/4ffbrk1ji8c806gjhvbf379qp3schp5d-ruby-rubygems-tasks-0.2.5.drv /tmp/guix-tests/store/xzzpfww7080f2w2yp1ddh9k572smy7gc-rubygems-tasks-0.2.5.gem.drv /tmp/guix-tests/store/l6wryykpzzg7b6imkkkwjqqmsc3ivdfg-ruby-tdiff-0.3.3-1.b662a604-checkout.drv /tmp/guix-tests/store/z2960r5kclhjn62fid4pzaiha44h27xh-ruby-nokogiri-diff-0.2.0-1.a38491e4.drv /tmp/guix-tests/store/ka06a79pbln5bccambpang1cw36b1wwm-ruby-nokogiri-diff-0.2.0-1.a38491e4-checkout.drv /tmp/guix-tests/store/vdklsvakz5gkc7iyg0pvqmhj6rqbsx7r-shoulda-matchers-2.8.0.gem.drv /tmp/guix-tests/store/fzh6fnfpb74c909c399kwvlqmv2hvrdf-ruby-shoulda-context-1.2.2.drv /tmp/guix-tests/store/hcs0gx3wwkdd92z6k7vim37k38zrz4wb-shoulda-context-1.2.2.gem.drv /tmp/guix-tests/store/y96fyaybzd4kyi3hpwlsazhs1j4wa1az-shoulda-3.5.0.gem.drv /tmp/guix-tests/store/ar402dq1346frgprz2lbrjrncrjs7lkj-ruby-unf-0.1.4.drv /tmp/guix-tests/store/81n8d2b7ssvar6dba8axb4ls4ajg8gn6-unf-0.1.4.gem.drv /tmp/guix-tests/store/jvqmk9skm6s9gmnjkxri238jikjya6s6-ruby-unf-ext-0.0.7.6.drv /tmp/guix-tests/store/63i32snyls5yqx0459nsvzi57s09g8b6-unf_ext-0.0.7.6.gem.drv /tmp/guix-tests/store/404hn9glql7z6a8msp4m86rkxxgghq0j-ruby-rest-client-2.0.2.drv /tmp/guix-tests/store/5q0sn0rc3f3bdf2sml63sn00yh4zgdx2-ruby-http-cookie-1.0.3.drv /tmp/guix-tests/store/8id5vl445p9km07lwj1pdzfqs6z20gs6-ruby-sqlite3-1.4.2.drv /tmp/guix-tests/store/8lnx7zdvkvrvgxc8rw9qpzvc76bwd5iz-ruby-mini-portile-0.6.2.drv /tmp/guix-tests/store/80i0sjgz0k58iwvm4lqm9a1x98mbaiqq-mini_portile-0.6.2.gem.drv /tmp/guix-tests/store/jyw2733d5vqrsb5gkimnr6cbjam27wck-sqlite3-1.4.2.gem.drv /tmp/guix-tests/store/fhjzbzy53zw09sf36vkdr5s3av6gv4fb-http-cookie-1.0.3.gem.drv /tmp/guix-tests/store/i9dcbld1h77c6dlz705gzd93pa4vanaf-ruby-addressable-2.7.0.drv /tmp/guix-tests/store/9z637vk5q097lg1ifrbfwmcjgz35k796-ruby-rspec-its-1.3.0.drv /tmp/guix-tests/store/xckn24dh0hfhwmx5hiqd2km4861lna28-ruby-rspec-its-1.3.0-checkout.drv /tmp/guix-tests/store/h9p8h4amkx2qdaib9k8aax8bsgpqyynp-ruby-idn-ruby-0.1.0.drv /tmp/guix-tests/store/1spqrxdrwp5g8ni7hcrjwh5m0dh10jz4-idn-ruby-0.1.0.gem.drv /tmp/guix-tests/store/k4l32ygzzkvaqdapxmapys4939ckms09-ruby-public-suffix-4.0.5.drv /tmp/guix-tests/store/y18v285grbrrxvir9wshqb1bxa53kwqm-public_suffix-4.0.5.gem.drv /tmp/guix-tests/store/mdciv99f1aqf5ar913h0hlca9q9l92l7-addressable-2.7.0.gem.drv /tmp/guix-tests/store/vnfbxp6di0lfr519gcbs8569n691llg8-ruby-rack-2.2.3.drv /tmp/guix-tests/store/19xmw0a5yr76layfk6xpkk2n96zfak83-ruby-minitest-global-expectations-1.0.1.drv /tmp/guix-tests/store/5csdmfy54q7y30gglv1whj3pwfvsv92m-minitest-global_expectations-1.0.1.gem.drv /tmp/guix-tests/store/zg9cjlyzwn4hpbyrhh8h6bijvhl63pr9-ruby-rack-2.2.3-checkout.drv /tmp/guix-tests/store/v9wfj9rl4qwqh0lck3hpcl2r7qg0zyz5-ruby-rack-2.2.3-checkout.drv /tmp/guix-tests/store/xnqsbi6pygn3i23jbv5vw95gc6ngjjra-ruby-sporkmonger-rack-mount-0.8.3-1.076aa2c.drv /tmp/guix-tests/store/yyxgsxqlq2rg8isf6k3aafv3a8k37j8z-ruby-sporkmonger-rack-mount-0.8.3-1.076aa2c-checkout.drv /tmp/guix-tests/store/ihdqbx5l0jvbsssvplfhs703rb0cji5r-ruby-mime-types-3.1.drv /tmp/guix-tests/store/1qw0g42dpp7sx7nrl5ra44738cikjq91-ruby-minitest-rg-5.2.0.drv /tmp/guix-tests/store/f20xmn9gy6bw725x59p9hqx94pij26m3-minitest-rg-5.2.0.gem.drv /tmp/guix-tests/store/35ziwidzi8qr14i5gz02gxfy3kdhn4hg-ruby-minitest-hooks-1.5.0.drv /tmp/guix-tests/store/77p7vi2kcc3ybnixayir2bg7ccika5y4-minitest-hooks-1.5.0.gem.drv /tmp/guix-tests/store/7spwq687ymknss2xb7dz75akxlk6zndj-ruby-sequel-5.47.0.drv /tmp/guix-tests/store/igq2lasd8yrxrp8b432hcka6b6an0gk1-sequel-5.47.0.gem.drv /tmp/guix-tests/store/5ydd9fjxgzqfak9dhsj7754d4v7lq5ic-ruby-fivemat-1.3.7.drv /tmp/guix-tests/store/5xcrb9gs1zn7pzg8b7n0xdaq2sicj9cg-fivemat-1.3.7.gem.drv /tmp/guix-tests/store/6qaw6lgpgvbqvhjnhhgkfqckzf4xflzz-mime-types-3.1.gem.drv /tmp/guix-tests/store/h1hd25r8csxf8zm22l79m0j6kd0lv8s5-ruby-minitest-bonus-assertions-3.0.drv /tmp/guix-tests/store/70q9a54ym66aqc70amfa7d4aysl2xac0-minitest-bonus-assertions-3.0.gem.drv /tmp/guix-tests/store/jy473bciz8rfnby3vgyrbxik9cyjm0hm-ruby-minitest-moar-0.0.4.drv /tmp/guix-tests/store/hw126lv8jaf0skr9d620nbf0z99nkrh7-minitest-moar-0.0.4.gem.drv /tmp/guix-tests/store/x9q98982k44wiyc46z05vrqd4p9w7v1s-ruby-minitest-pretty-diff-0.1-1.11f32e93.drv /tmp/guix-tests/store/8hlvcj67b1cyn5bq8ihvnbxf71ycnwib-ruby-turn-0.9.7.drv /tmp/guix-tests/store/040kcqdsqdwi0hp7i9z21byfaw0spif1-turn-0.9.7.gem.drv /tmp/guix-tests/store/hghy8mazabw7ss323qwz3r4l4jj5v1np-ruby-minitest-4.7.5.drv /tmp/guix-tests/store/kdanpxd8g2lwnnvjp8az14nhd8p1pvz4-minitest-4.7.5.gem.drv /tmp/guix-tests/store/g3l964jj5qnwhhwwm6ml3gh31z6lga0l-ruby-minitest-pretty-diff-0.1-1.11f32e93-checkout.drv /tmp/guix-tests/store/k0awd8kd1fznwc5nb029khym08k5r08y-ruby-mime-types-data-3.2016.0521.drv /tmp/guix-tests/store/xa8c9dagwcrq8hgs7rjdj60000xlpk9p-mime-types-data-3.2016.0521.gem.drv /tmp/guix-tests/store/q0n10knrnpfpbshcyz2knxs7b5ffqr9y-ruby-webmock-2.3.2.drv /tmp/guix-tests/store/cwhj57zhhw7pvc1yj13qi84ssxnbkqlz-webmock-2.3.2.gem.drv /tmp/guix-tests/store/xmnlr7pd83mgi08wirk1swkdnzb1611b-ruby-crack-0.4.5.drv /tmp/guix-tests/store/g8kbyhpxspqy5s5fna02y2r4kapv1rjg-crack-0.4.5.gem.drv /tmp/guix-tests/store/zwfv00krspzqj5pixd70js5gx5ll5p5i-rest-client-2.0.2.gem.drv /tmp/guix-tests/store/mgnh4i8gy4h2g0sgbgki2fdd0fvilhyw-ruby-kramdown-2.3.1.drv /tmp/guix-tests/store/31vdsdslls46g68rnghy193m0f754wvb-ruby-afm-0.2.2.drv /tmp/guix-tests/store/fzfc19d7dw5hn7xr5faqd23xvxs7i3cs-afm-0.2.2.gem.drv /tmp/guix-tests/store/43jas2hyrk52cxa6agzcyvcavzs1rm0s-ruby-hashery-2.1.2.drv /tmp/guix-tests/store/4if1fkx9n6n787rwmkna42h82rd0a2jm-ruby-qed-2.9.2.drv /tmp/guix-tests/store/mdf6snihkfzn07hij3gzdl75byyq7g26-qed-2.9.2.gem.drv /tmp/guix-tests/store/xpjys77v688za59rq74365gcz9b6165x-ruby-brass-1.2.1.drv /tmp/guix-tests/store/p57z1zfsn8375vvnbv6wac6pk0aqqll7-brass-1.2.1.gem.drv /tmp/guix-tests/store/666sfqprgla548313har51jgxb1nkl41-ruby-rubytest-cli-0.2.0.drv /tmp/guix-tests/store/k6cslw21a7ky2csry89rrxqgpafqjc96-rubytest-cli-0.2.0.gem.drv /tmp/guix-tests/store/v006bla1gycdazbardcwf90a199ga2a1-ruby-rubytest-0.8.1.drv /tmp/guix-tests/store/ydai14fnf0rvraa1cgvbljk0jnpsl34j-rubytest-0.8.1.gem.drv /tmp/guix-tests/store/b7p0fnzmzi5g8hhvv6xr1rqah1rqxqwf-ruby-ae-1.8.2.drv /tmp/guix-tests/store/i7whphpla9n9vr023921lxydqp1w41q7-ruby-ae-1.8.2-checkout.drv /tmp/guix-tests/store/g9s2zwlk92qqbcbhfa8qz9dwv6lcq0q4-hashery-2.1.2.gem.drv /tmp/guix-tests/store/ym2p67izjv1wndzr1al1549hs1z59sd9-ruby-lemon-0.9.1.drv /tmp/guix-tests/store/gi9y18cf0s5s7rkhmcimz9h1zbhxbzpj-lemon-0.9.1.gem.drv /tmp/guix-tests/store/6jf9piyjl2g69hzgwwx98rqhrb3skzby-ruby-ttfunk-1.6.2.1.drv /tmp/guix-tests/store/9l0dn2bav9y4sdfd9dlfgc244vdf080j-ruby-ttfunk-1.6.2.1-checkout.drv /tmp/guix-tests/store/70kzl6ck5djxzxh08y7l5bhz4zqh7j26-ruby-rc4-0.1.5.drv /tmp/guix-tests/store/h44lkkx6wijqns6i24hqi4w7dm4r66aq-ruby-rc4-0.1.5.gem.drv /tmp/guix-tests/store/al5fkg0j9cb096jpjycbhxkyf7lg26pv-ruby-pdf-inspector-1.3.0-1.00ee4c9.drv /tmp/guix-tests/store/9f5x4ch0x6xh7l1mgfq36ydfgwxbvbg2-ruby-pdf-inspector-1.3.0-1.00ee4c9-checkout.drv /tmp/guix-tests/store/dc8fb3shhj7vzsd2yw4sqanfg0p02pr0-ruby-pdf-reader-2.4.0.drv /tmp/guix-tests/store/130v7g2jnr7dayq3j4j4xxdynz498mkr-ruby-cane-3.0.0.drv /tmp/guix-tests/store/bcd0sfpbas9zx2z48pfaqjn5ql68mfzp-cane-3.0.0.gem.drv /tmp/guix-tests/store/qr7h6nghdpjy9ksxaki61kvw81365sij-ruby-parallel-1.21.0.drv /tmp/guix-tests/store/0qcc4a1d3vnyyiiskwfv1p37p3y1hnrf-ruby-activemodel-6.1.3.drv /tmp/guix-tests/store/6jgjn7ajkd7viapj749g2vzwf7pd833k-activemodel-6.1.3.gem.drv /tmp/guix-tests/store/117r31vqiirn2rv73m3pwj6q0q4m8z7q-ruby-rspec-rerun-1.1.0.drv /tmp/guix-tests/store/0npbj0hk2y3w8mzvr549f1a7wc4xypk9-rspec-rerun-1.1.0.gem.drv /tmp/guix-tests/store/6fsgm0g0g8jk9cccj2blfx42fy9gh55h-ruby-mysql2-0.5.2.drv /tmp/guix-tests/store/f51ikkqcdjdax4s85kc97x9i961g40sz-ruby-mysql2-0.5.2-checkout.drv /tmp/guix-tests/store/l8hdza408kkagfhh18kanff5qqd0zsm2-ruby-parallel-1.21.0-checkout.drv /tmp/guix-tests/store/pz7ypifip13hxgyrglnj8w052q52znaq-ruby-arel-9.0.0.drv /tmp/guix-tests/store/cn34zl7v5jvbmi6c8r2j299rvsf4gy99-arel-9.0.0.gem.drv /tmp/guix-tests/store/v70y4lhwznp95iya704909m3jc8ycf3c-lsof-4.94.0.drv /tmp/guix-tests/store/9a1r4a89q64mkad3sb4jcxydvmxaqlxa-lsof-4.94.0-checkout.drv /tmp/guix-tests/store/d6khsi3qjydiqphrpy9xm5kaiafh578r-lsof-4.94.0-checkout.drv /tmp/guix-tests/store/z2v6b1wn5v968wvcwh35gv17dagafklr-ruby-activerecord-6.1.3.drv /tmp/guix-tests/store/3zz2gvjnjk3725i04z64mi5fdhw2jy28-activerecord-6.1.3.gem.drv /tmp/guix-tests/store/drlw0knmnxkmlj32xf4c7pxxzs5yc6ix-ruby-pdf-reader-2.4.0-checkout.drv /tmp/guix-tests/store/gkixgzzsvq99xb5i58kxcbxzp5dabd2v-ruby-morecane-0.2.0.drv /tmp/guix-tests/store/x98k79pjyrwi78xbhh17fxpqsq8qk2lg-morecane-0.2.0.gem.drv /tmp/guix-tests/store/l57k39caqxl4ig8xln18z1q67h2f5pzv-ruby-ascii85-1.0.3.drv /tmp/guix-tests/store/whdhzci53rl9bpv4awdmqncp5l2n1hgk-Ascii85-1.0.3.gem.drv /tmp/guix-tests/store/hwlci2qadlqvym3mp50ya0jw0hy4irrv-kramdown-2.3.1.gem.drv /tmp/guix-tests/store/miqj0j6mpqxrrdggk1qh2q2ldbqvxfq6-ruby-pdf-core-0.8.1.drv /tmp/guix-tests/store/i1qrqgd97mwlm539k8yfqc2b319jk7k1-pdf-core-0.8.1.gem.drv /tmp/guix-tests/store/q8n4m7va674ncm7vrvmqrijpfhxn0cyd-ruby-prawn-2.2.2-1.d980247.drv /tmp/guix-tests/store/gn2cdgm98p2h75j9kby1v99dpsrrnnv1-ruby-prawn-2.2.2-1.d980247-checkout.drv /tmp/guix-tests/store/nybn91vlww1v687r9mmylrzwnm1bk8fr-ruby-prawn-manual-builder-0.3.1.drv /tmp/guix-tests/store/vdl6dp97y8fqj3c5whm3ygi1qr8nmx8l-prawn-manual_builder-0.3.1.gem.drv /tmp/guix-tests/store/s7l2pq5y7lgg74686l2yzqd6nw30n3pk-ruby-prawn-table-0.2.2.drv /tmp/guix-tests/store/lf0xdsqas2yz3wm2765p9lxz4m3d4w25-prawn-table-0.2.2.gem.drv /tmp/guix-tests/store/p8nfnc4np9xbavy053b179b8cyqmfbmf-ruby-bacon-1.2.0.drv /tmp/guix-tests/store/83ms1n1ps34g6dwpc115x4w6gc4qmdd7-bacon-1.2.0.gem.drv /tmp/guix-tests/store/vdgw321mxmhqj08fz0c6wyv3ymzy3lrx-ruby-bacon-colored-output-1.1.1.drv /tmp/guix-tests/store/bnkhh7840r791v396c4lybq3yh0rmihr-bacon-colored_output-1.1.1.gem.drv /tmp/guix-tests/store/vklv44jl4mlg1k7pbgyxdrl6z6gry8z2-ruby-racc-1.5.2.drv /tmp/guix-tests/store/d75yalanpx3ahfdm0rcc9c8grcdvc4vg-racc-1.5.2.gem.drv /tmp/guix-tests/store/zinh68yk28gjlrnas61pzaahdzk5qmmq-ruby-json-pure-2.3.1.drv /tmp/guix-tests/store/c4dn8iy88pnm8339aznlq1nbm46pxqqj-json_pure-2.3.1.gem.drv /tmp/guix-tests/store/bx64lyx0a70y8nrrmprmzvkw9rlp6ifp-ruby-webmock-3.11.2.drv /tmp/guix-tests/store/45a4irglhg55ia3kmbq0z07kxcpan35k-webmock-3.11.2.gem.drv /tmp/guix-tests/store/c4drwfbpqzpvhyq0w44j3hf21isx174c-ruby-rainbow-3.0.0.drv /tmp/guix-tests/store/7iq31r3v62md57sfvpxnzdjvx84bwygq-rainbow-3.0.0.gem.drv /tmp/guix-tests/store/cb0hmmlcrp7dr0kc999npxm692xdxqa9-ruby-unicode-display-width-1.6.0.drv /tmp/guix-tests/store/lfjjy555s4i5z6a52myy8q3fr3qdxmk1-unicode-display_width-1.6.0.gem.drv /tmp/guix-tests/store/gldidddmj314hkdxbsxxj59zzqrmafli-ruby-rubocop-ast-1.4.1.drv /tmp/guix-tests/store/hrffa6gb1jcqpw8zg8hw6d8qay54i995-ruby-rake-13.0.1.drv /tmp/guix-tests/store/kv5z6cr4zyk0qiwx4kvyvxmbn3j340i3-rake-13.0.1.gem.drv /tmp/guix-tests/store/ivkwnrwdilyhl6xb5nxdhlc6v9rj6n7j-ruby-rubocop-ast-1.4.1-checkout.drv /tmp/guix-tests/store/w5sl68kz8b5ms4gjbhb0vx5sw7dfqqvj-ruby-oedipus-lex-2.5.2.drv /tmp/guix-tests/store/7rm0044kprrmwliprl9z8j26dv19mr6y-oedipus_lex-2.5.2.gem.drv /tmp/guix-tests/store/h6ylwhrd6z6vznmskxzq11wix2wrq4nx-ruby-rubocop-1.10.0.drv /tmp/guix-tests/store/kf8jdmww66ghf9fmqnvdsa3jq2g22i8k-ruby-regexp-parser-2.0.0.drv /tmp/guix-tests/store/fydm9h2hsixpdhcps0zl9yjzkylvmp4p-ruby-regexp-property-values-1.0.0-1.03007a6.drv /tmp/guix-tests/store/2n3c02ln0iwl8sv9a3vzldpvgyd1agf7-ruby-regexp-property-values-1.0.0-1.03007a6-checkout.drv /tmp/guix-tests/store/67v0kql10pj4cvxrp9q4klaf48j55xw8-ruby-character-set-1.4.0.drv /tmp/guix-tests/store/6gxam9q0wmdbqn4kkqmxdsfjrwsaq4jl-character_set-1.4.0.gem.drv /tmp/guix-tests/store/hmnaw048bffhiwb3dm7a144jxph9g37b-ruby-range-compressor-1.0.0.drv /tmp/guix-tests/store/h913hb1kp56j3z2r6zvknb9g4b57afsj-ruby-range-compressor-1.0.0-checkout.drv /tmp/guix-tests/store/snzvfjsla2y4p4h02rlgk2hzashr42lf-ruby-regexp-parser-2.0.0-checkout.drv /tmp/guix-tests/store/z66grpmkmsdlil5pvqqpkwrjs2x57cx0-ruby-test-queue-0.4.2.drv /tmp/guix-tests/store/rk8mc4jaihp7cwacvpawgw71fq692jha-test-queue-0.4.2.gem.drv /tmp/guix-tests/store/8rz2bs0pqa31ci5mk4y71kynf1586dzr-ruby-octokit-4.18.0.drv /tmp/guix-tests/store/inh5vnpi9774m3zk3kw7mbrbilcqvw6j-ruby-faraday-0.15.4.drv /tmp/guix-tests/store/7qnf9fkzrwp3i2c3ygq1wwll4a6xsmn4-faraday-0.15.4.gem.drv /tmp/guix-tests/store/s2bps14a75dz773f3nmlk61digryysqp-ruby-multipart-post-2.0.0.drv /tmp/guix-tests/store/6kqnwa1j7vpc8wcdhsh6v8g4fy3ajv43-multipart-post-2.0.0.gem.drv /tmp/guix-tests/store/sig7brrhmgl9ldvahwfhvwdkmr3v7939-octokit-4.18.0.gem.drv /tmp/guix-tests/store/wq34lfyywzxd1bah1p3x9dsnzk455grq-ruby-sawyer-0.8.2.drv /tmp/guix-tests/store/c5b3xikja96qcdwks44wgi038b70p98i-sawyer-0.8.2.gem.drv /tmp/guix-tests/store/cx6w555qhxnix1949qm06aw6jr0rj76p-ruby-byebug-11.1.3-checkout.drv /tmp/guix-tests/store/m9r6521w8nphnm954gzqkfrn9gzlsixp-ruby-byebug-11.1.3-checkout.drv /tmp/guix-tests/store/hpz8ihw4hri3qvix3ip81sklvgsjacd5-ruby-chandler-0.9.0.drv /tmp/guix-tests/store/sp6jh0yc8zryd4fk3npk5iif8qqzg93s-chandler-0.9.0.gem.drv /tmp/guix-tests/store/w3zk1g2d4fgr6ds783asfq7i917sgf2z-ruby-hydra-0.0-0.5abfa37-checkout.drv /tmp/guix-tests/store/jl12gb4nqy3cmjsj0arwf4nhvzd656x2-texlive-hyphen-estonian-59745-checkout.drv /tmp/guix-tests/store/0ncky4a88bc7j01wyhy0j32i0lrdhidw-texlive-unicode-data-59745.drv /tmp/guix-tests/store/ncm6sgavvw9ckplgaiiyaizyy0zd75mq-texlive-unicode-data-59745-checkout.drv /tmp/guix-tests/store/10a44g0ghdj0y4ngyf817hw47yiiwc4l-texlive-latex-atveryend-59745.drv /tmp/guix-tests/store/1cnn0llrg6cki3nlxlawmksvwkrwsbqr-texlive-latex-atveryend-59745-checkout.drv /tmp/guix-tests/store/1iamypgxriqxg5xq55vr7mbyhp03m6lm-texlive-hyphen-sanskrit-59745.drv /tmp/guix-tests/store/sy94jbrhp0dkhiyl1rr55p4zafszvy1c-texlive-hyphen-sanskrit-59745-checkout.drv /tmp/guix-tests/store/1wfirzrwg6y8mivajvk68ac5jzd92qpx-texlive-hyphen-bulgarian-59745.drv /tmp/guix-tests/store/gyw0phsla1ysy17scpdrnvn2ps994fdh-texlive-hyphen-bulgarian-59745-checkout.drv /tmp/guix-tests/store/1y66pp9db31aabf24p3w2v3bs3np7b73-texlive-hyphen-friulan-59745.drv /tmp/guix-tests/store/bdq2spc4vyxwgic5j6dqahvki5q5rj8a-texlive-hyphen-friulan-59745-checkout.drv /tmp/guix-tests/store/1z0q2n6c2h36w79q110ppmz8hzqazv4l-texlive-latex-fancyvrb-59745.drv /tmp/guix-tests/store/37ms0ffrqlwqbamwiynin86wddyk5pn4-texlive-latex-fancyvrb-59745-checkout.drv /tmp/guix-tests/store/2g38pi5rpz5pphbpk6mcbx5w31n6mws3-texlive-tetex-59745.drv /tmp/guix-tests/store/q825bwi5hy15mzqw8s0kh0qnidjp9gqb-texlive-tetex-59745-checkout.drv /tmp/guix-tests/store/2rpqnivd9vx2klsmvall8n7lqlx9xhi7-texlive-generic-bigintcalc-59745.drv /tmp/guix-tests/store/552f3dw1jbhpms825zcdwc5jnghssjig-texlive-generic-bigintcalc-59745-checkout.drv /tmp/guix-tests/store/9y41z5xbh13619kd0b73q95r0myidfr5-texlive-generic-ltxcmds-59745.drv /tmp/guix-tests/store/x2n9zrpcfyj97rdbp2n0n3v91jclv0ni-texlive-generic-ltxcmds-59745-checkout.drv /tmp/guix-tests/store/lcyim7isxyggdkp7bjzbkami1ys08xgy-texlive-latex-pdftexcmds-59745.drv /tmp/guix-tests/store/f44sh4fiivjrra5j52r4yqgk6prn0l38-texlive-latex-pdftexcmds-59745-checkout.drv /tmp/guix-tests/store/2vgkkrrrds2pm1q7gplan2ppl20973hq-texlive-generic-intcalc-59745.drv /tmp/guix-tests/store/q73qxphsnqg3zbjfzgrv5fbavdi2m5w7-texlive-generic-intcalc-59745-checkout.drv /tmp/guix-tests/store/36kjzj0yyiml211bf7zv40s8bvml0lps-texlive-latex-l3kernel-59745.drv /tmp/guix-tests/store/c7drci7hj9mvrvav2yr42r1ipxa52s9r-texlive-latex-l3kernel-59745-checkout.drv /tmp/guix-tests/store/vc53kc9vk5a5wz91dbj07m3ag1x7mzfy-module-import-compiled.drv /tmp/guix-tests/store/z8a7dipy72cdk7fdabhm85swf7v6939l-texlive-docstrip-59745.drv /tmp/guix-tests/store/vs2p5rc2mzyadd4591qqnlcbrz7621zi-texlive-docstrip-59745-checkout.drv /tmp/guix-tests/store/38lfj5p4bj98azs0nml9an6wrcg4f5v0-texlive-latex-hycolor-59745.drv /tmp/guix-tests/store/vifi4s234y4b92ygxbwidhdsq5w0ddxq-texlive-latex-hycolor-59745-checkout.drv /tmp/guix-tests/store/39fpfyjrrnki45b9y034pifmwnfzy8ab-texlive-latex-auxhook-59745.drv /tmp/guix-tests/store/q53x3jsbj0ikb4xssqx5yf1ii9r6j3xq-texlive-latex-auxhook-59745-checkout.drv /tmp/guix-tests/store/3g0vv1218kg4fv5bwbyjsai4xfziyb1k-texlive-hyphen-danish-59745.drv /tmp/guix-tests/store/5l6v1ib2x5c7hrjw2ihqyj2lc7lgzcf6-texlive-hyphen-danish-59745-checkout.drv /tmp/guix-tests/store/3p1dvk67gd7cwhnj37vcag8pa7h2qn3q-texlive-latex-overpic-59745.drv /tmp/guix-tests/store/alj8rf2akh9nccdzh454k64fq60wvqxr-texlive-latex-overpic-59745-checkout.drv /tmp/guix-tests/store/3r3hanj0m3d1s6n63ipqb2r3bi5514n0-texlive-hyphen-coptic-59745.drv /tmp/guix-tests/store/464mjwky86xwhi76nvgjvrk790bm03f4-texlive-hyphen-coptic-59745-checkout.drv /tmp/guix-tests/store/3wkrlp79j5xvswfvcn0glsl457s5gd2s-texlive-latex-listings-59745.drv /tmp/guix-tests/store/49xnsh42bh4zq1581c4cbcq9ricr4sw9-texlive-hyphen-belarusian-59745.drv /tmp/guix-tests/store/2npissy680lrkyx5f9mf1pm5qrcn64gp-texlive-hyphen-belarusian-59745-checkout.drv /tmp/guix-tests/store/4plkwy1dl6cffrxb69ki6cs3xiw9fykm-texlive-hyphen-schoolfinnish-59745.drv /tmp/guix-tests/store/ibr57wq5isx3b1pxcgcgvj88cww6yk1k-texlive-hyphen-schoolfinnish-59745-checkout.drv /tmp/guix-tests/store/4w1avzc1d7cm6aj6issafxr0s977x1m8-texlive-latex-base-59745.drv /tmp/guix-tests/store/5g0vlk8dfd2zwmq9giwnq81423lp6lgf-texlive-hyphen-galician-59745.drv /tmp/guix-tests/store/3492r0zncj65v4dafadgsb06l9ix3hz8-texlive-hyphen-galician-59745-checkout.drv /tmp/guix-tests/store/5ysx5qff3bdq37h9fhr9l57kywkrmpml-texlive-hyphen-turkish-59745.drv /tmp/guix-tests/store/8fjfmqzd9csmjpvzgnh9fpg9qkbbxw5z-texlive-hyphen-turkish-59745-checkout.drv /tmp/guix-tests/store/6d22kqj1554wkjw6pb106ahsay6r719j-texlive-hyphen-icelandic-59745.drv /tmp/guix-tests/store/g9c7jpazfyk3338np4z9ky09n30sbj37-texlive-hyphen-icelandic-59745-checkout.drv /tmp/guix-tests/store/6zsbv7bp7p3vm7xbjhbasb2rfrb8ia49-texlive-hyphen-esperanto-59745.drv /tmp/guix-tests/store/gryga1fq59ac9j615kz6fx0jc4klg8g4-texlive-hyphen-esperanto-59745-checkout.drv /tmp/guix-tests/store/742ahq9dhlvd58zr8xgwzd4njzqiw1xx-texlive-hyphen-chinese-59745.drv /tmp/guix-tests/store/ny7pk67ra6c49z9rl8mlca36hc2ifldn-texlive-hyphen-chinese-59745-checkout.drv /tmp/guix-tests/store/7nb1jwansghqfbzrxf7i1ll9w5pw90j8-texlive-knuth-lib-59745.drv /tmp/guix-tests/store/v48923xb43k102p426ylkzw7xl62zipz-texlive-knuth-lib-59745-checkout.drv /tmp/guix-tests/store/83537fhilhwdk776x1y3p89dcrgf5x1s-texlive-latexconfig-59745.drv /tmp/guix-tests/store/h43kmlj78p58amdh3vsmqwgfyqlfmxx5-texlive-latexconfig-59745-checkout.drv /tmp/guix-tests/store/8a74cgxlhcigfzg1jn6ddypdgyyi2aqs-texlive-hyph-utf8-59745.drv /tmp/guix-tests/store/dkfvvh7wfq9sps3mq4x7hmxh6akss380-texlive-hyph-utf8-59745-checkout.drv /tmp/guix-tests/store/m3g1c68mz34ia78q7bwy0g5hxa049181-texlive-tex-plain-59745.drv /tmp/guix-tests/store/kna5gxzafwkyc6qhbw95f8b8yprv7ch7-texlive-tex-plain-59745-checkout.drv /tmp/guix-tests/store/qhjf8mjb2cq1q49g8svv1is5zgdl8fa9-texlive-hyphen-base-59745.drv /tmp/guix-tests/store/p820yvcy0mdfr6rcn4q96dlzcm9p5nx9-texlive-hyphen-base-59745-checkout.drv /tmp/guix-tests/store/8idg356cww7yycj0i2q110wybldj4hvs-texlive-hyphen-catalan-59745.drv /tmp/guix-tests/store/80q61pr0c4njrmd9jlr6xxg2bn8cxqxa-texlive-hyphen-catalan-59745-checkout.drv /tmp/guix-tests/store/8mbgw4fal7my6qzqkf5k1si2h4ylvx0z-texlive-hyphen-romanian-59745.drv /tmp/guix-tests/store/n4qksi18yqpx33b1zbmbjmhdzmdsrzd9-texlive-hyphen-romanian-59745-checkout.drv /tmp/guix-tests/store/8sy4vh6xmz8gq4qwryyldmilgjk1k6z8-texlive-hyphen-dutch-59745.drv /tmp/guix-tests/store/akr925l962nkyjvwk2r14fmgbslk62db-texlive-hyphen-dutch-59745-checkout.drv /tmp/guix-tests/store/8vprd021cvzcw0biqwzblz6ydycgbr2r-texlive-hyphen-occitan-59745.drv /tmp/guix-tests/store/f0yndj8vi0iw6jkc7j7ry75avlfxi6h1-texlive-hyphen-occitan-59745-checkout.drv /tmp/guix-tests/store/929q8hsjaqchhkvm8bgg3mqicc6ma1xj-texlive-hyphen-welsh-59745.drv /tmp/guix-tests/store/yn4mdhybwnga5djb0wfz8hxlxl7m6adj-texlive-hyphen-welsh-59745-checkout.drv /tmp/guix-tests/store/999rc8dva80nqbv63ji6b2ir2dwygj42-texlive-ukrhyph-59745.drv /tmp/guix-tests/store/jh0r74c2ydjv1ji06vdgayq2b3wq636j-texlive-ukrhyph-59745-checkout.drv /tmp/guix-tests/store/9f5x3rmlrz5r6hj01d4wnkx9cpczm9hw-texlive-hyphen-lithuanian-59745.drv /tmp/guix-tests/store/1x31y4il4agkmabznvb80pizxk567vgf-texlive-hyphen-lithuanian-59745-checkout.drv /tmp/guix-tests/store/a07j3pg0jnmcq29b2zdi74y36lcqrpmx-texlive-hyphen-spanish-59745.drv /tmp/guix-tests/store/3nhal4xx0zb3phb05j51v9s4037yvf7i-texlive-hyphen-spanish-59745-checkout.drv /tmp/guix-tests/store/axskv7b2blf6gpp3mxgkdm5z0rdvyysy-texlive-hyphen-kurmanji-59745.drv /tmp/guix-tests/store/ns5kjzmgrvwgfli70ndvw52i1v4gbdrx-texlive-hyphen-kurmanji-59745-checkout.drv /tmp/guix-tests/store/bg1yqdabykjza0pmjnxihc1w4pcvqj1x-texlive-hyphen-finnish-59745.drv /tmp/guix-tests/store/yb98cywdaac9br29ircamag7jvxa51r4-texlive-hyphen-finnish-59745-checkout.drv /tmp/guix-tests/store/c2hdz19w4c2fccqshw93mgdwak8vifyc-texlive-dehyph-exptl-59745.drv /tmp/guix-tests/store/y92mbkjmia5006bzxm6nj5nbmvz5mb9k-texlive-dehyph-exptl-59745-checkout.drv /tmp/guix-tests/store/cx39d2gv230hr5bqwzap712fd6lamvi9-texlive-hyphen-irish-59745.drv /tmp/guix-tests/store/sq2aydqrnk8bn5s5dlagip02kzif8hl3-texlive-hyphen-irish-59745-checkout.drv /tmp/guix-tests/store/dd043f39cl5aq7vivd0lzi9s915rn1ah-texlive-hyphen-greek-59745.drv /tmp/guix-tests/store/02fiq2igi1dfbh2qk44aaz0l7x0qqdrn-texlive-hyphen-greek-59745-checkout.drv /tmp/guix-tests/store/ddv5n1cxhbqhfsbba93vdiqy31wrv573-texlive-hyphen-georgian-59745.drv /tmp/guix-tests/store/sfm2c8nvc97ln5z4bqzdlijh81x2yah5-texlive-hyphen-georgian-59745-checkout.drv /tmp/guix-tests/store/df45idg8zga0aqmm5z92drkk2gdrrc1n-texlive-ruhyphen-59745.drv /tmp/guix-tests/store/ix8fjhyr1rhdkx6b24gcq3zp4zjvfh6i-texlive-ruhyphen-59745-checkout.drv /tmp/guix-tests/store/djadrny81scy66qyvqlyy8zkxvf1p141-texlive-hyphen-ethiopic-59745.drv /tmp/guix-tests/store/mprim31imayp1i3ivriyq656f8b24l0w-texlive-hyphen-ethiopic-59745-checkout.drv /tmp/guix-tests/store/ds3wg006ma4i8cxh0xq57fxn1rbksf10-texlive-hyphen-macedonian-59745.drv /tmp/guix-tests/store/kz4yzljslf337rrxwi03ri0qkq96gmny-texlive-hyphen-macedonian-59745-checkout.drv /tmp/guix-tests/store/f2r618g0isy7chp1drxx0wpp4rn0bawz-texlive-hyphen-indonesian-59745.drv /tmp/guix-tests/store/crxzvn6wjl41fl8hb92zm0kkcf44dgpk-texlive-hyphen-indonesian-59745-checkout.drv /tmp/guix-tests/store/fp7bcfxm0hzgqrvm7hk9ys3pn8zzspqk-texlive-hyphen-croatian-59745.drv /tmp/guix-tests/store/3ddg5jv999qkcfy02dkbin1skwagcnd1-texlive-hyphen-croatian-59745-checkout.drv /tmp/guix-tests/store/fyf0sccjrvn7bp138d375w0l20irvi9s-texlive-hyphen-french-59745.drv /tmp/guix-tests/store/cj2w2qq0z8jn5109j4qai380siacwxzj-texlive-hyphen-french-59745-checkout.drv /tmp/guix-tests/store/ghcrjphx72kcdari83zjh2rnc6b3sn2g-texlive-hyphen-norwegian-59745.drv /tmp/guix-tests/store/3ayx9rm7z7q9816cybvqf16mm4sxcd3f-texlive-hyphen-norwegian-59745-checkout.drv /tmp/guix-tests/store/ghkhlh9ysffrix0bfk8x25hja56d3qi3-texlive-latex-base-59745-checkout.drv /tmp/guix-tests/store/gk8yk3fmyrqgax5cshsa2z1qjc2si30f-texlive-hyphen-armenian-59745.drv /tmp/guix-tests/store/8idp13i46xqsa2y329bhg55c30skwwwi-texlive-hyphen-armenian-59745-checkout.drv /tmp/guix-tests/store/h8d3rm2smi56s1zmwf0r2xc16r62n0vd-texlive-hyphen-russian-59745.drv /tmp/guix-tests/store/njhg4j0bavxamb5p1yxzi4p6a27igjac-texlive-hyphen-russian-59745-checkout.drv /tmp/guix-tests/store/hasasspbxkp6vv6iz7vdl69cjgi19xbd-texlive-hyphen-ukrainian-59745.drv /tmp/guix-tests/store/hnhp8gy8zkb6ryakcmrpkx1nd0k9a005-texlive-hyphen-ukrainian-59745-checkout.drv /tmp/guix-tests/store/hy3gzb1kvz6z0j7dlrp0lzs0kjpcz35v-texlive-hyphen-polish-59745.drv /tmp/guix-tests/store/a0bzaad262bn3dmbz0ns02g54jrl17c7-texlive-hyphen-polish-59745-checkout.drv /tmp/guix-tests/store/j0pamvcy8hkij2di7vxcwpxbd5lx0r70-texlive-luatexconfig-59745-checkout.drv /tmp/guix-tests/store/ja1vnz4ir21jgxwaxrs5vamsyz2vlqml-texlive-hyphen-slovenian-59745.drv /tmp/guix-tests/store/9v9vspd2bxkd52yhxwad4mn7h66sqwc2-texlive-hyphen-slovenian-59745-checkout.drv /tmp/guix-tests/store/jhaqhkv0b17x6p826v7adcj4bl11s807-texlive-hyphen-serbian-59745.drv /tmp/guix-tests/store/ksbc9bckv7d7hn5z9864hpcmb2pz2ibw-texlive-hyphen-serbian-59745-checkout.drv /tmp/guix-tests/store/jv2gbw9j0xcxq6giv6bkvsrac9v6lwhh-texlive-hyphen-turkmen-59745.drv /tmp/guix-tests/store/2qqv38v1brsl2yp5wmzzbsq5yj3q9yfl-texlive-hyphen-turkmen-59745-checkout.drv /tmp/guix-tests/store/jw6vqxl67y3s30lil0xyyc4wcpsympxq-texlive-hyphen-uppersorbian-59745.drv /tmp/guix-tests/store/3fvxfszmw0y354xs96x318s4y90yslmc-texlive-hyphen-uppersorbian-59745-checkout.drv /tmp/guix-tests/store/k4bzmzrf684q1iqrgjv7sijb431lsvha-texlive-hyphen-thai-59745.drv /tmp/guix-tests/store/586wy9h1s6n77xxilv2wc63rhpyqwwp5-texlive-hyphen-thai-59745-checkout.drv /tmp/guix-tests/store/lb7bgkdjc5fph5lb9g255cyxfh8cxhfs-texlive-hyphen-slovak-59745.drv /tmp/guix-tests/store/xij7xqzsdxc521w57f88nkhl1m6gh0l7-texlive-hyphen-slovak-59745-checkout.drv /tmp/guix-tests/store/li0cx82377r9kyimpcp84hva3bl6qvha-texlive-hyphen-basque-59745.drv /tmp/guix-tests/store/4bidv6ypjzbin0sdhiixchh08nhk6hcn-texlive-hyphen-basque-59745-checkout.drv /tmp/guix-tests/store/lsn3y9n94wm1vwrvf7yilmd7s4anzmij-texlive-hyphen-latvian-59745.drv /tmp/guix-tests/store/p2za8jrrh7kj9zryk4dhsy9vwpqfg156-texlive-hyphen-latvian-59745-checkout.drv /tmp/guix-tests/store/m62cvfvhagmh2ig8ghfri826w82sa65x-texlive-kpathsea-59745.drv /tmp/guix-tests/store/n9bjk653lwzvpp5lxm2cjgbzdxwjp0ag-texlive-kpathsea-59745-checkout.drv /tmp/guix-tests/store/mhwymi5cvm6d2j15ip3l9n82bfarw8vr-texlive-hyphen-portuguese-59745.drv /tmp/guix-tests/store/papkw00l80wwnjgk7gvh8psvnvh998r4-texlive-hyphen-portuguese-59745-checkout.drv /tmp/guix-tests/store/miscccyxnc706ypvlz8wk1gjjx2n3k86-texlive-hyphen-mongolian-59745.drv /tmp/guix-tests/store/fn7nahrkyj0vv4gbga98h85bay3gxis6-texlive-hyphen-mongolian-59745-checkout.drv /tmp/guix-tests/store/mzk1ri3cqdhi80f0zaknz211b8lzsziz-texlive-hyphen-latin-59745.drv /tmp/guix-tests/store/48dsri50w40265slbklmhrkhks2gl872-texlive-hyphen-latin-59745-checkout.drv /tmp/guix-tests/store/n4wsp8xk7vyb9gf8mvn9jxshf57cdyss-texlive-hyphen-romansh-59745.drv /tmp/guix-tests/store/qkc7lx2zaq67b0n9ajd4yrm57j2mbc4h-texlive-hyphen-romansh-59745-checkout.drv /tmp/guix-tests/store/n85zjwa5nl5gh7ycsmjyx37il4h0lx7i-texlive-hyphen-ancientgreek-59745.drv /tmp/guix-tests/store/22nvf7lmzhrv14r3hbpz1wjb45hlrna9-texlive-hyphen-ancientgreek-59745-checkout.drv /tmp/guix-tests/store/n9iyfz4z7ibr7ld4p03lmjppyk352ivr-texlive-etex-59745.drv /tmp/guix-tests/store/hh56yd2gzy02i8j0q56za2gsll9sq3xc-texlive-etex-59745-checkout.drv /tmp/guix-tests/store/p1i7apwxxl2rwlhk4sy8al45v4wa1i2p-texlive-hyphen-afrikaans-59745.drv /tmp/guix-tests/store/fb6f3viwwaswn7gmpaczyp8qkd5xwrx9-texlive-hyphen-afrikaans-59745-checkout.drv /tmp/guix-tests/store/p9cymrnkvppnk94k7740jrbm0qh0zgv4-texlive-latex-l3backend-59745.drv /tmp/guix-tests/store/7c6py2c9mmxxy9mpi10zlyng28gvqx5q-texlive-latex-l3backend-59745-checkout.drv /tmp/guix-tests/store/pqgi7123kdhip7f2l9bfv9dph1ff58av-texlive-hyphen-piedmontese-59745.drv /tmp/guix-tests/store/vy1hlcwibafrl9n293l4ib3k13qz74ij-texlive-hyphen-piedmontese-59745-checkout.drv /tmp/guix-tests/store/qfa04wr43v6v4yhsbxvd0fxgsil45l7g-texlive-hyphen-indic-59745.drv /tmp/guix-tests/store/9a5f2mb55hbcv2zg8fs68vbillc1sp2q-texlive-hyphen-indic-59745-checkout.drv /tmp/guix-tests/store/rry4brx0r00sx2zl7w2lv2jy2vpp92s8-texlive-hyphen-german-59745.drv /tmp/guix-tests/store/hfvszmswv2mnr5qiabm92596q01l356p-texlive-hyphen-german-59745-checkout.drv /tmp/guix-tests/store/s5xx7w0fvyfbk4w9nlki2gbrs2irjqwa-texlive-hyphen-hungarian-59745.drv /tmp/guix-tests/store/jqimih64y1yg3xhyr8xn7kr4f9wz3m5d-texlive-hyphen-hungarian-59745-checkout.drv /tmp/guix-tests/store/sf7i0m5y6d1g11cy5xzy611b9vbj2r5x-texlive-tex-ini-files-59745.drv /tmp/guix-tests/store/1i4hpj2w5i0wxjxdkdnqy24vgpp4cjjx-texlive-tex-ini-files-59745-checkout.drv /tmp/guix-tests/store/slzrv82lwgs696n018p82rc1zd8bin5l-texlive-hyphen-czech-59745.drv /tmp/guix-tests/store/wsdyr8v0xmy2i28wazgmmskhjgcpkkxi-texlive-hyphen-czech-59745-checkout.drv /tmp/guix-tests/store/svrfmg28nhzv9588avsyxkskgxa7c475-texlive-hyphen-interlingua-59745.drv /tmp/guix-tests/store/n86bbl111pzx2jvmabapz8mw1wgiwx4s-texlive-hyphen-interlingua-59745-checkout.drv /tmp/guix-tests/store/syfpc9hdn3xwiqw5rgwdxvb8vxnr7qgw-texlive-hyphen-swedish-59745.drv /tmp/guix-tests/store/dql4a1j3f2gsj4l6gr1ni30vd5rp0rxk-texlive-hyphen-swedish-59745-checkout.drv /tmp/guix-tests/store/vjgkk4pq4ydvlv4hs3ialgvc3vhd8saq-texlive-hyphen-english-59745.drv /tmp/guix-tests/store/sjwnh4z21ji6gsd878gprbkskw48d6yi-texlive-hyphen-english-59745-checkout.drv /tmp/guix-tests/store/w3wmibd8gdip3b93v9ymwnp2avby45nk-texlive-latex-l3packages-59745.drv /tmp/guix-tests/store/lsvls0xwfxd469cam3qbapng29sf82hy-texlive-latex-l3packages-59745-checkout.drv /tmp/guix-tests/store/wnmni0xkpvi3138yxgqadv2c8hyz8s30-texlive-hyphen-churchslavonic-59745.drv /tmp/guix-tests/store/94kq4bbs7vdvyzrcf60mv76xsbr63702-texlive-hyphen-churchslavonic-59745-checkout.drv /tmp/guix-tests/store/xhr6mnwbhm5xxh2sj98kjldjakf0izxm-texlive-hyphen-pali-59745.drv /tmp/guix-tests/store/bxaimb78y5m86alkphb7imkkr7i8fviy-texlive-hyphen-pali-59745-checkout.drv /tmp/guix-tests/store/xi99mdnd0kn5sym7jw9fmi26nf1m62v8-texlive-hyphen-italian-59745.drv /tmp/guix-tests/store/vd00r9bw4c28nxg2gyixjm229y7gc363-texlive-hyphen-italian-59745-checkout.drv /tmp/guix-tests/store/5cjjbb3ifnpdxavqafyi1dayqzq30w12-texlive-latex-listings-59745-checkout.drv /tmp/guix-tests/store/3xmrqgagh2qld8il7qayx2rk0pa9var1-texlive-latex-titlesec-59745.drv /tmp/guix-tests/store/6lf7n45h6gmb16spb11hkv1hixbvmlzy-texlive-latex-titlesec-59745-checkout.drv /tmp/guix-tests/store/47n364957cizzh4y8ix19k2sv597vcyf-texlive-generic-gettitlestring-59745.drv /tmp/guix-tests/store/fy3mqqczka6wjwi2r01v415pvl3kb44z-texlive-generic-gettitlestring-59745-checkout.drv /tmp/guix-tests/store/51nlarl0j7w8xqpl0chcrh04ly6xcxfd-texlive-latex-fancybox-59745.drv /tmp/guix-tests/store/rikdpl9i6dg44lwilnf28n4pfw1lq2gv-texlive-latex-fancybox-59745-checkout.drv /tmp/guix-tests/store/57vk89arbn0d6fz18k98rrywib70n286-texlive-amsfonts-59745.drv /tmp/guix-tests/store/869gnf7dkmh42d7w3nz9sfmg89f18xlr-texlive-graphics-def-59745.drv /tmp/guix-tests/store/l7k0g05i15diz68wy4mblkngghwn95yg-texlive-graphics-def-59745-checkout.drv /tmp/guix-tests/store/yyrfidanv08ilxhv6qalxkml6ycx2zwk-texlive-latex-epstopdf-pkg-59745.drv /tmp/guix-tests/store/jxm5hpc3xw6y0xvy0367rzf7iw79rxkp-texlive-latex-epstopdf-pkg-59745-checkout.drv /tmp/guix-tests/store/b0r24iwj145b1g4wzfvna8pwibg1nl56-texlive-amscls-59745.drv /tmp/guix-tests/store/i7c76g8g1bkny6yw1v12ngnss4gxq4ig-texlive-amscls-59745-checkout.drv /tmp/guix-tests/store/c6x6r5mr1iwd8sadb7v4cjksn0s3hkgf-texlive-psnfss-59745.drv /tmp/guix-tests/store/lyx2gfx63g1sn2add80rc0id26z9g5gf-texlive-psnfss-59745-checkout.drv /tmp/guix-tests/store/fwjz5q37hvjwgi2pqz6xvml4kizg96rp-texlive-cm-super-59745.drv /tmp/guix-tests/store/59jk07z2vz5daw7lbwq9ijc9z3n8c5sh-texlive-cm-super-59745-checkout.drv /tmp/guix-tests/store/g4iyk5g22f7px23mdn7qgq3jbgba1hid-texlive-graphics-cfg-59745.drv /tmp/guix-tests/store/dss7yw2lb1cy31rlf7yjmcar9khznkip-texlive-graphics-cfg-59745-checkout.drv /tmp/guix-tests/store/h3b5iy9c337438qp5np19vwnvi3cf25l-texlive-latex-cyrillic-59745.drv /tmp/guix-tests/store/58rk3sa52bpkxn51i51k507liizwzvkp-texlive-latex-cyrillic-59745-checkout.drv /tmp/guix-tests/store/jmxxq0fx491z3b19vxh4xl04spzfk285-texlive-updmap.cfg-59745.drv /tmp/guix-tests/store/jxbkjb96z5zlsarw7gd00vxnwviqcz2k-texlive-latex-amsmath-59745.drv /tmp/guix-tests/store/wkm65g4vaipkyfb69fw6iqrh4gh27a29-texlive-latex-amsmath-59745-checkout.drv /tmp/guix-tests/store/kir5zzp8la3mdjkd8hv45xbili33i95i-texlive-fontinst-59745.drv /tmp/guix-tests/store/ds0vcppkczcmikg2vfx1a4md6d16r7h0-texlive-fontinst-59745-checkout.drv /tmp/guix-tests/store/lw8sqs2d3l0jjl41k3s7hldk9pqzw9yl-updmap.cfg.drv /tmp/guix-tests/store/mmfl11kl0l577nnbdvfipygc4n4h71jx-texlive-generic-babel-english-59745.drv /tmp/guix-tests/store/djm233j075lw09maa9r82pis3z3c53xx-texlive-generic-babel-english-59745-checkout.drv /tmp/guix-tests/store/r2plcggy8934fs32xd6bnfhkpivi2w8z-texlive-latex-tools-59745.drv /tmp/guix-tests/store/k2vapw1a30icpwmx4ib9v5bavr5ab218-texlive-latex-tools-59745-checkout.drv /tmp/guix-tests/store/v5b55nyibwmz8j0lmws3yrzgzabin7j0-texlive-babel-59745.drv /tmp/guix-tests/store/yj3bmhnqp68pa90ssnm7f6kbd2n2xd2v-texlive-babel-59745-checkout.drv /tmp/guix-tests/store/wk96qhxiypdcr5dy4jn5jgypr0wfrsp4-texlive-dvips-59745.drv /tmp/guix-tests/store/av6l4qjvmpmls89mz26rwgglf4w1cw7a-texlive-dvips-59745-checkout.drv /tmp/guix-tests/store/yxv34iypd2b0idfx18m7wy0wxrg4sycy-texlive-latex-graphics-59745.drv /tmp/guix-tests/store/4cpap8kb7f739csirf6mgl4yxpz63qb6-texlive-latex-graphics-59745-checkout.drv /tmp/guix-tests/store/zjrb58x7xfqf7arlmnlxwv2snqkgljrs-texlive-fontname-59745.drv /tmp/guix-tests/store/nqrbdyzxyvrrk2kgkr0qf5v1kvnp4ywb-texlive-fontname-59745-checkout.drv /tmp/guix-tests/store/sc06dgzi2mqs5mddqvxa4myy7n45gy9a-texlive-amsfonts-59745-checkout.drv /tmp/guix-tests/store/5r26vgjj1cmf406317px89kq43jw1baq-texlive-hyperref-59745.drv /tmp/guix-tests/store/84v5kgi34y7dsaxqwjf5bc33q037y1jz-texlive-generic-pdfescape-59745.drv /tmp/guix-tests/store/x2kh4lp5wxixq971sswc7q7jls5sd8gr-texlive-generic-pdfescape-59745-checkout.drv /tmp/guix-tests/store/88ywms5jm4jv9lb2prrwhi01qidgdfk4-texlive-hyperref-59745-checkout.drv /tmp/guix-tests/store/g1ifc9kcghrav5s0yj62il4d4si7fm47-texlive-generic-atbegshi-59745.drv /tmp/guix-tests/store/cya9fb6sqbpij9ww3viq1qg7g8lvnzss-texlive-generic-atbegshi-59745-checkout.drv /tmp/guix-tests/store/h1yb0kh5c9g6gxvxqm1s0bk87xy91nx7-texlive-latex-refcount-59745.drv /tmp/guix-tests/store/28vh8s32vjjnnx1gch0if3a39h2q46n2-texlive-latex-refcount-59745-checkout.drv /tmp/guix-tests/store/ixx3z3xaavqw70plj7cvr5gqf58kv9gz-texlive-generic-bitset-59745.drv /tmp/guix-tests/store/40ws55x9bbwmzb744mr02d7q0kclrybj-texlive-generic-bitset-59745-checkout.drv /tmp/guix-tests/store/jja6nshn7nascafwmikv42lznwnakxks-texlive-generic-kvsetkeys-59745.drv /tmp/guix-tests/store/0fdphls99dpyyimdw6dhvky7v86gvahz-texlive-generic-kvsetkeys-59745-checkout.drv /tmp/guix-tests/store/mw1x9fac2r319wvv9rffq6h28mfj1rcf-texlive-url-59745.drv /tmp/guix-tests/store/fkx7i2dr74dvaawrm323pqi6bbfx0np9-texlive-url-59745-checkout.drv /tmp/guix-tests/store/n5swg9k6i2nz69cg8pscqd26lbj36sf2-texlive-generic-kvdefinekeys-59745.drv /tmp/guix-tests/store/sp83swx4m9q1d7h5f1kp7cim9wsdn711-texlive-generic-kvdefinekeys-59745-checkout.drv /tmp/guix-tests/store/phc664sk9sbiqxl7qfm2947ixacy3yi0-texlive-latex-letltxmacro-59745.drv /tmp/guix-tests/store/r59cpc939ppshdz7fbwdc9m2kkvlfbx7-texlive-latex-letltxmacro-59745-checkout.drv /tmp/guix-tests/store/pxg43pyrmjn2yzn9y8cfyjd8l2kj5y3l-texlive-latex-kvoptions-59745.drv /tmp/guix-tests/store/k2j6lrnni83b04j1h2p4gdbvv2zafnxf-texlive-latex-kvoptions-59745-checkout.drv /tmp/guix-tests/store/q1va4096249nvqs6wvyplywjw30f5ki0-texlive-latex-rerunfilecheck-59745.drv /tmp/guix-tests/store/by8wfs6f6s177nw35wgxxjvqhwjwkzd5-texlive-latex-rerunfilecheck-59745-checkout.drv /tmp/guix-tests/store/zfard3vh41zqdrvfa4dka28fgcc4pmng-texlive-generic-uniquecounter-59745.drv /tmp/guix-tests/store/04fd2gbla04q2v6ksziql07zyvciys99-texlive-generic-uniquecounter-59745-checkout.drv /tmp/guix-tests/store/6p0gpdrdncs8980a5q1d8f229wb4vpfm-texlive-latex-subfigure-59745.drv /tmp/guix-tests/store/7n58zr4pqzd02jhqd2fgsj87m2ip1c40-texlive-latex-subfigure-59745-checkout.drv /tmp/guix-tests/store/7aqgvkm1wrnxsbsmbpcmd4rn9nnkgvxk-texlive-latex-fancyhdr-59745.drv /tmp/guix-tests/store/x55icf4yc3bl1aw4fprvddx9r6na1kl6-texlive-latex-fancyhdr-59745-checkout.drv /tmp/guix-tests/store/81l43lxn4gl693dpnm72lhnjm1jsgc71-inkscape-1.1.1.drv /tmp/guix-tests/store/0zf7i2fjqxlw6pmd0gvfyp1cj2gx5jnh-libsigc++-2.9.3.drv /tmp/guix-tests/store/9s6q4md79x4av5vbdisxg7jkwbldkg13-libsigc++-2.9.3.tar.xz.drv /tmp/guix-tests/store/ick5yqyfq4lkg9pmqrhhp3wkqdzyhdsx-mm-common-1.0.3.drv /tmp/guix-tests/store/fjmidvb43rzdyqhkrhc4rwvqmlfa1aan-mm-common-1.0.3.tar.xz.drv /tmp/guix-tests/store/33clhsbd69c4hlsmi29gg1k32jc69ljc-atkmm-2.28.1.drv /tmp/guix-tests/store/10jgiv65k8mwkh7w0xhbhanp1qsp974r-atkmm-2.28.1.tar.xz.drv /tmp/guix-tests/store/78q79qz8ch98x3swc04i0mr52j70lcc8-glibmm-2.64.5.drv /tmp/guix-tests/store/j1i6x1sapsaxpqvvk3cq94dmnvyx0ac4-glibmm-2.64.5.tar.xz.drv /tmp/guix-tests/store/z2hqfm6ml0rk166wx8v338jkr9g15i51-libsigc++-3.0.6.drv /tmp/guix-tests/store/na2gs48240w241yhc85rp55rln1ibwm3-libsigc++-3.0.6.tar.xz.drv /tmp/guix-tests/store/wp3wj8y9vyz07f3bm6xwvmdqcnhqhxcs-glibmm-2.68.0.drv /tmp/guix-tests/store/dr35md9s8gkv2sm2wa0qrhad8l689aav-glibmm-2.68.0.tar.xz.drv /tmp/guix-tests/store/3kp8ajqcmyy0sm6k8gm3cm2nhjswc0yh-cairomm-1.14.2.drv /tmp/guix-tests/store/6wr614wf28sr493rf8fpl04mril03pi7-cairomm-1.14.2.tar.xz.drv /tmp/guix-tests/store/3xi11l0ahwpi0pvyicmvk8jz222b17wp-libwpg-0.3.3.drv /tmp/guix-tests/store/7f5mgkchabaahj9pgziakpg0w43bvaxk-librevenge-0.0.4.drv /tmp/guix-tests/store/sj1j1n4av24xkvmmggl5f7mk5zd2x856-cppunit-1.15.1.drv /tmp/guix-tests/store/qn2ks28l0j2h3zda5374iw0jzqgbjvw6-cppunit-1.15.1.tar.gz.drv /tmp/guix-tests/store/z0h6j4wn0bl6j6mgx45f7jp00hgvpyaz-librevenge-0.0.4.tar.xz.drv /tmp/guix-tests/store/alb2hk702findb0swgwfa0cxp5pvk3j7-libwpd-0.10.3.drv /tmp/guix-tests/store/w6zxjycvlj25slhkgkbczzv14p4hajsv-libwpd-0.10.3.tar.xz.drv /tmp/guix-tests/store/s86zrdf590dnjx171bd5m8y2p3vi8v77-libwpg-0.3.3.tar.xz.drv /tmp/guix-tests/store/488nl6q7rgrx80m4i1cnmhwn42jznp23-gdl-minimal-3.34.0.drv /tmp/guix-tests/store/0fkacmbnvpciwndmw15kgb29zxmi500s-gnome-common-3.18.0.drv /tmp/guix-tests/store/nsfaiwhr2nrha4bds35lnrqxfvwwnwf4-gnome-common-3.18.0.tar.xz.drv /tmp/guix-tests/store/qqlvm2bsvasr6xigv385hqpxx9qdxv26-gdl-3.34.0-checkout.drv /tmp/guix-tests/store/bixpafc2h0kksdawn12w93ya372gay2j-gtkmm-3.24.5.drv /tmp/guix-tests/store/fmrf46w5yhfwixhjkbis2pnwc8sg0f49-meson-0.59.4.drv /tmp/guix-tests/store/i3ps43jc87jmdcljyy9zg8sbl2f6sjg2-meson-0.59.4.tar.xz.drv /tmp/guix-tests/store/adi03782zr66l30l8wr94si7nmm8sxkv-meson-0.59.4.tar.gz.drv /tmp/guix-tests/store/sc4s8viwr9rjxhnixwdg5my9cxiq8pii-pangomm-2.46.0.drv /tmp/guix-tests/store/94az8zdbiyhwgn8phbjvqlf5w8mrfc04-pangomm-2.46.0.tar.xz.drv /tmp/guix-tests/store/y2c4xfdi8ycx42kw7g855x14c3mda7m5-gtkmm-3.24.5.tar.xz.drv /tmp/guix-tests/store/d51a280zi4f4rvc1930v75hcbxg95kby-python-pyserial-3.5.drv /tmp/guix-tests/store/s7iqi6y576vfj4kbvrblyfn6l0f17lwr-pyserial-3.5.tar.gz.drv /tmp/guix-tests/store/h0d6j5a2gz5n5d6579blb4pyq0lak5b3-module-import-compiled.drv /tmp/guix-tests/store/jqvls4w99cx1yhh3csk3cr5vbrv51js5-lib2geom-1.1.drv /tmp/guix-tests/store/5llixsmzx8pgn3kz68hdqdd6wihfpysj-python-pycairo-1.20.0.drv /tmp/guix-tests/store/8adm6jz019sg0rlgr8bzz8njpknl587r-pycairo-1.20.0.tar.gz.drv /tmp/guix-tests/store/fkd3rn18ar9ikcgbk7y1ni9q7i7djqvc-lib2geom-1.1-checkout.drv /tmp/guix-tests/store/n4zpirl6xr5g2i84i2xvxvs0676mqsqn-module-import-compiled.drv /tmp/guix-tests/store/paq19mhg77pm5731kfz13rwd31038ihh-googletest-1.11.0.drv /tmp/guix-tests/store/nl68mc2pz8cfibxqrb1b5r0bzgibnvak-googletest-1.11.0-checkout.drv /tmp/guix-tests/store/vz95plc4nhvk6h5wv9n95wykcv2xvql6-gsl-2.7.drv /tmp/guix-tests/store/da0zaj0rfbmviy0cizxh7piv3cmrrr5z-gsl-2.7.tar.gz.drv /tmp/guix-tests/store/lyvanq8kglinkkx4vjzb5m7s6y0fmrah-python-numpy-1.20.3.drv /tmp/guix-tests/store/080zix5k1sg79sy3rz2haiqfi44l65xv-openblas-0.3.18.drv /tmp/guix-tests/store/7f7ms282j9zh1ilyy1wl6k7qsibxcg5z-gfortran-10.3.0.drv /tmp/guix-tests/store/1x5dx260g6h28n6az37hclpq9cdcgdfj-libstdc++-headers-10.3.0.drv /tmp/guix-tests/store/4bjmwzhm6q4fkfzr86bpckmmbjjxwr5n-libstdc++-10.3.0.drv /tmp/guix-tests/store/gxp7fnmlmcif375r9bwdj1r3ndcjqgaf-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/9jnsjis5r35yinyyawlc41hwb590gai6-isl-0.23.drv /tmp/guix-tests/store/wa4yvjq1svk7767z9c84pqpzs79ix10b-isl-0.23.tar.bz2.drv /tmp/guix-tests/store/fdx1lj479fbqnc0vfgb351gb0km6jkg8-mpc-1.2.1.drv /tmp/guix-tests/store/cs2xmi9m8nqja90i1iikm10f483wqm1x-openblas-0.3.18-checkout.drv /tmp/guix-tests/store/7f7ms282j9zh1ilyy1wl6k7qsibxcg5z-gfortran-10.3.0.drv /tmp/guix-tests/store/9db64pl12dz96ghzm3v4i8j0g1x98rah-python-cython-0.29.24.drv /tmp/guix-tests/store/g44in3p3lhq3gfcd40n19phhinpxx2lc-Cython-0.29.24.tar.gz.drv /tmp/guix-tests/store/9rxyw6i4zwg2w1xhykfrpr2blmv80srq-python-pytest-forked-1.3.0.drv /tmp/guix-tests/store/x423520n06q3xnjbd0i2gb3cg87wbg7v-python-pytest-forked-1.3.0-checkout.drv /tmp/guix-tests/store/bij7w0gcchm9rlazvcw9fk13x6z7a6p3-numpy-1.20.3.tar.gz.drv /tmp/guix-tests/store/ip2rvwmb41skrrb86xzwp9rsi1i2p29n-python-execnet-1.9.0.drv /tmp/guix-tests/store/3jkpgybhb10wkzdijvqsb29im1p2z323-execnet-1.9.0.tar.xz.drv /tmp/guix-tests/store/fm9hvbrkfxirwv5nhvc6ffdggajvviz2-execnet-1.9.0.tar.gz.drv /tmp/guix-tests/store/n0b54apfg5ljpk3ygl0nbs6vskm36h9d-python-pytest-xdist-2.1.0.drv /tmp/guix-tests/store/ki6m42q0jcb2ss91na9ckb1wncwv1r90-pytest-xdist-2.1.0.tar.xz.drv /tmp/guix-tests/store/n3zzp7vjbglnv5mivv2jhh0lfvfxqp5v-pytest-xdist-2.1.0.tar.gz.drv /tmp/guix-tests/store/r4a432vbfhilzbg00d59xd5nh0zvrkcp-libcdr-0.1.7.drv /tmp/guix-tests/store/wn0z2363a3w975197p7mnwphylh958xf-libcdr-0.1.7.tar.xz.drv /tmp/guix-tests/store/vf5q0gad0w0ll1y5lb8492056v816w8g-autotrace-0.40.0-20190624.59.drv /tmp/guix-tests/store/ac3wjif4f8z5bdxbz88ss121zd6vliq5-autotrace-0.40.0-20190624.59-checkout.drv /tmp/guix-tests/store/1gqabshydg70hkdraj6v05fn9nxz8hbl-autotrace-0.40.0-20190624.59-checkout.drv /tmp/guix-tests/store/k6lcv6pqnlm0gv5lrzgix9zminamr7a0-pstoedit-3.77.drv /tmp/guix-tests/store/2xv5is1j35lny7f1w38v9q160j69cdzj-pstoedit-3.77.tar.gz.drv /tmp/guix-tests/store/c3513whdiyi8vfwjbjsah8vx31yf79cg-plotutils-2.6.drv /tmp/guix-tests/store/m54iymc596lxggznmxwdwrzkh9aybfdc-plotutils-2.6.tar.xz.drv /tmp/guix-tests/store/9a42if7ax6ccn5adv5ayapg95bfr2jrf-plotutils-2.6.tar.gz.drv /tmp/guix-tests/store/vmqbvrrf51q3lmk5a1asbmd3k5ym27kw-inkscape-1.1.1.tar.xz.drv /tmp/guix-tests/store/rfn36qn2ifdmmv4mrcirz27a9g572hrp-inkscape-1.1.1.tar.xz.drv /tmp/guix-tests/store/xj9j10qj2sgcd8gy03y524dbh0ldmqpj-python-scour-0.38.2.drv /tmp/guix-tests/store/c65rphn2vc7h508v0k4q0c48sdw34c55-python-scour-0.38.2-checkout.drv /tmp/guix-tests/store/xvrzjz4wkryigmwd78mz9y0j52wawjva-gtkspell3-3.0.10.drv /tmp/guix-tests/store/s9lg9p1yi961ga708rkahh6ql9an6rf3-gtkspell3-3.0.10.tar.xz.drv /tmp/guix-tests/store/y3y3jx4wnzvngzpk8nc925hklfdyfqaw-enchant-2.2.15.drv /tmp/guix-tests/store/adxmrw7rkg0aavvqkd8k3xd4w8wc9d4f-unittest-cpp-2.0.0.drv /tmp/guix-tests/store/j2fvbalfzi53vwpagzjkxs12maaw45ff-unittest-cpp-2.0.0-checkout.drv /tmp/guix-tests/store/mgnsc1zilmbm8d1ip40nk038cw6dnp9x-enchant-2.2.15.tar.gz.drv /tmp/guix-tests/store/z3njc1ijvk1w64nd3j2cx3799i0613cn-libvisio-0.1.7.drv /tmp/guix-tests/store/2c16yi4divzvznhjgxqmxngrf0ysacrb-libvisio-0.1.7.tar.xz.drv /tmp/guix-tests/store/bwff5k48v4lwf3xq5c58bw0z4q768w98-texlive-latex-changebar-59745.drv /tmp/guix-tests/store/f451704ssqa5sg800dq5ffms1myy5x2z-texlive-latex-changebar-59745-checkout.drv /tmp/guix-tests/store/bwkb1xjk43phsz2jnfzhyzzbka6cxgvz-texlive-latex-jknapltx-59745.drv /tmp/guix-tests/store/qxswcdf7jinly2fjiqhhp9gz8h0j2cyk-texlive-latex-jknapltx-59745-checkout.drv /tmp/guix-tests/store/dnday04nlhbaignq1n9i2cz2ay9inr6d-texlive-latex-pdfpages-59745.drv /tmp/guix-tests/store/d9fvwzr58kln7f4hwx54qkzhjpmc8sk1-texlive-latex-pdfpages-59745-checkout.drv /tmp/guix-tests/store/fz273lyy4vbvxd933xzkaqd5lpll091r-imagemagick-6.9.11-48.drv /tmp/guix-tests/store/n45nscprsy97cyig2675rf6nc9hwqvaw-ImageMagick-6.9.11-48.tar.xz.drv /tmp/guix-tests/store/i2rbwxcvx8acac1ccrg38hbqjis155wv-texlive-latex-float-59745.drv /tmp/guix-tests/store/ckw4xlib46zh5igy7wnxz8sqg19jp2yy-texlive-latex-float-59745-checkout.drv /tmp/guix-tests/store/jp40zd4nv27x76a6l5ckwlyqxw22g8al-texlive-latex-anysize-59745.drv /tmp/guix-tests/store/9xhpan5abb9063yzm5vjhrc1a9in81lz-texlive-latex-anysize-59745-checkout.drv /tmp/guix-tests/store/jpvx7n5wsdffina7iy3sv3g3xl8b0kvm-texlive-latex-colortbl-59745.drv /tmp/guix-tests/store/s7xmakf85jxckzm37a64jack8il2kjna-texlive-latex-colortbl-59745-checkout.drv /tmp/guix-tests/store/mcjgksip4z6bknqn1ms3g918afsd21vq-texlive-latex-appendix-59745.drv /tmp/guix-tests/store/7qy05h4786r8vp3j9bv9gq2nd61z7gf6-texlive-latex-appendix-59745-checkout.drv /tmp/guix-tests/store/n708wzkj1kfqm5bqjmbam8lqq1na7qpg-texlive-wasysym-59745.drv /tmp/guix-tests/store/1ip8a4mbz7jjsa1cccqb3g773k44jwl5-texlive-wasysym-59745-checkout.drv /tmp/guix-tests/store/q9awysva9kl76ny3na5ylkvw4l1l6kv7-texlive-fonts-rsfs-59745.drv /tmp/guix-tests/store/f3qz8w0jc6i2jklkg01yjwbsls22v9s9-texlive-fonts-rsfs-59745-checkout.drv /tmp/guix-tests/store/qgylcxgqlhvf8g73dwy0i4vmg11kidc3-dblatex3-0.3.12.tar.bz2.drv /tmp/guix-tests/store/rk6v7vnkmzifbb7h6x6qqair57i97vfr-texlive-latex-bookmark-59745.drv /tmp/guix-tests/store/9h9pz97nfjva7dm7n96aqvh6mqdwzanl-texlive-latex-bookmark-59745-checkout.drv /tmp/guix-tests/store/ryanc4lpmzi419z0k5ykwglikrmigj2b-texlive-updmap.cfg-59745.drv /tmp/guix-tests/store/rz166f670ay1ipcm35y7x4s5nflbh6iq-texlive-latex-multirow-59745.drv /tmp/guix-tests/store/kkwimxs9jmyp06w25rriqas5pydnbzxg-texlive-latex-multirow-59745-checkout.drv /tmp/guix-tests/store/wr0qfr1a9wr2i42hckffqfg6h16wbx1w-texlive-stmaryrd-59745.drv /tmp/guix-tests/store/27slp2n4fgfgapipdsky4apsdc65c15k-texlive-stmaryrd-59745-checkout.drv /tmp/guix-tests/store/yn7g8z60zk090hp33rr7gkiswqbk8dfr-texlive-latex-footmisc-59745.drv /tmp/guix-tests/store/72xrg5d5hprn3cb1nlnf6bp4iasfsina-texlive-latex-footmisc-59745-checkout.drv /tmp/guix-tests/store/3jwr4x8hqigbnkxzjdmijz4d8g9c9vph-gtk-doc-1.33.2.tar.xz.drv /tmp/guix-tests/store/p0nghm08n1xy5w5qsf9srs89nsa00lfg-gtk-doc-1.33.2.tar.xz.drv /tmp/guix-tests/store/83509x1fmiq5x14p2v7yad681a53pr4l-python-traceback2-1.4.0.drv /tmp/guix-tests/store/0ndy7lgjx0qgj83f4pd11y68gacdzw89-traceback2-1.4.0.tar.gz.drv /tmp/guix-tests/store/9nf2dy3q4fsnibkmr6zngxy3d39ygcr9-python-linecache2-1.0.0.drv /tmp/guix-tests/store/hnwqxhrkljvsaa7hsd662i292j2y07b4-linecache2-1.0.0.tar.gz.drv /tmp/guix-tests/store/z45y4hndg2pvqh894ijsadxfgjnqk9h8-python-pbr-minimal-5.5.1.drv /tmp/guix-tests/store/65jri73rpklmv2293kwcyanjx6q9yrkj-pbr-5.5.1.tar.gz.drv /tmp/guix-tests/store/g385qsx8fj3s7qfr9k699sh87b1ysvvk-source-highlight-3.1.9.drv /tmp/guix-tests/store/1d8l3fah02iw660x9k43925l6labimw9-source-highlight-3.1.9.tar.gz.drv /tmp/guix-tests/store/jkmhrb17gz351yprx01mz6mwd66cizjj-python-anytree-2.8.0.drv /tmp/guix-tests/store/lk5qln1mh7n2zdnvwj1lpm4sd3xb7z8g-anytree-2.8.0.tar.gz.drv /tmp/guix-tests/store/mjxrp973ximc3dlkaki5ysa33cbjkyvg-python-unittest2-1.1.0.drv /tmp/guix-tests/store/cm8s27mdqnc4i43p5qfy8d1fnnqn0whx-unittest2-1.1.0.tar.xz.drv /tmp/guix-tests/store/2slskfrnbl4sqj5jbd4xz5kn3wgxa4y1-unittest2-1.1.0.tar.gz.drv /tmp/guix-tests/store/v90k8nayfdd8rd2l4rh8c1acnzbm04ya-python-parameterized-0.7.4.drv /tmp/guix-tests/store/1ff34jyzygsfx2gqgyhmz5b4wfmi19cd-parameterized-0.7.4.tar.gz.drv /tmp/guix-tests/store/52i08rf16kmpyfxhib1526bgabrn28c8-libogg-1.3.5.drv /tmp/guix-tests/store/16qwdhhkzlkpd8wvsxv0xzqrvg8yc814-libogg-1.3.5.tar.xz.drv /tmp/guix-tests/store/53y6fad0d59jmnkcz544wbq38fjip7zk-libsndfile-1.0.30.drv /tmp/guix-tests/store/lqclr88wcxhj6ijkaqc3sdbfl3sz7ch2-flac-1.3.3.drv /tmp/guix-tests/store/zyanng5z4ksq329x4shlgdr6j5rh8ygv-flac-1.3.3.tar.xz.drv /tmp/guix-tests/store/pkz609irqk1d0lxkzd8krn9z9vpp794b-libsndfile-1.0.30.tar.xz.drv /tmp/guix-tests/store/zg1blp87srv2bw1r5qfz9yhksvjlms30-libsndfile-1.0.30.tar.bz2.drv /tmp/guix-tests/store/wijgv951ph20wn4l43yz4rj2mv2axcjy-libvorbis-1.3.7.drv /tmp/guix-tests/store/7qik7fi5i09c9cd6b71hfhg617dfpnb1-libvorbis-1.3.7.tar.xz.drv /tmp/guix-tests/store/yf42yz2b3cam6cagcmdzhk5vpwjkps4p-opus-1.3.1.drv /tmp/guix-tests/store/dz208rym5vxhkhl6zx9v2fvs1f8ks650-opus-1.3.1.tar.gz.drv /tmp/guix-tests/store/91nq9h430xgmnkvkq1176bsaq4m5sa2s-jack-0.125.0.drv /tmp/guix-tests/store/imf50gd2klbp77j7g3w3k5sfj94smv4n-jack-audio-connection-kit-0.125.0.tar.gz.drv /tmp/guix-tests/store/a30dy1gmj3sfpqn44f196b804sk2kx1n-pulseaudio-15.0.tar.xz.drv /tmp/guix-tests/store/na2drx6djnk997hnzg8l6kdbf4s2nrp0-pulseaudio-15.0.tar.xz.drv /tmp/guix-tests/store/f1pi4cqm62jd76hvm484nfnzc59v2px6-speexdsp-1.2.0.drv /tmp/guix-tests/store/7clzrbgbx44f9ss0c3pl332adqnkamis-speexdsp-1.2.0.tar.gz.drv /tmp/guix-tests/store/gxrimiijggal78766my8rc667v87d5ms-sbc-1.5.drv /tmp/guix-tests/store/jkbfd6992asmqrfrwiman8n91y0rxiz3-sbc-1.5.tar.xz.drv /tmp/guix-tests/store/mgavfyvndchgd6p07jmwsppzm95achca-sbc-1.5.tar.xz.drv /tmp/guix-tests/store/kdv0g421pf1r0p69c2nyw3893dc968zx-fftwf-3.3.8.drv /tmp/guix-tests/store/xbpn1a18ql8phbk0rb3jwlniv2giaqp6-webrtc-audio-processing-0.3.1.drv /tmp/guix-tests/store/vz5awm6w4qzw8mhdgwkhp4vhfqwzah3c-webrtc-audio-processing-0.3.1.tar.xz.drv /tmp/guix-tests/store/z8xhjvcjq3ghygca7y4zjn3kkgj1n1yq-qtbase-everywhere-src-5.15.2.tar.xz.drv /tmp/guix-tests/store/srw7md5lmjkyxsnwqsbh9zvzjv8srhhd-qtbase-everywhere-src-5.15.2.tar.xz.drv /tmp/guix-tests/store/iwvscqbfnswggmjr459qjmzn7kg968v6-fcitx-4.2.9.8_dict.tar.xz.drv /tmp/guix-tests/store/nrfjw0if301vxi5h96s5zrp76gfsa0d7-ibus-1.5.24.drv /tmp/guix-tests/store/0xlcg73ca7300y87qmaz6ply26bgbxdn-dconf-0.40.0.drv /tmp/guix-tests/store/3r8nrp2qhw275gjzrzmm0983b8cy741g-dconf-0.40.0.tar.xz.drv /tmp/guix-tests/store/2b2sq4s5xvs65ifj2wilh081mx2l13kx-xmodmap-1.0.10.drv /tmp/guix-tests/store/lmzp11j9842fs6x4n4wm7489z4lp8vbf-xmodmap-1.0.10.tar.bz2.drv /tmp/guix-tests/store/2c6ycx35jj1acgdvhw0p68zgw4b6x417-unicode-cldr-common-36.0.drv /tmp/guix-tests/store/6jns9hmxibbh18g67ms7wjjfvfbhf8xx-cldr-common-36.0.zip.drv /tmp/guix-tests/store/yh9rng71wvb2jjn5wfzd3c2w27lx960h-zipbomb-cldr-common-36.0.zip.drv /tmp/guix-tests/store/8dmh91aybcjspa9r8vm29ncyxq6jqxwf-ucd-12.0.0.drv /tmp/guix-tests/store/dmfw4d7si3pm7hxgzl0j193s55cda3zs-UCD.zip.drv /tmp/guix-tests/store/a1maanbbmgbxi4npym91pyw99b089jxw-zipbomb-UCD.zip.drv /tmp/guix-tests/store/awc90iccycqdp42w1zi069an6jml9s8n-ibus-1.5.24.tar.gz.drv /tmp/guix-tests/store/b733gf3gka919zs3q1839v41pdbh5hn2-json-glib-1.6.2.drv /tmp/guix-tests/store/pqkzqsk34db4qwv083pcczyvp3vyr4d8-gtk-doc-1.33.2.drv /tmp/guix-tests/store/4cvbgknh71wbip3543kzdmi6rdrdrqbx-dblatex-0.3.12.drv /tmp/guix-tests/store/bnazxgffckbl2jfzxj9l7lgxgp1kk85r-gtk+-3.24.30.drv /tmp/guix-tests/store/cd3gjbbyjb1xrnhdp1qj2rfipiyki4ya-unicode-emoji-12.0.drv /tmp/guix-tests/store/2zpbjd0kjfnhzfn8avphsxbwnrcsaqrz-emoji-test.txt.drv /tmp/guix-tests/store/6zlny5dnkk6dc8p4n38ykv25kgs1xs13-emoji-zwj-sequences.txt.drv /tmp/guix-tests/store/av98dk2vmlx3jcp36rfky51ba95iq5g4-emoji-sequences.txt.drv /tmp/guix-tests/store/fclymkakzzi88yzw4g2g1h125zaanwyc-emoji-variation-sequences.txt.drv /tmp/guix-tests/store/pkf1c3znwmj6nnkvpzpyj755jww06xgs-emoji-data.txt.drv /tmp/guix-tests/store/ch1vzr8wzgbv4hrq8kd1f16dwpq5agdn-python-pygobject-3.40.1.drv /tmp/guix-tests/store/9czdlgd84xqh6v2fc1kjl0kc9ackglx3-pygobject-3.40.1.tar.xz.drv /tmp/guix-tests/store/k3pvrx9kwj0yzqr8156fxqf5bghy7rd0-pygobject-3.40.1.tar.xz.drv /tmp/guix-tests/store/h162h7r3jr6g0kgpbzc55ygfhzb8nhr4-python-dbus-1.2.18.drv /tmp/guix-tests/store/2422ri1svgbwfg5kj3a0cqmbddmj7vn6-dbus-python-1.2.18.tar.gz.drv /tmp/guix-tests/store/jb373dls7c0slrly74xxifiqq2vv5i36-setxkbmap-1.3.2.drv /tmp/guix-tests/store/n1y57ixm2h6w7r4p0wmd1slgki52s38k-setxkbmap-1.3.2.tar.bz2.drv /tmp/guix-tests/store/rsz4srk11x4a707y4z1pa5hqy5vqrrn3-libnotify-0.7.9.drv /tmp/guix-tests/store/bf0p6hb1rzzncd7mrwpmm8bcz18xiidm-libnotify-0.7.9.tar.xz.drv /tmp/guix-tests/store/kvipshbagjr0clsfbxs0bpli750b6mwj-u-boot-2021.10.tar.xz.drv /tmp/guix-tests/store/3s3z7499lfl87nch7ax8s5mzlrvv3s6c-u-boot-2021.10.tar.bz2.drv /tmp/guix-tests/store/zx4xkcmbg5sz9akviwb1rfnxvwdqlshv-dtc-1.6.1.drv /tmp/guix-tests/store/9gbmsqsk32ynqzp1hkmxrf03zyi2sj5a-dtc-1.6.1.tar.xz.drv /tmp/guix-tests/store/n9bsc2hb9y1br2v54iglq44yj8vyscp1-linux-libre-arm-generic-5.15.10.drv /tmp/guix-tests/store/g525wv7c3dya1ccwbp1p1b62whyn9dqc-linux-libre-5.15.10-guix.tar.xz.drv /tmp/guix-tests/store/c3s808k5xvc9lxy2ckdj8ryw15n8klni-linux-libre-5.15.10-guix.tar.xz.drv /tmp/guix-tests/store/4l57v4b3a4s1r0kfj2pvcln9m1pykbw9-linux-5.15.10.tar.xz.drv /tmp/guix-tests/store/wyirxncav87mpxzd77izq2lqwbzfhdxx-linux-libre-deblob-5.15.10-gnu.drv /tmp/guix-tests/store/ypxrlkgmmakhdma2k2b0s36bsna711hn-linux-libre-deblob-check-5.15.10-gnu.drv /tmp/guix-tests/store/rq0dwsih9817phny6kz3h9g9bk44gxs7-100gnu+freedo.patch.drv /tmp/guix-tests/store/zf7a8fgkq4w3cc44lsv934vmq47i85i5-linux-libre-arm-export-__sync_icache_dcache.patch.drv /tmp/guix-tests/store/nd67d072b0jwm70iqyjsjvn9mdkz19ia-raw-initrd.drv /tmp/guix-tests/store/4wzg2f1zv056ywpd9mpfrv9d4hkq2axq-guile-static-stripped-3.0.7.drv /tmp/guix-tests/store/1xq5rs4pscsgszmlc5izml9nrjhbifs2-gcc-7.5.0.drv /tmp/guix-tests/store/4572swx6ia9g2dqq8b5hcrazzv8v3w1n-glibc-2.33.drv /tmp/guix-tests/store/gq5b77lk64cqf8mhkd32jxp1i741cpdz-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/smsrnlbqgsjzl9n9sggv6dv7y7m9azpg-gcc-7.5.0.drv /tmp/guix-tests/store/7dl30lqn8x1ripjzbgpkfz9xmlm707zy-gcc-7.5.0.tar.xz.drv /tmp/guix-tests/store/4s95n8zhs5b2m4sj0q1kgkgy48vncpas-gcc-7.5.0.tar.xz.drv /tmp/guix-tests/store/21i644r94x8gswgmc5iss8wa62h0ncy4-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/ciyddip3x717k9g3i8f3a2gx14r5mi86-libunistring-0.9.10.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/d1mj63gqs8izim6ky57bk41xg6yzgdvj-pkg-config-0.29.2.drv /tmp/guix-tests/store/jbg2790c8haz1gl5k3lyr1s1z6wyiw4g-bash-minimal-5.1.8.drv /tmp/guix-tests/store/m2nrfckb4ff4r12m0mx77rlffdqql13c-libgc-8.0.4.drv /tmp/guix-tests/store/rg94n3mpkxblliwvg12mbvc0kzpdcn9s-libffi-3.3.drv /tmp/guix-tests/store/v1rvwqa4brbhfafr01i17vwsg0z5aprk-guile-static-3.0.7.drv /tmp/guix-tests/store/fkhnqgvsam8jrvgdmw39piw64ax8bzpm-init.drv /tmp/guix-tests/store/a738f8asyhsl0frsgnrsqsanm1s8b4wc-e2fsck-static-1.46.4.drv /tmp/guix-tests/store/n8zb309g24wq727f3p4vlblkxxpsrqvf-e2fsprogs-1.46.4.drv /tmp/guix-tests/store/g62hcs7c0cyyd5a1g8r68km82bcycvi8-linux-modules.drv /tmp/guix-tests/store/b9qd33i2s5jxl3cs7sgkwibdivbhrh19-module-import-compiled.drv /tmp/guix-tests/store/wzknjvhwrxp782k4kqqvs8mjmb1vcr03-module-import-compiled.drv /tmp/guix-tests/store/yf3l8m0wqkd1wc1r4zns4bzgsj78fis8-module-import-compiled.drv /tmp/guix-tests/store/sisnyk8vffn5qw08cxz2zqvw9bknhfkg-system.drv /tmp/guix-tests/store/2crv0hr7wij7a6h8mww8ifv6pgmb1523-boot.drv /tmp/guix-tests/store/a5c5zaicra19kjkwzc5ja0h9d9ifmh2r-shepherd.conf.drv /tmp/guix-tests/store/05ir128ki8dr8az3x8cx9mi8q64kwjkz-shepherd-file-system--dev-shm.go.drv /tmp/guix-tests/store/rmb5kxipybpdm48wdc208vvyqn78mdma-shepherd-file-system--dev-shm.scm.drv /tmp/guix-tests/store/hnzl0dlchng6cm4fznzxfl3pyjnfl5f7-module-import-compiled.drv /tmp/guix-tests/store/s3w6qpdrf58sqh37nz0wl21r5rharc7k-module-import-compiled.drv /tmp/guix-tests/store/0ca6ykz8b0rpij105amxqs8zcbra70ab-shepherd-file-system--sys-firmware-efi-efivars.go.drv /tmp/guix-tests/store/m60pqqzv507p7i4waffysnpv1pas8xsn-shepherd-file-system--sys-firmware-efi-efivars.scm.drv /tmp/guix-tests/store/3wxv95j50h8xrn3q433rp99271va36cp-shepherd-root-file-system.go.drv /tmp/guix-tests/store/q4nbrgc4fcngi45pv3bsg443zxwdgs8v-shepherd-root-file-system.scm.drv /tmp/guix-tests/store/9zlxc9kgswhccf9192kd9xrk5l9dsi0s-module-import-compiled.drv /tmp/guix-tests/store/wjvppjq14hm9vyymkmd5qsswyy7i17c0-module-import-compiled.drv /tmp/guix-tests/store/43n8rf46bh4171js8fz0ixqcrjlyfj7p-shepherd-networking.go.drv /tmp/guix-tests/store/l60b8wx684a63s19r1cfdqd3zgbrm8gf-shepherd-networking.scm.drv /tmp/guix-tests/store/9qjk58067ri761nrw8n58y2cb1zl5nm4-isc-dhcp-4.4.2-P1.drv /tmp/guix-tests/store/smfkla2d81jbyfgjbsmrllkn8jp39cmi-bind-9.11.36.tar.gz.drv /tmp/guix-tests/store/y8n2xdnxxhq3yx9i4gjqhm72f8jkil22-dhcp-4.4.2-P1.tar.xz.drv /tmp/guix-tests/store/68m02wgg1q5vm7x3jj3raz9fxfsmxkxl-dhcp-4.4.2-P1.tar.gz.drv /tmp/guix-tests/store/4vhn8mvz80advyy97b73grrr3xa3vilx-shepherd-nscd.go.drv /tmp/guix-tests/store/gnmakai7cxbzdkr5sww1wvpwjgqiz02r-shepherd-nscd.scm.drv /tmp/guix-tests/store/527fsfhxc1a9ryn5a8lrdbxs7fy83l64-shepherd-term-tty6.go.drv /tmp/guix-tests/store/h4k92vm8jjx4lsr66mzc65mirip3j4bw-shepherd-term-tty6.scm.drv /tmp/guix-tests/store/4dsmds0m1lirgl0nzdl57n5siwm2mz6d-mingetty-1.08.drv /tmp/guix-tests/store/14ixg3cp2fpdijzbk4d8qn9s9w4g88yy-mingetty-1.08.tar.gz.drv /tmp/guix-tests/store/547904qqk8m4gwqcmq1l48qy65fn7m22-shepherd-console-font-tty5.go.drv /tmp/guix-tests/store/kay6v2f8rhvj72w9m0ya88l519l1nxrd-shepherd-console-font-tty5.scm.drv /tmp/guix-tests/store/g8r5k2ws8v7ysy0j7s1bk7zhzgj2siqz-kbd-2.4.0.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/8b9skn33p8x39l70ypvpw464gm8hik82-kbd-2.4.0.tar.xz.drv /tmp/guix-tests/store/r8iwyrjc5f2pkr7xjvvxps1fi8w62bqq-kbd-2.4.0.tar.xz.drv /tmp/guix-tests/store/5vqc6xw2jpgqjxdm139ymzsayahh85s6-shepherd-host-name.go.drv /tmp/guix-tests/store/biazzd70mz67kq1kmwkqr857gqhhha0x-shepherd-host-name.scm.drv /tmp/guix-tests/store/9k8abzivz7v3x5m063cs9bnbsgbc0v0g-shepherd-syslogd.go.drv /tmp/guix-tests/store/rl8jfgwli3pfma3clksfld2hl2jrzp67-shepherd-syslogd.scm.drv /tmp/guix-tests/store/apjyy2r0k8s2ki9brz7l6092hdjsiggj-shepherd-urandom-seed.go.drv /tmp/guix-tests/store/024h3c4zjgslinr3nvh41wg6chz9c1ld-shepherd-urandom-seed.scm.drv /tmp/guix-tests/store/arczysi6hsqpawaa2kvsrqzkhhvymmh1-shepherd-guix-daemon.go.drv /tmp/guix-tests/store/m1p951xfjd1nwwlx8b5589f3jz8qqvdz-shepherd-guix-daemon.scm.drv /tmp/guix-tests/store/mwd8vj7h4rslp4qkri4dk8hnrfrj1ql1-module-import.drv /tmp/guix-tests/store/n3rn9ipfychllr8dar2rxcxx43kmxhbg-module-import.drv /tmp/guix-tests/store/ncd2b6k55azqmrzyllsjzdry93l77qn4-module-import-compiled.drv /tmp/guix-tests/store/qa6rw3g1mi42p1nycs51vgcgdaq7yk3d-module-import-compiled.drv /tmp/guix-tests/store/y3b6ydmh2hdj6nqh227fpj8888d2c3xc-guix-1.3.0-16.10ceb3e.drv /tmp/guix-tests/store/3m7dfgmlw64rqsn3wghs0iz5f4353hdd-guile-zstd-0.1.1.drv /tmp/guix-tests/store/ghmy8vjyc8r3yjkz4daczs351s4635ml-guile-zstd-0.1.1-checkout.drv /tmp/guix-tests/store/63ckcgkk5ijfa36g3dyhmlmnrk7abgmc-po4a-0.63.drv /tmp/guix-tests/store/6nj6iyr7sz14c5f2k7msc6ndjiy1qrhf-perl-yaml-tiny-1.73.drv /tmp/guix-tests/store/45874z6j6ciq0icn8948ddgdmy1694ix-perl-module-build-tiny-0.039.drv /tmp/guix-tests/store/4im5a7k6i44w2bljzgqn2ghnkxwwsdfy-perl-extutils-config-0.008.drv /tmp/guix-tests/store/vb8848zak89z3nx252zaz0y0sjgdbpvg-ExtUtils-Config-0.008.tar.gz.drv /tmp/guix-tests/store/6n18xi6c762cp844w1agg5idgmrfg421-perl-extutils-helpers-0.026.drv /tmp/guix-tests/store/z0kd4sn8br12bvkb35ylx5rybc8gklrj-ExtUtils-Helpers-0.026.tar.gz.drv /tmp/guix-tests/store/qmp6jql1j4kka5yrgga5swpqq6926afn-perl-test-harness-3.42.drv /tmp/guix-tests/store/fnlqg74kjfkr0gihaiwshlj65xg66cj8-Test-Harness-3.42.tar.gz.drv /tmp/guix-tests/store/v7ihwlr46p6wwl5gl0b3pnqrpjch161i-Module-Build-Tiny-0.039.tar.gz.drv /tmp/guix-tests/store/zsgdjw0wr9cha4pdg2wa713ks6hnw5rg-perl-extutils-installpaths-0.012.drv /tmp/guix-tests/store/mzydy96wv31ywvmkfhhp751c4a3rhzf4-ExtUtils-InstallPaths-0.012.tar.gz.drv /tmp/guix-tests/store/5y526jl2bqx3clzmhbd57v02fxm6g360-perl-json-maybexs-1.004003.drv /tmp/guix-tests/store/2xz243rz372nfklmxnf0j24b6ap4bl1i-perl-common-sense-3.75.drv /tmp/guix-tests/store/98aglcvvvzp84x4d0p668zcqz5slpzzx-common-sense-3.75.tar.gz.drv /tmp/guix-tests/store/52qybi82wbbzywxl3i7yv8m9qvjmlsln-perl-cpanel-json-xs-4.26.drv /tmp/guix-tests/store/dhnkqxymyvz07mql9iad6vz8lghd8i47-Cpanel-JSON-XS-4.26.tar.gz.drv /tmp/guix-tests/store/hhzqy622w8cbmf4y8jbsrab46z54i0rj-JSON-MaybeXS-1.004003.tar.gz.drv /tmp/guix-tests/store/anmgahzgf5l9kvvbfnmlnz4paw2k1r8v-YAML-Tiny-1.73.tar.gz.drv /tmp/guix-tests/store/cdn7gdddp9y786zflmxn81w5pbhplhdv-texlive-tiny-59745.drv /tmp/guix-tests/store/cgg0kzlydxngwl9l67y40phnqac1canj-po4a-0.63.tar.gz.drv /tmp/guix-tests/store/6lsh62vk0kn2h2j78ny6samgjl69jcl2-guile-avahi-0.4.0-1.6d43caf.drv /tmp/guix-tests/store/jy86h73gpmiy9m60q14nq2fixjklnnls-guile-avahi-0.4.0-1.6d43caf-checkout.drv /tmp/guix-tests/store/li355kl0hi6367fjm1m0j3dkyx715hnx-module-import-compiled.drv /tmp/guix-tests/store/7qc6clvvrd2vwmrk57bgnk7c86kckv8h-guile-bytestructures-1.0.10.drv /tmp/guix-tests/store/z95qj605zqwkdjk763wby0j34kqrwzbh-guile-bytestructures-1.0.10-checkout.drv /tmp/guix-tests/store/82pm5vc49x4r60d1di2z9a907lc75xgz-disarchive-0.4.0.drv /tmp/guix-tests/store/iss4xrhwpd6bfwpfnympa1f77av2ic3h-disarchive-0.4.0.tar.gz.drv /tmp/guix-tests/store/kf64bmmfykhkpsrgl20kskilfdkwk86i-guile-quickcheck-0.1.0.drv /tmp/guix-tests/store/7vbd1f8krir5jqccz3mxq0044bwc7ihd-guile-quickcheck-0.1.0.tar.gz.drv /tmp/guix-tests/store/lpy7vlz5wd3rih2as1xb41lkf9mmq329-guile-lzma-0.1.0.drv /tmp/guix-tests/store/xfb2vf4yh9s94j9ipc54riak27qh1d92-guile-lzma-0.1.0.tar.gz.drv /tmp/guix-tests/store/fv1ln5rj47mlqq73180h9m08c3ia14c3-guile-git-0.5.2.drv /tmp/guix-tests/store/16bfl9b4p7flj0yydzy9gk6rqprc62p5-libgit2-1.3.0.drv /tmp/guix-tests/store/faq7i03czy6h6mm4r7lsqb66b1dd7rbl-libssh2-1.9.0.drv /tmp/guix-tests/store/sc0g4yp60knb191j626s8w8ch8izq8qr-libssh2-1.9.0.tar.xz.drv /tmp/guix-tests/store/xpzp6f37h255rhp2cv4ymcl3j94ay9v5-libssh2-1.9.0.tar.gz.drv /tmp/guix-tests/store/rwnrwvajwlphc2mszywvrbncwbjaw0kz-libgit2-1.3.0-checkout.drv /tmp/guix-tests/store/fnfhqmvxkgcmchkz8kh03n7xbs7dhdbw-libgit2-1.3.0-checkout.drv /tmp/guix-tests/store/xlndcmn1i91dlrccxxac31iaj1r2msqq-http-parser-2.9.4-1.ec8b5ee.drv /tmp/guix-tests/store/fijh42jbpl81hxbzvxnk7ffyacm457zg-http-parser-2.9.4-1.ec8b5ee-checkout.drv /tmp/guix-tests/store/cxf51006n7d0c21skq3aswfnjg7l6zg0-http-parser-2.9.4-1.ec8b5ee-checkout.drv /tmp/guix-tests/store/k8gr1hl42xfv4b36355r37yz841dw4qx-0001-url-treat-empty-port-as-default.patch.drv /tmp/guix-tests/store/bz7d9qwsmal6099r8dizwj9km37dm7xd-guile-git-0.5.2-checkout.drv /tmp/guix-tests/store/w5w120h3a0hzjahcbasg2q24q30nhag5-guile-git-0.5.2-checkout.drv /tmp/guix-tests/store/g98b81dhda9q4gbqbfzjd14dy37f0qan-guile-ssh-0.13.1.drv /tmp/guix-tests/store/h2g0wf0p18lwmrpm5v8ah44xgw0n4sd1-libssh-0.9.6.drv /tmp/guix-tests/store/01ymca8l0xg5149nncyc8wb64123p5f0-libssh-0.9.6.tar.xz.drv /tmp/guix-tests/store/kymj24blqlkmgvp42255kn7y526q7x0b-guile-ssh-0.13.1-checkout.drv /tmp/guix-tests/store/3h9fajz0hyjicpjcx3x6kr39w4b4jw7v-guile-ssh-0.13.1-checkout.drv /tmp/guix-tests/store/i8lwzllyh801gnyig9qg2ssrxp4w04qm-guix-1.3.0-16.10ceb3e-checkout.drv /tmp/guix-tests/store/w5g9vfpwj4n5kg5ay3b3wzac34zxhria-guile-lib-0.2.7.drv /tmp/guix-tests/store/sqq1f975w3mv5mhripygm7mf8qpingcp-guile-lib-0.2.7.tar.gz.drv /tmp/guix-tests/store/yxaka5dzh5kh3zlpjkvrziib7lv5jhxa-guile-lzlib-0.0.2.drv /tmp/guix-tests/store/258q9gcnija62sq31aqiflkvlzr1227s-guile-lzlib-0.0.2.tar.gz.drv /tmp/guix-tests/store/xgv6x1w0p18xidfkvd8skb1ksvpwln8j-lzlib-1.12.drv /tmp/guix-tests/store/6xijr98z01455mpp61fdcb6rrd7ivgfv-lzlib-1.12.tar.gz.drv /tmp/guix-tests/store/yyjr2rikcc16qvb2anc60jfv7f8k3f82-guile-sqlite3-0.1.2.drv /tmp/guix-tests/store/i9vlr1isl4chnqcyqr031bvzcv2vzw83-guile-sqlite3-0.1.2-checkout.drv /tmp/guix-tests/store/az7ixhj5r4raaww4cyx7w14qhd5r2n6v-shepherd-user-homes.go.drv /tmp/guix-tests/store/b9c4glp7wd8gsi12qzhzrgy9jzkc28fn-shepherd-user-homes.scm.drv /tmp/guix-tests/store/awzwm1qisdwgnnk1g39nf7i7dj0d91pz-module-import-compiled.drv /tmp/guix-tests/store/hxnjyfvkybzwxqknil19wflaqad64jxp-module-import-compiled.drv /tmp/guix-tests/store/byib2n10y4vamwnc2mcjdll09sbw6z6a-shepherd-console-font-tty6.go.drv /tmp/guix-tests/store/9vhvzlzhz3pdi68rrhhs3kd444gvinzx-shepherd-console-font-tty6.scm.drv /tmp/guix-tests/store/d4llci3g9kqg8flzyiwy09ipkpcc14nm-shepherd-user-processes.go.drv /tmp/guix-tests/store/7kp78i7w8aj42n1d16bmnkbyxqz0f8h5-shepherd-user-processes.scm.drv /tmp/guix-tests/store/fa2ivfg3wxaw1bdq92jgl7hccbhr97c7-shepherd-console-font-tty2.go.drv /tmp/guix-tests/store/9snwb94i9ki1d18cf334ag9h4l3k3kc6-shepherd-console-font-tty2.scm.drv /tmp/guix-tests/store/fk7g2kb2sl9vwx52hyh5p19l9ksssgby-shepherd-loopback.go.drv /tmp/guix-tests/store/fx8kksvnkmalymxdy5q6al4lypygg656-shepherd-loopback.scm.drv /tmp/guix-tests/store/wdqm8d00abcy2f42bd4xl2wgvzp9nwmx-tear-down-network.drv /tmp/guix-tests/store/70212b113v6pbzc9n1avcvv9574bcdw3-guile-netlink-1.1.1.drv /tmp/guix-tests/store/38ajypya8gkjcz69h2ykiz4vvyac60qq-guile-netlink-1.1.1-checkout.drv /tmp/guix-tests/store/rrgm2mnmwsvnk596zmczk01v8fjkmvw8-module-import-compiled.drv /tmp/guix-tests/store/zjdznqsi1w8zwx2zslr7k6064ss1cqk9-set-up-network.drv /tmp/guix-tests/store/fpmxhh6ga5nlz0prh1kf2qc4f8qfpnsw-shepherd-console-font-tty3.go.drv /tmp/guix-tests/store/1hl7s95cnqvbnxlm543c7l33dkhflzgq-shepherd-console-font-tty3.scm.drv /tmp/guix-tests/store/h73ms04dmx1p014idk4k91bpairnil0l-shepherd-term-tty5.go.drv /tmp/guix-tests/store/vx60047x7pmyc4hm8vjdd4jcq70bqk9d-shepherd-term-tty5.scm.drv /tmp/guix-tests/store/hqch2hp1m5llqm0acfasi1xajb6wknvk-shepherd-mcron.go.drv /tmp/guix-tests/store/ijaisd847p10ccmkv04g64vgy72465b0-shepherd-mcron.scm.drv /tmp/guix-tests/store/b43n0fg0fmrn27znbq52mcj88s3mj2ri-mcron-job.drv /tmp/guix-tests/store/5xyc3mla67b13wbw356b027jlpwab1fx-rottlog-0.72.2.drv /tmp/guix-tests/store/g08crmldhqd0bwjh6p5cci1fpgzp5cq0-mailutils-3.13.drv /tmp/guix-tests/store/2h38i16d77zgiy1bvivl52xkjrgckhai-gsasl-1.10.0.drv /tmp/guix-tests/store/2klvswdlbhk7l5iswilki1ahjyvxj96w-libntlm-1.6.drv /tmp/guix-tests/store/bqhxn8jc0nbhwyi509ngfvw5dn0s6z69-libntlm-1.6.tar.gz.drv /tmp/guix-tests/store/lhpigb262sclzqbn48c7pg3sk92gvgla-gsasl-1.10.0.tar.gz.drv /tmp/guix-tests/store/7j22nfv73l9nyzv62nrn4vs7zj0v3fqy-libiconv-1.15.drv /tmp/guix-tests/store/plw5fmmhgglydkkrgzdia2fy3v0b6i6q-libiconv-1.15.tar.xz.drv /tmp/guix-tests/store/d4jafkvzzkpp6qhn0kxc40m0ilchpcly-libiconv-1.15.tar.gz.drv /tmp/guix-tests/store/8gyikhrn92yak2q7jx61f3rgqiabr2my-dejagnu-1.6.2.drv /tmp/guix-tests/store/1kib6rr5lm94fvpzb04pqs4aycgbj2dk-expect-5.45.4.drv /tmp/guix-tests/store/p1zzypvrfzd20c8f1j7m5galz7z6zaqr-expect5.45.4.tar.gz.drv /tmp/guix-tests/store/6zjlx0wqrpg9lw639rbphdgnazm3rvaw-dejagnu-1.6.2.tar.gz.drv /tmp/guix-tests/store/vz7vgsp307z1b2g3bi2p43kln8hprpng-mailutils-3.13.tar.xz.drv /tmp/guix-tests/store/1d7dfrxpznpz3ly4jjpxagzflmy48qpb-mailutils-3.13.tar.xz.drv /tmp/guix-tests/store/p8c0xszsgb2g8h553rkk8k824x9s69b2-rottlog-0.72.2.tar.xz.drv /tmp/guix-tests/store/n3nfzafj0z3h0vhhaknxvdkb0irxf5jv-rottlog-0.72.2.tar.gz.drv /tmp/guix-tests/store/f1jvl67m012mpcvnwmq3zcnw8ldvbsyp-mcron-1.2.1.drv /tmp/guix-tests/store/52qw4jxc97diz360jlbhqjwyrsvxxv0a-mcron-1.2.1.tar.gz.drv /tmp/guix-tests/store/hgrp4wgiv8idb9rb0r3568r5nxpqxjxv-mcron-job.drv /tmp/guix-tests/store/if9ayb04iq839vzv37m306y6fifaf7l6-shepherd-console-font-tty1.go.drv /tmp/guix-tests/store/yrcchip5rj5w5fiyz01qcg2p1scd66a5-shepherd-console-font-tty1.scm.drv /tmp/guix-tests/store/jr0mbbpnsg45gjksxppchpkz497qqdsa-shepherd-file-systems.go.drv /tmp/guix-tests/store/i52rzjn72c2cdg9fk3ah922by5pnaynk-shepherd-file-systems.scm.drv /tmp/guix-tests/store/jy1zmy6w6n2b73ccz9fzqfqj718ahz95-shepherd-user-file-systems.go.drv /tmp/guix-tests/store/ysmdg2lv1lfsi3a9dfbj7jmz5xfq6a32-shepherd-user-file-systems.scm.drv /tmp/guix-tests/store/mi34xy94z2idqnbqss3lsrlywv56sc7j-shepherd-file-system--tmp-guix-tests-store.go.drv /tmp/guix-tests/store/5j4ys8qlg5hpgkwfiik0zg95f7iq5px5-shepherd-file-system--tmp-guix-tests-store.scm.drv /tmp/guix-tests/store/nhjsrkydg2j1p54nqy5h2a5azizvd4zg-shepherd-udev.go.drv /tmp/guix-tests/store/v843clfqz2gpjl147fns238qmh75jglw-shepherd-udev.scm.drv /tmp/guix-tests/store/gz0wkf28v9ss6d1m1ahmldss9v7v9nr7-module-import-compiled.drv /tmp/guix-tests/store/kvr4avidix1mdgbcsmszc7yra91fhs6m-udev.conf.drv /tmp/guix-tests/store/yhlcwiwmvy6as110708n8pw02sgpn6sy-udev-rules.drv /tmp/guix-tests/store/5iq94vsvj9g5ylvnsxjk0vhrnjlvyldx-alsa-utils-1.2.4.drv /tmp/guix-tests/store/k9nqv6vwwgl0n8gyz8nvb1zgmi6rbvff-libsamplerate-0.1.9.drv /tmp/guix-tests/store/zg3djdgc9s0ybi3blbzwdkz8dbqpgnfq-libsamplerate-0.1.9.tar.gz.drv /tmp/guix-tests/store/pcblm0sf6g0dyx84plphsfrd57wbyhhs-alsa-utils-1.2.4.tar.bz2.drv /tmp/guix-tests/store/lylq6cmrlfgivgqw07lpk3x36r083biy-crda-3.18.drv /tmp/guix-tests/store/0iy3553svn6qaxsqi34sqmqvspxy380m-crda-3.18.tar.xz.drv /tmp/guix-tests/store/z76fdjjwhsyjfp13g6ybycbg5nnfdggn-crda-3.18.tar.xz.drv /tmp/guix-tests/store/87mnm374vq13lsyxnklhlqk3clh12w5p-libnl-3.5.0.drv /tmp/guix-tests/store/ixby5dqrz40a1kvm0hbvbiannz4fdl8f-libnl-3.5.0.tar.gz.drv /tmp/guix-tests/store/jycsgdab94fq1x9ll5lmk1jkcgd409sx-libnl-doc-3.5.0.tar.gz.drv /tmp/guix-tests/store/8vaqpglndqjj0lkgjndsg0hdp916jhjr-wireless-regdb-2020.11.20.drv /tmp/guix-tests/store/g1nfrbbdvddf9b4l5xbkgvpfhcdmnbmd-wireless-regdb-2020.11.20.tar.xz.drv /tmp/guix-tests/store/v4xazqky7750pc2qqf65nxhy8hzan2hv-wireless-regdb-2020.11.20.tar.xz.drv /tmp/guix-tests/store/wkkacc1g5x79gmxzisrm1hiwvyd64z4k-90-kvm.rules.drv /tmp/guix-tests/store/x9hvp3w74msfmhs3xi75rkf66chaw3si-module-import-compiled.drv /tmp/guix-tests/store/q22xja91xjgrjpaqvin3m3dla49b21hy-module-import-compiled.drv /tmp/guix-tests/store/pad8kcbkbs2mfgq8i1p4jxmr7c0vybfy-shepherd-file-system--sys-kernel-debug.go.drv /tmp/guix-tests/store/x772778v7ymnbmf6nff5kpvr13hbbxjj-shepherd-file-system--sys-kernel-debug.scm.drv /tmp/guix-tests/store/pas05i4iawcrzw3350h9r98fhj1m25nf-shepherd-file-system--dev-pts.go.drv /tmp/guix-tests/store/5rzi4ah3nah2ll3cc929fd4pdin9kifs-shepherd-file-system--dev-pts.scm.drv /tmp/guix-tests/store/pq15nn0yafddgpjy1dji5xxisinwwa8f-shepherd-virtual-terminal.go.drv /tmp/guix-tests/store/9fd06g155i7qp3aylnahdydypqsj2pfc-shepherd-virtual-terminal.scm.drv /tmp/guix-tests/store/pr1dapi4sz132sn79d256w48cxmfb4wx-shepherd-sysctl.go.drv /tmp/guix-tests/store/jvafzs09sf1rcj3a4prlagx6axbg84s0-shepherd-sysctl.scm.drv /tmp/guix-tests/store/52xsdyhmp3a5bkgj7jv734lrav9rbdnb-sysctl.conf.drv /tmp/guix-tests/store/r7vc685nkwa2v69889231bkchs3kbvry-shepherd-term-tty4.go.drv /tmp/guix-tests/store/3n75qdjnjgrkgcyqf324fq2lzxrzwld0-shepherd-term-tty4.scm.drv /tmp/guix-tests/store/rk8n2y9s73dq5fhxq7h6bphqwyl74nah-shepherd-ssh-daemon-ssh-sshd.go.drv /tmp/guix-tests/store/h06d5cg75nd6jxk7agv8jhcjh8mj49cn-shepherd-ssh-daemon-ssh-sshd.scm.drv /tmp/guix-tests/store/cjvr37h88p5d4l8kxgq0a1g0d24h2iqz-sshd_config.drv /tmp/guix-tests/store/pkizvh2nvpfjkx46xv2fwym2kjpssqc7-openssh-8.8p1.drv /tmp/guix-tests/store/2gp7mvsj30djscl02w91386270q03bfj-libedit-20191231-3.1.drv /tmp/guix-tests/store/z6wdh85r38rzzf21nbbbd79smxaknwiz-libedit-20191231-3.1.tar.gz.drv /tmp/guix-tests/store/98f8kvbarwxm9x8lk32qaq6alnl0cygg-libfido2-1.9.0.drv /tmp/guix-tests/store/n6vq15hi5fvpflxkkfc96wsffpy4pkf8-libfido2-1.9.0-checkout.drv /tmp/guix-tests/store/sagi2napp294wy3nymc9ykjqix54zwwz-libcbor-0.8.0.drv /tmp/guix-tests/store/6z3vddk8f9fkbhfy0lvn91pkingman5h-libcbor-0.8.0-checkout.drv /tmp/guix-tests/store/bs46k0fsn2w04n6qkww2s8y3dpickaqi-openssh-8.8p1.tar.xz.drv /tmp/guix-tests/store/0y6r2qb5xrk81k7p6v6842iyrgwx2dpg-openssh-8.8p1.tar.gz.drv /tmp/guix-tests/store/z9kp9fqdg6pgq70c2sf5dn934h6xa20p-xauth-1.1.drv /tmp/guix-tests/store/v5dwiil3v248c7i7gkn1wqp6hw4l0365-cmdtest-0.32-14-gcdfe14e.drv /tmp/guix-tests/store/0kk12c5jgadf1frc7i17r577dwzlx02v-cmdtest-0.32-14-gcdfe14e-checkout.drv /tmp/guix-tests/store/21iajp4byj919q1kargk23n5wbk62k6d-python-pyyaml-5.4.1.drv /tmp/guix-tests/store/did0v08xgdgvjzrs6qp4v8g7v5jywpsd-PyYAML-5.4.1.tar.gz.drv /tmp/guix-tests/store/7xhr1hxhiwhz69g6jzaj175vdd7rqkpy-python-pyaml-18.11.0.drv /tmp/guix-tests/store/zb3gygdivx9fdbav1jn89d0k0703p863-python-unidecode-1.1.1.drv /tmp/guix-tests/store/6calv0k3mx9dyb5ws53cirv9qghshvw0-Unidecode-1.1.1.tar.gz.drv /tmp/guix-tests/store/zdnq00w1rqbd651y42kksixg4rpgvmjy-pyaml-18.11.0.tar.gz.drv /tmp/guix-tests/store/fms0jhj8v5n6qm73fj582m43yaqzwpi5-python-markdown-3.3.4.drv /tmp/guix-tests/store/sxny34kcqyrk6wjcw11h62zs78jrgrqx-Markdown-3.3.4.tar.gz.drv /tmp/guix-tests/store/k67ix9x6cqxawbjlyiaqwmc4p6q09phy-python-ttystatus-0.38.drv /tmp/guix-tests/store/aywcr39i4cdwqv9cmcchvlpa4l1nwzlp-python-ttystatus-0.38-checkout.drv /tmp/guix-tests/store/lisdqydp64nz894vbhjzcp1ggvangcz3-python-coverage-test-runner-1.15.drv /tmp/guix-tests/store/5fbrvzf9rb2zn84qyaqcfdfm98f5cgcp-coverage-test-runner-1.15.tar.gz.drv /tmp/guix-tests/store/zsb2955w63w1sm5y9fwhh6z6d7kam7s6-python-pep8-1.7.0.drv /tmp/guix-tests/store/xyjk5wkn2w5fdsagh5d8bpkbfsfx244v-pep8-1.7.0.tar.xz.drv /tmp/guix-tests/store/knzbzv5jj7xm59sxdfss2xkid972axmc-pep8-1.7.0.tar.gz.drv /tmp/guix-tests/store/kba27af4s1l38zm0yyxcnlw9x08pnq71-python-cliapp-1.20180812.1.drv /tmp/guix-tests/store/k6n8xyk1cp80lvy0qms7q7299fzhqry3-cliapp-1.20180812.1.tar.gz.drv /tmp/guix-tests/store/y8g0mir80xvrdf3kz3q5dmng6y09mggl-xauth-1.1.tar.bz2.drv /tmp/guix-tests/store/s6lf90dgc1yjrvk78qiiw8bwf26q2i5a-shepherd-term-tty1.go.drv /tmp/guix-tests/store/9820wvllafyjjwki5nq1iqwm0kvv96d3-shepherd-term-tty1.scm.drv /tmp/guix-tests/store/wimi96my5cykp1vc5kixbyixfn2kkkf1-shepherd-term-tty3.go.drv /tmp/guix-tests/store/k5lvc8dasymviiakx0czajyxi0wkb4rv-shepherd-term-tty3.scm.drv /tmp/guix-tests/store/zd9fiqilx60yn7czrili99f5mwvikmx6-shepherd-console-font-tty4.go.drv /tmp/guix-tests/store/4y1w31irbp5ffc9zgajqr4hhm9fv4qf0-shepherd-console-font-tty4.scm.drv /tmp/guix-tests/store/zdsljy9svpkrdgqahcp79dfvi71jywa3-shepherd-term-tty2.go.drv /tmp/guix-tests/store/2cwsmqjlknkgc63dpvm5v2q0ikzgdvl4-shepherd-term-tty2.scm.drv /tmp/guix-tests/store/zy7dc1pjjii1vz875wcm83aywz0g0nl4-shepherd-term-auto.go.drv /tmp/guix-tests/store/agay8h16f1nnvhp4l1fni967l3z0fc3g-shepherd-term-auto.scm.drv /tmp/guix-tests/store/k3lgnqsp2xpdw87wcrp90bdjvycnnw57-activate.scm.drv /tmp/guix-tests/store/1qynvw49rnrf8gbdfmql9wr0qnxs3z6z-activate-service.scm.drv /tmp/guix-tests/store/9v8f9qlfdkr0p0gh4hca2k1qqbij9m1a-activate-service.scm.drv /tmp/guix-tests/store/lfl2z97yr6r6iva1v2y4c851mcy84xhn-module-import-compiled.drv /tmp/guix-tests/store/dagrabysflq2f1lqp1z7hcr3i71gyfca-activate-service.scm.drv /tmp/guix-tests/store/4qvvh9dz4v6zyzr2kbqmhl2ssip5iy07-firmware.drv /tmp/guix-tests/store/kdqkirpml4xd4zich6i035lbxwkxdkff-ath9k-htc-firmware-1.4.0.drv /tmp/guix-tests/store/2vamx6irh3ynkmv05c430c73f2lsr0gj-ath9k-htc-firmware-1.4.0-checkout.drv /tmp/guix-tests/store/jipfzcdv5yj6jx7ld7j1s6r0r28xk1aa-ath9k-htc-firmware-1.4.0-checkout.drv /tmp/guix-tests/store/n0cw1a60ypwh557mjwg12h9mzyg4sdad-binutils-cross-xtensa-elf-2.33.1.drv /tmp/guix-tests/store/c7xkbfszmjr7mg5pgs4k6f25wa98arfp-binutils-2.33.1.tar.xz.drv /tmp/guix-tests/store/7mdbc0654zq1wjaprrfnj2w7nq1zkljz-binutils-2.33.1.tar.bz2.drv /tmp/guix-tests/store/x49j6ldvjf5f5zpac42c9fbrjlaq3s06-gcc-cross-sans-libc-xtensa-elf-10.3.0.drv /tmp/guix-tests/store/3nvq0gkam8k20l0gc48hfjslcmgshixk-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/d8l1jxzqd20ma3d5nl3mchwgkm713w1y-module-import-compiled.drv /tmp/guix-tests/store/x20glm8arvb8v6pdhmnrzhc14k2hvbmw-ld-wrapper-xtensa-elf-0.drv /tmp/guix-tests/store/ncmzhy0y3xzg06mdwczx58c6nvy7n1hc-openfwwf-firmware-5.2.drv /tmp/guix-tests/store/l94sp53jfs13h8a3k23n49ygs1r3brwz-openfwwf-5.2.tar.gz.drv /tmp/guix-tests/store/n8545gsxsna2wkav1yd20m56dz2c8yiz-b43-tools-0.0.0-1.27892ef.drv /tmp/guix-tests/store/8si0b4bx61imy7p8k6md8ijb7ndxwh0s-b43-tools-0.0.0-1.27892ef-checkout.drv /tmp/guix-tests/store/rh0z0b8gwryj2m25wr00wimxrrckynzk-module-import-compiled.drv /tmp/guix-tests/store/fg0ix7cvrigalskc9yda7hial65n1p0q-activate-service.scm.drv /tmp/guix-tests/store/a36ahix369ycji7lmdrjb2291ly1r537-openssh-authorized-keys.drv /tmp/guix-tests/store/w8wl3kwvpi52iihxa2nsmb1dnwj25fli-module-import-compiled.drv /tmp/guix-tests/store/g1cqpg3fg2znbxk90bvfagvnz7imwicn-activate-service.scm.drv /tmp/guix-tests/store/3hpca7axi08bvdy48v06w93l7i656dyf-module-import-compiled.drv /tmp/guix-tests/store/nhbr7xzlz6hai88brw7klrhn0jhkbvjj-sudo-1.9.8p2.drv /tmp/guix-tests/store/w5csmfhyia8irry3sx36kyfly8bdardw-sudo-1.9.8p2.tar.xz.drv /tmp/guix-tests/store/1wx1ypdnq8nh1c6p5ys9m9pl1k8dzzd5-sudo-1.9.8p2.tar.gz.drv /tmp/guix-tests/store/h5is9jxkjwvqb9107bfzmwy5h04wcl1x-activate-service.scm.drv /tmp/guix-tests/store/cld8755d816g44s676k5qjlbk1l8b8g8-etc.drv /tmp/guix-tests/store/2m1ql8hihw0jqbl1npn9wnyziz8g1n5w-pam.d.drv /tmp/guix-tests/store/1801p42rgy9mkkpdf9bmzrgk41fna0bc-groupadd.drv /tmp/guix-tests/store/5jybgg7awqw792vb8gk74i1kny6f087i-groupdel.drv /tmp/guix-tests/store/63zwpr2yb02fg2fjyzfmyl7sby5wpcg9-userdel.drv /tmp/guix-tests/store/9v5ds3f9pa7na20wmfrg0l2qsjxdpzi7-passwd.drv /tmp/guix-tests/store/c1i43n1ip1s8ppmc13igxgzj61c2bffl-other.drv /tmp/guix-tests/store/fsbvj9x1yz3pvvgy5xq70c91cfmy2brq-useradd.drv /tmp/guix-tests/store/jx9xjzd42063rhjap04wrgwrnn1qivsc-su.drv /tmp/guix-tests/store/kiir5fzsm7806lpi2ybimd0g42amy8ai-sshd.drv /tmp/guix-tests/store/n3nc4rvccdncrsycb0lwavd83fabk81w-login.drv /tmp/guix-tests/store/nwy8z7fv1dw5y94p3icw7mw749pk4nj6-sudo.drv /tmp/guix-tests/store/wzlh1j5xv051jxjxj4mn002lz969xsx8-usermod.drv /tmp/guix-tests/store/zx1d38g65ycdx57c6jk9yabk82yfzlvr-groupmod.drv /tmp/guix-tests/store/3dppzrmjipl215357m62qp0rxxqcigkl-skel.drv /tmp/guix-tests/store/6cf0y7mj0v5xnr1ffmjcjcpvsn1w7w9a-environment.drv /tmp/guix-tests/store/7qv90bcv227gavlbhlp0yx7j58h8zs3k-shells.drv /tmp/guix-tests/store/gibpg9bbb294maqsf1nh5nd5hy8zs9xf-profile.drv /tmp/guix-tests/store/jbfzgwqm2x8lwj1l0rawqv9dz2cmbjkq-sudoers.drv /tmp/guix-tests/store/lbhq0w2q30ahgxldp37gqczyknn4rhvb-rottlog.drv /tmp/guix-tests/store/njg93x7nvmxyqhyvdd4lgg9m2qc1yqzj-rottlog.weekly.drv /tmp/guix-tests/store/fz21mf3w5scnc69n1cdxxnc9yswc1822-rottlog-post-rotate.scm.drv /tmp/guix-tests/store/jv51zjsr89bn1qq2mi0x7kwly2z6fdfs-activate-service.scm.drv /tmp/guix-tests/store/m8h9xj59lg60wiy28j1zma3ijv1x3rhp-activate-service.scm.drv /tmp/guix-tests/store/nnxl09npxwmswwkl6kwa3jzqwf7hh376-modprobe.drv /tmp/guix-tests/store/p7ls8mpcjih57blfqpwq4imfgz7q1j7c-activate-service.scm.drv /tmp/guix-tests/store/s1j1919p16apd1cpxz1ibmj4shc5i18p-acl.drv /tmp/guix-tests/store/7igz808sygf9kiwhj7fjw71s5g0imsx2-module-import-compiled.drv /tmp/guix-tests/store/inki0769jxfpvzbk8jm3sky0mfgj2bk0-module-import.drv /tmp/guix-tests/store/2ibhvm4kjqzl7jimn8sw30nrljrj8c0y-locale-multiple-versions.drv /tmp/guix-tests/store/kzzlxx72p8wgxrgcjh13p3128kpgkw7f-locale-2.33.drv /tmp/guix-tests/store/pv0ziwf8zikap87l6l2q935aydhcz9gd-module-import-compiled.drv /tmp/guix-tests/store/wmdk807ql9dk2d2nh982870j5h6w9wnz-locale-2.31.drv /tmp/guix-tests/store/4nkpxx2jjapbnl0fnpnas1x2pvahc5ih-glibc-2.31.drv /tmp/guix-tests/store/kflx39w92xlv1lg3pvgv1sqz939mzjc9-glibc-2.31.tar.xz.drv /tmp/guix-tests/store/1ipqan74q3gddmn8v2xc3giz6i5r6wks-glibc-2.31.tar.xz.drv /tmp/guix-tests/store/h5nflcmg8v35f0lnbym542c239lc1d3s-profile.drv /tmp/guix-tests/store/03spvwpinh4ysdhs3zfsmxisf5ah84jj-usbutils-014.drv /tmp/guix-tests/store/cm100g7rscllnj0biscirhas9xxri54w-usbutils-014.tar.xz.drv /tmp/guix-tests/store/0qnjl5yfwgqw9za6jlji3wiin7x0cm1l-nvi-1.81.6.drv /tmp/guix-tests/store/92si81ir5290ikwqw1s55hrbdy02wank-nvi-1.81.6.tar.xz.drv /tmp/guix-tests/store/wr2w5zi22h6g0j0rr58ph2rl95cpi1gc-nvi-1.81.6.tar.bz2.drv /tmp/guix-tests/store/2hm1x5jxgiyjc3kazz5bfsayl9lvd6q6-wireless-tools-30.pre9.drv /tmp/guix-tests/store/21gv30k4s1czzskzwwbvbsymlph0kj56-wireless_tools.30.pre9.tar.xz.drv /tmp/guix-tests/store/h2ck7l3mz3mr3qs168y7lxr3psgrr52z-wireless_tools.30.pre9.tar.gz.drv /tmp/guix-tests/store/6mfsxnxizis59daqirwwfijhqhbdvn7j-wget-1.21.1.drv /tmp/guix-tests/store/01avib9v6ryk2hqanbs7y4ln5k1a301v-perl-net-ssleay-1.88.drv /tmp/guix-tests/store/y2s3s7lii6lhznvsznzhq4f8mfsvwvlb-Net-SSLeay-1.88.tar.gz.drv /tmp/guix-tests/store/6k1m77xqsh752q5fa6v5nk9amfvlsxhr-perl-io-socket-ssl-2.068.drv /tmp/guix-tests/store/qmfh434pi0c69swdbjz9wlfgksqhh7m6-IO-Socket-SSL-2.068.tar.gz.drv /tmp/guix-tests/store/8hrzpc4pywrdb5098f74frg4yrkwc985-perl-http-date-6.05.drv /tmp/guix-tests/store/sqg1rxy4x3l5hpmp20ciacx0ixcy6fpg-HTTP-Date-6.05.tar.gz.drv /tmp/guix-tests/store/cpcnsdnsdrq8djdv29f53qgw98lll49r-perl-lwp-mediatypes-6.04.drv /tmp/guix-tests/store/252bgkdf5826m39sg6p5ir6lzlz1dm6w-LWP-MediaTypes-6.04.tar.gz.drv /tmp/guix-tests/store/9wsfba3n6cgwrnyd0nk7rb6p30qj7vra-perl-try-tiny-0.30.drv /tmp/guix-tests/store/7kp5adkbkzgsw1k1hfyd21m6pamr4waj-Try-Tiny-0.30.tar.gz.drv /tmp/guix-tests/store/msmy7w894jb3rbwdjmqb829l4p5jrqg4-perl-test-fatal-0.014.drv /tmp/guix-tests/store/5v0pk6x5ryq2pr9qpmmvqp2cn7vbnw0r-Test-Fatal-0.014.tar.gz.drv /tmp/guix-tests/store/fa76fa752fsm2v4ylin9rh52d2chn4mn-perl-io-html-1.00.drv /tmp/guix-tests/store/1w2ps966mwp7y09qyqwacwyhal6mr8n3-IO-HTML-1.00.tar.gz.drv /tmp/guix-tests/store/i4ysglrmbga9xbj7aiq5v0hif8dw2l1a-perl-http-daemon-6.01.drv /tmp/guix-tests/store/gg97lch2yfiqd3r65jkn00riq9hq9z5q-HTTP-Daemon-6.01.tar.gz.drv /tmp/guix-tests/store/jdaymicps378ky4drdmzw8xdln0mn481-perl-http-message-6.18.drv /tmp/guix-tests/store/pvkhl924lzyvbb5d8s10smjizipggfdf-HTTP-Message-6.18.tar.gz.drv /tmp/guix-tests/store/zrzvkl33h6gfj7m2w8v04ib39lpdz1mc-perl-encode-locale-1.05.drv /tmp/guix-tests/store/jxjn1n3s55g3i068gc7vqp2vqg6bk1pm-Encode-Locale-1.05.tar.gz.drv /tmp/guix-tests/store/q7xl9i21gpwsg5n3af4mjg7yp1wjyp50-wget-1.21.1.tar.lz.drv /tmp/guix-tests/store/7dn7yzsc72spw0lvr7f5h42nkkgq3jib-nano-6.0.drv /tmp/guix-tests/store/gzsiy44bjlzvqlikwf784ahs5ddcgda8-nano-6.0.tar.xz.drv /tmp/guix-tests/store/7w5akmhcxgj5kwk8i34l4ar0347fwxas-module-import-compiled.drv /tmp/guix-tests/store/cnw03bpim0dmbp6kvnsqgw0rm1b2wk60-psmisc-23.4.drv /tmp/guix-tests/store/08simppg2pdjj3fa5vj5z2jr4nsshdfd-psmisc-23.4.tar.xz.drv /tmp/guix-tests/store/cz7npp4iaygyfnn0rn9nxzz48s3pac7a-iw-4.14.drv /tmp/guix-tests/store/v9nnd7qj0ikm0jd20rwjsghz9rrnnkk9-iw-4.14.tar.xz.drv /tmp/guix-tests/store/f6qwlxh95h8kspn0c8rf7qlmzf1d570m-mg-20210609.drv /tmp/guix-tests/store/npmm1196qbjwzi9n0kyzjd0ggv0c1lib-mg-20210609-checkout.drv /tmp/guix-tests/store/pphf5gq1nspncfvlbz04yq7b6nj4f965-mg-20210609-checkout.drv /tmp/guix-tests/store/glj6vpavn6hsq4mn6mv4ljajrwphhpnd-less-590.drv /tmp/guix-tests/store/yccr1pc9hpqqk14mfasvcppqj4cl04as-less-590.tar.xz.drv /tmp/guix-tests/store/madpyki5i3q3r4sh9sdivm7db8nhydkc-less-590.tar.gz.drv /tmp/guix-tests/store/jf7imq8fj831wfmp8x89cswxq1vnp2h8-util-linux-with-udev-2.37.1.drv /tmp/guix-tests/store/jm3jb8p39zaf6dimvgdlsqbsbq5x5rb1-guile-colorized-0.1.drv /tmp/guix-tests/store/1mi82141ikz1qv34bhrsh23dga5ml303-guile-colorized-0.1-checkout.drv /tmp/guix-tests/store/k1xws21mxn355ck2jjmdvdy0wlqnwy5l-guix-icons-0.1.drv /tmp/guix-tests/store/45pic93zs22dvh7kncbl30czrqmgaqkz-module-import-compiled.drv /tmp/guix-tests/store/666b3184y9jlxm2b6b64k2q08nqc1b15-guile-rsvg-2.18.1-0.05c6a2f.drv /tmp/guix-tests/store/knz970wh9br51388mhnrfj0lfa7xfkdl-guile-cairo-1.11.2.drv /tmp/guix-tests/store/i1zcl2pd4r8agw87xa2hhzj7jzfjdp3h-guile-cairo-1.11.2.tar.xz.drv /tmp/guix-tests/store/psqszs75zic5lxkw9nf654xmajg6pq81-guile-cairo-1.11.2.tar.gz.drv /tmp/guix-tests/store/sxi5wqkgj4v0w92rdfglk4fpld1dh2lr-guile-rsvg-2.18.1-0.05c6a2f.tar.xz.drv /tmp/guix-tests/store/rfy46yh6r8lza6l20qyhjkw1pd2lwm0h-guile-rsvg-2.18.1-0.05c6a2f.tar.gz.drv /tmp/guix-tests/store/rdc732dgcpdp087ycy1j9rxvp8xg8n60-guix-artwork-2f2fe74-checkout.drv /tmp/guix-tests/store/mc3gnkfpjwnglbs46ka049kl8ghnzmd4-patch-2.7.6.drv /tmp/guix-tests/store/pksym19g14alxabzbvkvdvbhdbmii5rf-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/rkkpd7b5xklw29fxsxnfb3ajdv8yfzj4-man-db-2.9.4.drv /tmp/guix-tests/store/3qvn6zj3apw6vnprlj7akinpwzz1ky5x-man-db-2.9.4.tar.xz.drv /tmp/guix-tests/store/f1w548d30n4p6zjd573aw5vlvxzkflwz-libpipeline-1.5.3.drv /tmp/guix-tests/store/mhpl6hr81nh5hc3nz8fmszf44aq2s52d-libpipeline-1.5.3.tar.gz.drv /tmp/guix-tests/store/gy4ky336kyffswp0864rnzm12j7lbcgx-groff-minimal-1.22.4.drv /tmp/guix-tests/store/rmcpxjv7lz78alzgsa3nspqqggjkxy02-info-reader-6.7.drv /tmp/guix-tests/store/rszwyvn10fsx28m5yvf3vyfsk0vkday7-screen-4.8.0.drv /tmp/guix-tests/store/7276si8g9hd4lk26fikp0343yb9r0ism-screen-4.8.0.tar.xz.drv /tmp/guix-tests/store/i6i9skxd1glamnr729acbvxc1jb1y9jg-screen-4.8.0.tar.gz.drv /tmp/guix-tests/store/gs1yf3z7qns4md3i0xd09l1fhsks3lf1-guile-gdbm-ffi-20120209.fa1d5b6.drv /tmp/guix-tests/store/ixizak8jmhxlx20a6mfhjyfpyvfymk31-guile-gdbm-ffi-20120209.fa1d5b6-checkout.drv /tmp/guix-tests/store/3mkzj099x06c836655r5m1dwk8nnwi2f-guile-gdbm-ffi-20120209.fa1d5b6-checkout.drv /tmp/guix-tests/store/jn061ljmq78h8q0d8hkhz7hc82nb4s0y-module-import-compiled.drv /tmp/guix-tests/store/2d2cbya67yyji8xchr1in8knxix9mcr8-mkfontdir-1.0.7.drv /tmp/guix-tests/store/k1sh37msdlm5cq4phpj9kj9gqvw7pqr2-mkfontscale-1.2.1.drv /tmp/guix-tests/store/akh1wmkmcaxhfk1s4pf9wka6bim8671l-mkfontscale-1.2.1.tar.bz2.drv /tmp/guix-tests/store/my0azai9frif7yfdr4flv0a39hd9xj52-mkfontdir-1.0.7.tar.bz2.drv /tmp/guix-tests/store/vsjakghydi7drfic19zf183zr36qahyd-module-import-compiled.drv /tmp/guix-tests/store/hbpw7zi9bjn19rxlcb8jqgy4i7aq2bgw-profile.drv /tmp/guix-tests/store/j7hrq300h24aqkwk5y23jm31xp11p79l-parameters.drv /tmp/guix-tests/store/v8k63mzx9dvxq2afyv4pjpq8b8dj0165-fakeroot-1.26.drv /tmp/guix-tests/store/8xk6fb9bwny377v0mb2qhlqznfaj56pa-autoconf-2.71.drv /tmp/guix-tests/store/ccv9fgnxwxiz328h7a0p78d6lvi8y0jc-autoconf-2.71.tar.xz.drv /tmp/guix-tests/store/mp6vvksgvkd6qq5h907crxr8xdgkx0vy-fakeroot-1.26.tar.xz.drv /tmp/guix-tests/store/ixb5l7ybyn4ilwjy2nvhmirs40f4nqnl-fakeroot-1.26.tar.gz.drv /tmp/guix-tests/store/zwqg6wjkj8a2hgi3w88fgglfj4rk83r3-module-import-compiled.drv /tmp/guix-tests/store/6mr5hccy4ac2a4k7vfp8ha74abbi45gb-partition.img.drv /tmp/guix-tests/store/82npksqpdaahimifykl7rkqnni5vfl7n-genimage-14-1.11bb044.drv /tmp/guix-tests/store/5ckv3dlvj7nj1m9jsfhbpafbqcma4fj4-mtd-utils-2.1.2.drv /tmp/guix-tests/store/hcs4d0v1jfy9pm395zn7hcv4s7iamyfx-mtd-utils-2.1.2.tar.bz2.drv /tmp/guix-tests/store/6411pxr1kk4g0jnc13yak20q2ca8ks44-genimage-14-1.11bb044-checkout.drv /tmp/guix-tests/store/fl68dfywj008igyr9wa9fvmdbmlg8spg-genimage-14-1.11bb044-checkout.drv /tmp/guix-tests/store/br6gasx4f29jq55lcwn3qc9yg2l1lzyn-libconfuse-3.3.drv /tmp/guix-tests/store/j0c7pnq820r7r703nps68i5xj6q17hqw-confuse-3.3.tar.xz.drv /tmp/guix-tests/store/dw2gg8yj5hck33w5nkh7crdmkbqgfc13-squashfs-tools-4.5.drv /tmp/guix-tests/store/1wv9lkgzxfs0f0qhbwkyjz59qp4i7haw-squashfs-tools-4.5-checkout.drv /tmp/guix-tests/store/rxbccqlx39snsycc4sfgdbj3s9zhagli-cpio-2.13.drv /tmp/guix-tests/store/shz8cm6iwvfg6sm0bdlcp97a6iv4x8xl-cpio-2.13.tar.xz.drv /tmp/guix-tests/store/y9nbw83qbnln93pr1951wjlvlyra5iwy-cpio-2.13.tar.bz2.drv /tmp/guix-tests/store/wkp2vszn11d1hpnrrbvi5fraai1z270b-cdrkit-libre-1.1.11.drv /tmp/guix-tests/store/f3n8dq4gbbs2zn5i26pn34xs01vhrvkf-cdrkit-libre-1.1.11.tar.xz.drv /tmp/guix-tests/store/j0wnaj19kzyv3ad4d4s5v9mdh2wjdr2s-cdrkit-libre-1.1.11.tar.gz.drv /tmp/guix-tests/store/y6qxr5sbapvvl5ybl4wwsj9y42mqf0cx-genext2fs-1.4.1-4.drv /tmp/guix-tests/store/sn1jysjx1csgls0r4k1cr9p1z74axlkv-genext2fs-1.4.1-4-checkout.drv + for example in gnu/system/examples/*.tmpl + grep hurd + echo gnu/system/examples/bare-bones.tmpl + target= + guix system -n disk-image gnu/system/examples/bare-bones.tmpl accepted connection from pid 13457, user nixbld guix system: warning: 'disk-image' is deprecated: use 'image' instead substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable substitute: guix substitute: warning: authentication and authorization of substitutes disabled! The following derivations would be built: /tmp/guix-tests/store/h799w64abb316hz2f1mmr2ch5l1hx3fm-disk-image.drv /tmp/guix-tests/store/23k5bd2sk1mlimyvv2hvihbki4i8j8cl-guile-gcrypt-0.3.0.drv /tmp/guix-tests/store/21pmnj5l8wwv9j6565ami62ql6rdbivp-gzip-1.10.drv /tmp/guix-tests/store/5rffkc4lx8d86gj4fa4rvg0spps1p4v0-file-boot0-5.39.drv /tmp/guix-tests/store/3drxkc76igrw1fi4hblngm7lmwzvhbfg-gcc-bootstrap-0.drv /tmp/guix-tests/store/d6f0fa8x4if8asg5sf69aqma7nm265a0-glibc-bootstrap-0.drv /tmp/guix-tests/store/jvxnnz4bmgqfh6m8cgmmlv94pi68gwxl-glibc-2.25.tar.xz.drv /tmp/guix-tests/store/hcvxcl1hwj875z5f1h35f32khxafr9lc-gcc-5.4.0.tar.xz.drv /tmp/guix-tests/store/5h5z1far1zz5lb9z2aqj8w711z3qisnx-module-import-compiled.drv /tmp/guix-tests/store/6lwnac3ga3qs598j99n3vfc96fqi554h-file-5.39.tar.gz.drv /tmp/guix-tests/store/8j2q9fv5azb6sclr1b6ypjybpjybwb84-make-boot0-4.3.drv /tmp/guix-tests/store/irmyrsqw0m0mk8swb00ryf3ic6pqw2jf-bootstrap-binaries-0.drv /tmp/guix-tests/store/4x2n9xjb3qqm34vc9k2c1w9b9xm46agx-static-binaries.tar.xz.drv /tmp/guix-tests/store/msy4c035ih8ss7w3mazn0y6cvrwrmazj-binutils-bootstrap-0.drv /tmp/guix-tests/store/zr43wy48bl6lhld21ajilvj895q7jsqa-binutils-2.27.tar.xz.drv /tmp/guix-tests/store/vdg7a9kpy8rs12abqjyxr7d5idcwci68-make-4.3.tar.xz.drv /tmp/guix-tests/store/wy7isgmjyiwbzsyx1f3bmhw4kdi65l7i-make-4.3.tar.gz.drv /tmp/guix-tests/store/5rx3i7c94a787lns10xwgim1hq84m7v1-binutils-cross-boot0-2.37.drv /tmp/guix-tests/store/gp2iyp8vzj2904mha81vsx3a5l9ndkcq-binutils-2.37.tar.xz.drv /tmp/guix-tests/store/vj5dqqhka5p7qi20kh32396bd1y127al-binutils-2.37.tar.bz2.drv /tmp/guix-tests/store/p677ngbz80k4ld9dn87s65ni32v6lmjn-diffutils-boot0-3.8.drv /tmp/guix-tests/store/cpsrirfv2871swvx7slsdabnyma4h781-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/xsmnf0jmi7p4n60i8p1mkvpm05sp6a6w-findutils-boot0-4.8.0.drv /tmp/guix-tests/store/xl0b647qzhamil3s0w46970xp4lqzc09-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/m0hxwnqk3j0v7333n3ii2jqix1da025s-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/5w71j1ahwqsicxm3kvwcfak690fsdwm3-guile-3.0.7.drv /tmp/guix-tests/store/00rl26bz9iy645lfvjz3wz8zv2813cjj-pkg-config-0.29.2.drv /tmp/guix-tests/store/bhan5y2nxnwnz9bcxdy76h9rfq20wml2-pkg-config-0.29.2.tar.gz.drv /tmp/guix-tests/store/dp1ja89a8vkxgf1p4jc6r5ymaf3zf8qc-linux-libre-headers-5.10.35.drv /tmp/guix-tests/store/0nqx5jlmc5mk9nrfvab8sn3g33fssycs-m4-boot0-1.4.18.drv /tmp/guix-tests/store/6d9fq4zyksi8my2avvmf4ccca6x353am-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/wfv4vwpw1xv13b7yff3siichmhifi8j3-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/cxfvgfda8b95ld7yb98472bzr487akfl-bison-boot0-3.7.6.drv /tmp/guix-tests/store/dsmw8wfsxlq3nk1vrc8ni7a6387k0695-perl-boot0-5.34.0.drv /tmp/guix-tests/store/q45vcwi1vdnl1ivwaxk6v2xcd8xa4ang-perl-5.34.0.tar.xz.drv /tmp/guix-tests/store/aaqnz7s3w73pb173krlx673qpmism8f5-perl-5.34.0.tar.gz.drv /tmp/guix-tests/store/mzllf2r2i5rzjqy79fs13ny8vgn86qpr-bison-3.7.6.tar.xz.drv /tmp/guix-tests/store/k8iplw0kw2dmly8v5lamgplx04ggn15j-linux-libre-5.10.35-gnu.tar.xz.drv /tmp/guix-tests/store/s9pg6r6jza7r5f3m94k7sgwpynwpxwcd-flex-2.6.4.drv /tmp/guix-tests/store/d1zzhllih6bhzvnc80jsm43r9kmflr9z-flex-2.6.4.tar.gz.drv /tmp/guix-tests/store/ffc5rg7wnrjrpzrmbg22h351280xijm6-ld-wrapper-boot0-0.drv /tmp/guix-tests/store/fm6ink06dpxk87bqc6lgxx8ky74ia62x-gcc-10.3.0.drv /tmp/guix-tests/store/7khqqxqxi03q8abfi49crphk30wm65i8-mpc-1.2.1.tar.gz.drv /tmp/guix-tests/store/97d6m61x48g8n8fnrn0pqrhx2209110m-gcc-cross-boot0-wrapped-10.3.0.drv /tmp/guix-tests/store/ah3g5mnihalpr1sccip82sxfrr0vr1pz-gcc-cross-boot0-10.3.0.drv /tmp/guix-tests/store/a4v61rcb2masds25m6i38bk66xn7zgbg-gmp-6.0.0a.tar.xz.drv /tmp/guix-tests/store/xmsm1kzrmrari5chwcil4dgmrq8xjcqf-gmp-6.0.0a.tar.xz.drv /tmp/guix-tests/store/flzxa3z4k5qv55km5gwn4w4b5ncnsmwm-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/ix1j66481xr2xy267qj0b8c36a9yd7g7-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/vasq2n0j43fxvhr1gz3r8h7gfasq8j5r-libstdc++-boot0-4.9.4.drv /tmp/guix-tests/store/4pn6afwyavhi2fwggq250b9dkf4j9lj8-gcc-4.9.4.tar.xz.drv /tmp/guix-tests/store/ciw3b48qvhb5fx35hllb74czfcjp2zn0-gcc-4.9.4.tar.bz2.drv /tmp/guix-tests/store/z4vfg9vv6w1ak3j942b50z7a86f37qn3-mpfr-4.1.0.tar.xz.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/gm3v790gmxrcssw929w1dhinzph12gdy-gettext-boot0-0.19.8.1.drv /tmp/guix-tests/store/lvp6i19y0xxszb921nckl5hy0jwp3dlh-gettext-0.19.8.1.tar.gz.drv /tmp/guix-tests/store/gx0cfkdlx8ani5v80y7rcn25wcsak11j-texinfo-6.7.drv /tmp/guix-tests/store/v1diq15pcscjp1g1nba5difq7i5a8444-texinfo-6.7.tar.xz.drv /tmp/guix-tests/store/hnr0xg3bd3ba4qzrc71br1pywls01z9r-python-minimal-3.5.9.drv /tmp/guix-tests/store/dl06g703krs6wsjh13cil554baifr5v2-expat-2.4.1.drv /tmp/guix-tests/store/gckzpnh0im4a98l1c5r44g3442b20f13-expat-2.4.1.tar.xz.drv /tmp/guix-tests/store/ma9dns8jdkkvy3kvbiv0h6wbac88pi8a-Python-3.5.9.tar.xz.drv /tmp/guix-tests/store/qy27syldpl7c5amch4fx70b79pmxh0fi-Python-3.5.9.tar.xz.drv /tmp/guix-tests/store/j8bhbikxlay3j3q41qw0yl0gay5yrs6w-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/1yl394nf5ndwikn9c48d17fmbxfvcbgk-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/lrl0dhhb4072c0hrs81jl5sgks7a5nh4-bash-static-5.1.8.drv /tmp/guix-tests/store/0s1f5gk80rgqpvjbxf4ayf7vnjw71mxr-bash-5.1.tar.xz.drv /tmp/guix-tests/store/0614ryjqzr489495nq6d99jajmhqjiab-bash51-003.drv /tmp/guix-tests/store/2agrqh7i0sywnfv7f7b9m7mmgvmn8skw-bash51-007.drv /tmp/guix-tests/store/2rs4l6v390s5ybkypvpdikk34bfsb2wi-bash51-008.drv /tmp/guix-tests/store/8cd3hyh9h1dj3cndzrjwg82ry3k9fywr-bash51-004.drv /tmp/guix-tests/store/8cjan671yq08m76d7l0qrfjg5kg0i0f4-bash51-006.drv /tmp/guix-tests/store/90is400r9i58rv532wj0cm1yxyhfsw1k-bash51-002.drv /tmp/guix-tests/store/agfndag1jx1rlxnjzxm3ab4ncyk0ihb9-bash51-001.drv /tmp/guix-tests/store/hain1z6c9v2zgkxm57vabb8qiasgc44r-bash51-005.drv /tmp/guix-tests/store/vpym9p0qg5brhi62jqzjhggar0ika4zc-bash-5.1.tar.gz.drv /tmp/guix-tests/store/36i906s7ib2nj0gzzvw0hfyirrbx5lp7-glibc-intermediate-2.33.drv /tmp/guix-tests/store/7ky23iywrg5winwlpbgj5hl129qx13jw-gcc-cross-boot0-wrapped-10.3.0.drv /tmp/guix-tests/store/36i906s7ib2nj0gzzvw0hfyirrbx5lp7-glibc-intermediate-2.33.drv /tmp/guix-tests/store/d1b92fz4y431r62xsvkqbdd13i93lzfh-zlib-1.2.11.drv /tmp/guix-tests/store/ji48bhh10nv6djiz16a1cljnq08fdck7-zlib-1.2.11.tar.gz.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/fbn7qarm6adak53jg4dz1gy4p064gy9y-binutils-2.37.drv /tmp/guix-tests/store/lrc73gzhggn1l16dlsdj1lv34qsjfan7-libstdc++-10.3.0.drv /tmp/guix-tests/store/r94pzhn6yx0knmnlbn49134yrvwbs29b-ld-wrapper-boot3-0.drv /tmp/guix-tests/store/gkl3anjfh20qqp73mq0hmdknjsqp1zfa-bash-minimal-5.1.8.drv /tmp/guix-tests/store/4lxlikg47slp0mrcd25rlcm6qcii6kqj-libunistring-0.9.10.drv /tmp/guix-tests/store/w9zlnd1lsfx9i24f59im4zfrgr86qyif-libunistring-0.9.10.tar.xz.drv /tmp/guix-tests/store/gc355jps6lvgnhny001hs7zf7k6rbn3m-libffi-3.3.drv /tmp/guix-tests/store/40qj4rc7c1rjhbh4yl21z5qi8md2ialv-libffi-3.3.tar.xz.drv /tmp/guix-tests/store/1km3h7zb41pjrldqgq6gjny5f0aissi0-libffi-3.3.tar.gz.drv /tmp/guix-tests/store/nrn3byjrdgf1c0icybmisrkcn28ypjyx-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/7gnpyf9a1i789jvz9j8cr69jaj0x5p28-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/rcp4r9nkzi1jhb4z8bgmhq0cmqlmgqxa-libgc-8.0.4.drv /tmp/guix-tests/store/ifxf227928p46a44kadh3qwc3xgi7kll-gc-8.0.4.tar.gz.drv /tmp/guix-tests/store/91z5zk9cv2bryzxa94zqpbph3i5x0v0d-gzip-1.10.tar.xz.drv /tmp/guix-tests/store/bmzp76q0a1ihpd044dfjj160wb8fqgs8-grep-3.6.drv /tmp/guix-tests/store/2bxdmf4galrb85yv3gkdhkrcw8jxyidg-grep-3.6.tar.xz.drv /tmp/guix-tests/store/1zk1y70l49d03g9czi6w1pzngc43g212-grep-3.6.tar.xz.drv /tmp/guix-tests/store/dyvkgvsbx1iz19ad4vmjp8f25k70bziw-module-import-compiled.drv /tmp/guix-tests/store/rj6lyl5dpik9kp20q04lbpr1aq6jx466-glibc-utf8-locales-2.33.drv /tmp/guix-tests/store/3xx3dcm5zyfgjkvyal7azvkr13981w4j-module-import-compiled.drv /tmp/guix-tests/store/6623qs8y2ddd3fbgy4fhagkphx28pdq6-gzip-1.10.drv /tmp/guix-tests/store/m0xiw3dznzaaxw8izp2ywc1hc5hd3blj-coreutils-8.32.drv /tmp/guix-tests/store/afbnqhzv3bam6n593027krw63kjlppd0-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/bik73j39d1bb6ksn3x2xdc9h133kiigf-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/2pqyydqw0z0zf2vhdw6xs3wfnbhza0qd-guile-3.0.7.drv /tmp/guix-tests/store/3w6zpyvj10b7yj0zjskixwkxaf49q48w-libunistring-0.9.10.drv /tmp/guix-tests/store/50h57gnjb225z2qzh580zcpqniiz07jb-diffutils-3.8.drv /tmp/guix-tests/store/55n6pa2bks7fk13p12bchw8lpi2sy88m-perl-5.34.0.drv /tmp/guix-tests/store/p0p0ab2zq1p1332h5x07wixh0r7am998-coreutils-minimal-8.32.drv /tmp/guix-tests/store/z2x6zgpv6gzyp12b4a5ikr6n75yws86b-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/6ank9bknb1f95kcvir5v0jnpzxa07ir3-tar-1.34.drv /tmp/guix-tests/store/vgkjb9gr1mc39k5c46arbjbks15b35cj-tar-1.34.tar.xz.drv /tmp/guix-tests/store/bnnng57rswby8xhvzy9vjwmwh1xc80m1-tar-1.34.tar.xz.drv /tmp/guix-tests/store/cj7y0ngqdj3r2yx6grcqb1ppkgpyb8b8-bzip2-1.0.8.drv /tmp/guix-tests/store/5dpcig3kzm5vrskw80977ifgblkcffwr-bzip2-1.0.8.tar.gz.drv /tmp/guix-tests/store/dpgm59v7m8p8hi1ci2jv43a84l67qlqa-file-5.39.drv /tmp/guix-tests/store/g3vzcjpysp0hcl7wnwjykpi3ps1fgjyk-make-4.3.drv /tmp/guix-tests/store/9mk3x98kxqdz034rj1rmilij0grz3kc7-pkg-config-0.29.2.drv /tmp/guix-tests/store/g6hrlky5sy7nz3kg0whxq44xfpc6r8z8-patch-2.7.6.drv /tmp/guix-tests/store/600hnwvm1w09da6mrjfdvqkl0ld96gg7-ed-1.17.drv /tmp/guix-tests/store/5z89n7v0b8mnswpaiw3j9anva591lbva-ed-1.17.tar.lz.drv /tmp/guix-tests/store/6zfa9zfpig9kxc1ciaxhxlif7rj96h6k-lzip-1.22.drv /tmp/guix-tests/store/i2a9klhfkfyfrqfsqbmyy60mdgbxjb34-lzip-1.22.tar.gz.drv /tmp/guix-tests/store/a7b5882ma5bii2isrc81wad9qig922m9-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/h9837470b7xbdc5045rfq4q8p50pnayr-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/jqlmsrpnnww1qq08n9dm8wnk4y2jcl8f-findutils-4.8.0.drv /tmp/guix-tests/store/p62d7v83mfzh9q2gr238iw1iwzaa54bb-gawk-5.1.0.drv /tmp/guix-tests/store/jnl5s25mlvhhx7513mf7wxnjf9k12bwb-gawk-5.1.0.tar.xz.drv /tmp/guix-tests/store/lddc2s21apl8jzayr0qh8z4jv37qzgk6-libsigsegv-2.13.drv /tmp/guix-tests/store/p7ch1zpda76ng44lcylkmvkqj9p6rrbj-libsigsegv-2.13.tar.gz.drv /tmp/guix-tests/store/xdjpbx97b8xwxv0y5f3vbj269512m5za-sed-4.8.drv /tmp/guix-tests/store/a8fn7nd882wxpcxmfmlhdy9nn3hxq3h5-sed-4.8.tar.xz.drv /tmp/guix-tests/store/6a35xdllgbxwfk369rmz03qqh76m1i83-sed-4.8.tar.gz.drv /tmp/guix-tests/store/zirq8ypbjch79fc9xrkpm0d6lbb9im9q-ld-wrapper-0.drv /tmp/guix-tests/store/zvam0j9fwpnd11c43lawwamw1fxhdq8z-xz-5.2.5.drv /tmp/guix-tests/store/c2p3ba4bkm2ddllr61lf83ksy2ji326g-xz-5.2.5.tar.gz.drv /tmp/guix-tests/store/8k44mfp0hsvy3q4yxfrb0m6495zjf7dp-pkg-config-0.29.2.drv /tmp/guix-tests/store/azrmgrz2mshmic3hmiwmbl81x6v719d0-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/c7dmh3kaihk8n1ya0b4bqdmgmjjzyham-libgc-8.0.4.drv /tmp/guix-tests/store/k9jkyk4qwbcwh9nd9yvhghgkmpz8wrg5-libffi-3.3.drv /tmp/guix-tests/store/94iz0h14l7wvg9m7kwv9sycs0bq1khnb-libffi-3.3.tar.xz.drv /tmp/guix-tests/store/pgvp468v34dplcwzcw4km0j03wj73lz6-bash-minimal-5.1.8.drv /tmp/guix-tests/store/fshyvm6adcq7hw62v89zisypdl5ilxd9-bash-5.1.tar.xz.drv /tmp/guix-tests/store/8l20rv7jrwmb0lbrljj1q16dlqr5gsb0-libgpg-error-1.42.drv /tmp/guix-tests/store/k1wvwaxbn0zxdkn42ipghkjk3ralg5db-libgpg-error-1.42.tar.bz2.drv /tmp/guix-tests/store/lyb9a6nkfl8g0bgyjnn239w8ikrjjgib-gettext-minimal-0.21.drv /tmp/guix-tests/store/3hdq83yb29ijw91bqijzx896y06a11m5-gettext-0.21.tar.gz.drv /tmp/guix-tests/store/8jiqwcn2fxs6zjp71pr4iz0l7kq62jgi-zlib-1.2.11.drv /tmp/guix-tests/store/hizh2pv4afqhci3fspmnwkl24qvz7mmf-libxml2-2.9.12.drv /tmp/guix-tests/store/20icgpa30z6rlkbqwn141p9pbi14n37m-libxml2-2.9.12.tar.xz.drv /tmp/guix-tests/store/7rpjscyfv3gwj8fwc39xhymq0qxrngrh-libxml2-2.9.12.tar.gz.drv /tmp/guix-tests/store/fy16mi1xm2vmbhj017ggfxg4a0h77nim-xz-5.2.5.drv /tmp/guix-tests/store/hwppn7f1mws18zsk2n53klrwlpmlr124-perl-5.34.0.drv /tmp/guix-tests/store/gqx7l2gzp88gif0az3dqg0r3wl0yij3w-coreutils-minimal-8.32.drv /tmp/guix-tests/store/jcn6z8hnhyls6g48hk8y5x5kzhliv6d5-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/wb6kx05hi2a99pbcac0i6yd176sll04i-perl-5.34.0.tar.xz.drv /tmp/guix-tests/store/wc435c6jb85m8f3xmcz5avwnqza1id91-ncurses-6.2.20210619.drv /tmp/guix-tests/store/3dgf4kwi1nvcy95nn020di0klkjg9s19-ncurses-6.2.tar.gz.drv /tmp/guix-tests/store/rzh9fakqivjd02wpx26wis4dh5mhmjjr-ncurses-6.2-20210619-patch.sh.bz2.drv /tmp/guix-tests/store/bha2smigk61y51cl0brvr1ds6wiscrik-texinfo-6.7.drv /tmp/guix-tests/store/kjfzhznvhq6ygrqn76zwxpnyq746n3az-libgcrypt-1.8.8.drv /tmp/guix-tests/store/0272fnn9cjcp9lkv586jsim8qq7aq8if-libgcrypt-1.8.8.tar.bz2.drv /tmp/guix-tests/store/lcfbv652p20b6rcm3w61z1dg3bi4z94q-guile-gcrypt-0.3.0-checkout.drv /tmp/guix-tests/store/11jcipdfmlnygkksr489gq0420lsnq7p-guile-zlib-0.1.0.drv /tmp/guix-tests/store/pnhz6swwip33aa2pzp16jqjb6p1nvcaa-automake-1.16.3.drv /tmp/guix-tests/store/pwnhk4lmjcb626qj1d9l4zhi87gfns5p-autoconf-wrapper-2.69.drv /tmp/guix-tests/store/dwpdx1cxzk3yxxlxzpxl7ykj3hsqx6ky-autoconf-2.69.tar.xz.drv /tmp/guix-tests/store/pl3xwmvlg60isx6aq8gn52h7jamq0c07-m4-1.4.18.drv /tmp/guix-tests/store/xjsp9pbxvr0hwpi5ykzlz1kinkjcxybb-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/ry30lchbhfr56ddqxblgdy37ab7irxnj-autoconf-2.69.drv /tmp/guix-tests/store/qry2r79hhzyl31nr6ry1pqs4b86ykv09-automake-1.16.3.tar.xz.drv /tmp/guix-tests/store/9mhn9vqx0x9smnqkgd609mrh9r3m8w38-automake-1.16.3.tar.xz.drv /tmp/guix-tests/store/xhx26v8vkr3arnw630z4hjrsf2hzymq3-guile-zlib-0.1.0.tar.gz.drv /tmp/guix-tests/store/1nxdsds0mhd1lbgiar5qrd1yf2fpz4an-gnutls-3.7.2.drv /tmp/guix-tests/store/23j6x323q3rc4nqvapmw41h5p22vcxrk-which-2.21.drv /tmp/guix-tests/store/1nvf74rjkzjxp59kcck0wgjbdfn0vfs3-which-2.21.tar.gz.drv /tmp/guix-tests/store/3wrg5lcgzysjr5srqdfsl61svva1k3ks-gnutls-3.7.2.tar.xz.drv /tmp/guix-tests/store/rn6k3anl07fkgpsqgz9r478vw5dmdy81-gnutls-3.7.2.tar.xz.drv /tmp/guix-tests/store/bwdfif6x0805bv262gcg26yj0i8pmahc-libidn2-2.3.1.drv /tmp/guix-tests/store/g1gf7w2l8jqi2fvakfla7wsi30idhs1x-libidn2-2.3.1.tar.gz.drv /tmp/guix-tests/store/hnilzisybg688ddgizx3w5d63w8qs05g-gmp-6.2.1.drv /tmp/guix-tests/store/wwlwl85r9hg1cknaw9wjagp2qgqy62mm-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/y5m24mds14ncjlrwldfng8xkmmjhjj3h-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/k3sxxnpd3rpxb6c2idc1k4wj3ll1cyq8-nettle-3.7.3.drv /tmp/guix-tests/store/ash166sr7hzjjfh3kc8qrg8j9zd3bxac-nettle-3.7.3.tar.gz.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/3y8z12v0g2ai2hr9rfwlrvm25dxz3bm4-util-linux-2.37.1.tar.xz.drv /tmp/guix-tests/store/ksjqykwy7gykgdpjyc01bdh2fg3mmblr-util-linux-2.37.1.tar.xz.drv /tmp/guix-tests/store/h8828pl50ix2h5p87vykbqak1v9zq4rm-file-5.39.drv /tmp/guix-tests/store/z131mia9hl1qclyhsfyhh9jxm04c9gcf-net-base-5.3.drv /tmp/guix-tests/store/1b9jlbrqhjl1f6lmhb24h7v88jrsr0xi-netbase_5.3.tar.xz.drv /tmp/guix-tests/store/bd7scd6k3x51i3y9r7gbajqhd4a8jq7y-tar-1.34.drv /tmp/guix-tests/store/3hbcvhf4yl83hy918rv05rfq0yg16grv-tar-1.34.tar.xz.drv /tmp/guix-tests/store/nljx6lmvcpmvhysmykn7p34gbsisri10-socat-1.7.4.1.drv /tmp/guix-tests/store/npdcrdnmz4xc181ndn4lz5qy36ai2l5v-openssl-1.1.1l.drv /tmp/guix-tests/store/w49g2dpvf7ryrifm52gyv43mjm9gmadq-openssl-1.1.1l.tar.xz.drv /tmp/guix-tests/store/9cyf1qifhj2h699r562q4lflx66bqvws-openssl-1.1.1l.tar.gz.drv /tmp/guix-tests/store/rkfa70mbh893zvvgzkw7fxjskj27n5cm-socat-1.7.4.1.tar.bz2.drv /tmp/guix-tests/store/rhd80g918d5ig6z136wn6r809s4qp5wk-datefudge-1.23.drv /tmp/guix-tests/store/0yzp4sn3iddyjjszlxffd9n227yvms7z-datefudge_1.23.tar.xz.drv /tmp/guix-tests/store/dwcd2jc7jfnyl8kg4k0hs9722pilczjw-datefudge_1.23.tar.xz.drv /tmp/guix-tests/store/s4gbsg874c932hy6kvxzpv0khfc9ih5p-p11-kit-0.23.22.drv /tmp/guix-tests/store/8jmsds3s0j33mkr6wjni6ywzr0cribzd-p11-kit-0.23.22.tar.xz.drv /tmp/guix-tests/store/sxxpsj6q99zhxxzabqhc4nrk8ri05z55-libtasn1-4.17.0.drv /tmp/guix-tests/store/rbf07kjifkgxbs2dyns6k9qp00i9mm84-libtasn1-4.17.0.tar.gz.drv /tmp/guix-tests/store/vcyfmww6m86bh1hbbkf9c1s1mfcbdbl6-net-tools-1.60-0.479bb4a.drv /tmp/guix-tests/store/09k8xbs5m1d5b5i4xbr5xv4833ps0yyf-net-tools-1.60-0.479bb4a.zip.drv /tmp/guix-tests/store/amyqdn43835z8n4nr7mnm2v8438bfkrg-unzip-6.0.drv /tmp/guix-tests/store/5sfchzcg8c9jdly24h3hspbddfcxrgmv-unzip60.tar.xz.drv /tmp/guix-tests/store/g1laxgrn8h1zyrjy9gd9901sjzx69b33-unzip60.tar.gz.drv /tmp/guix-tests/store/hplrcllrlfjklmp6wi4pxq482gnvbqmi-bzip2-1.0.8.drv /tmp/guix-tests/store/wdmrfjybsq9nb2v1zagr9nc0gc2amxwf-iproute2-5.15.0.drv /tmp/guix-tests/store/3gzp4wxrxblp5z27kmknjqccg9zwvcan-iptables-1.8.7.drv /tmp/guix-tests/store/3dr5pwp604s695mx7zyzyygm5nfj3kl3-libnftnl-1.2.0.drv /tmp/guix-tests/store/hqadr2qrs8aj4w2cb8bhg49zgndw4vpa-libmnl-1.0.4.drv /tmp/guix-tests/store/zcxykwwyg4hd3a6g18g5hh27gsjmivkx-libmnl-1.0.4.tar.bz2.drv /tmp/guix-tests/store/y46dhypls1ygjnsskm9xm9gz1n6k9y4r-libnftnl-1.2.0.tar.bz2.drv /tmp/guix-tests/store/7vpjgw85wsraa2a7bp7ln5ilcdk3sbvx-bison-3.7.6.drv /tmp/guix-tests/store/90an45ybmxxdk2j5j9fv0ji8q7iyyiav-flex-2.6.4.drv /tmp/guix-tests/store/g6msfm26i8b5h396504c8110yibnh7l8-help2man-1.48.3.drv /tmp/guix-tests/store/0d6iv542mz1li1lai6v0dc6pzikq5b8r-help2man-1.48.3.tar.xz.drv /tmp/guix-tests/store/7xam65p8mwva5k7xf7fi931600x5qi93-perl-gettext-1.07.drv /tmp/guix-tests/store/468lblrdf3cv2w8a3j3r48blb7vb1ymk-gettext-1.07.tar.gz.drv /tmp/guix-tests/store/5bb0bvrqz67ijc9ihw938dlb0rrh0srw-module-import-compiled.drv /tmp/guix-tests/store/yzyjm7g0zaa5gzfqyyg2r4nqib0nj27f-bison-3.7.6.drv /tmp/guix-tests/store/znp4jcsv6rjw93am0db8c2smkaywj1ni-iptables-1.8.7.tar.bz2.drv /tmp/guix-tests/store/idxr9ffaks89mrbx1yjly4ibwhif0i0x-iproute2-5.15.0.tar.xz.drv /tmp/guix-tests/store/r754ad1aprcp89353a6qjakps2walryc-bdb-6.2.32.drv /tmp/guix-tests/store/h1wymwl4qwbcapsidm5zzglkhyq0cfpr-db-6.2.32.tar.gz.drv /tmp/guix-tests/store/f6lajahpqi1dd9crj60g1mbkik0yaamz-git-minimal-2.34.0.drv /tmp/guix-tests/store/14ri30vi1hxr0rsjv8pypbgvc4fvkvya-curl-7.79.1.drv /tmp/guix-tests/store/1nxdsds0mhd1lbgiar5qrd1yf2fpz4an-gnutls-3.7.2.drv /tmp/guix-tests/store/6va9q19n8h6j6h1cn9pkb8dwm9f0wvrk-mit-krb5-1.19.2.drv /tmp/guix-tests/store/ji5s8y4cw4nbf83h85h9lzs1fz1ljb0y-krb5-1.19.2.tar.xz.drv /tmp/guix-tests/store/mzyfxingdk4xvk4z37fsbk1192sdmf4w-krb5-1.19.2.tar.gz.drv /tmp/guix-tests/store/v7y9lvr7ca443v56c3rxvgm1rgwp81ci-tcl-8.6.11.drv /tmp/guix-tests/store/s1g0w4mmh61sjiwhby8xc5hd8jnx46xy-tcl8.6.11-src.tar.gz.drv /tmp/guix-tests/store/8hkyk814a2042g5cbmaz8d37kg6158bf-curl-7.79.1.tar.xz.drv /tmp/guix-tests/store/rr2517yxgyayknjyfv70j79m9k4gfn7d-curl-7.79.1.tar.xz.drv /tmp/guix-tests/store/8ngxgsybz3sfw773wj43v9hfdi8gk1m6-python-minimal-3.9.6.drv /tmp/guix-tests/store/19cjj4qn5nplk3x2sfammqpg9hlf9sbr-Python-3.9.6.tar.xz.drv /tmp/guix-tests/store/iria8q3qidpz2bjm49v2winn3vjxypp8-Python-3.9.6.tar.xz.drv /tmp/guix-tests/store/c9lcckp47bak9j8ksxjc6lac7fhlqi8r-zip-3.0.drv /tmp/guix-tests/store/ywkmbnkp6n7jpqx1j1q80lha47ivmr3a-zip30.tar.gz.drv /tmp/guix-tests/store/kkly0bjdn3vckm8daniz6y9jrs42idz0-expat-2.4.1.drv /tmp/guix-tests/store/lxp25j1rqh9g4akh9ya7ck8vhaiz0q8k-tzdata-2021e.drv /tmp/guix-tests/store/g6ssndxfwf9f2584zdyvd85hkxxhgs02-tzdata2021e.tar.gz.drv /tmp/guix-tests/store/yyajwl02cfrwaprvxxbn96wy6nzzgv6j-tzcode2021e.tar.gz.drv /tmp/guix-tests/store/jjzdbgvha4lxmxgihvm0iyj8hmkr9cap-nghttp2-1.44.0.drv /tmp/guix-tests/store/3qchlvj4csg1nd06ya59lxj5r5qq7bda-nghttp2-1.44.0.tar.xz.drv /tmp/guix-tests/store/4y27gha09kld75zshnmyia57xmq9mjjs-cunit-2.1-3.drv /tmp/guix-tests/store/fks2jq3fqflm3n0fvyrkcr3g4r1kb56z-libtool-2.4.6.drv /tmp/guix-tests/store/bphi7f415ca2fksfcjnixy661321llxb-libltdl-2.4.6.drv /tmp/guix-tests/store/r6d7n4ilf0f7cfaxyyikjcpmvjmcir5r-libtool-2.4.6.tar.xz.drv /tmp/guix-tests/store/r4rjin6gzz0bcaiwmsb2hvgcjq7hmag8-libtool-2.4.6.tar.xz.drv /tmp/guix-tests/store/s98b1fzvmhdziamv2858fz9k6g69xgzb-CUnit-2.1-3.tar.bz2.drv /tmp/guix-tests/store/60z6gh840cqa4lrnzfwx0iw2xnrqghph-jansson-2.13.1.drv /tmp/guix-tests/store/36fdhi8is3d52wcqpjk7sr7xh79xvb10-jansson-2.13.1.tar.bz2.drv /tmp/guix-tests/store/bwd5pzh2j9xqi7k5nndj52a78y0sq61a-python-3.9.6.drv /tmp/guix-tests/store/12ai3gxrj1m3ij8gv22sb5dgcpv3ng20-util-macros-1.19.3.drv /tmp/guix-tests/store/z4z0ha93rk5m4x9grynk62p7j054kry1-util-macros-1.19.3.tar.bz2.drv /tmp/guix-tests/store/1s6xwrs17i1nl62vabiz3gbgf3ljld88-readline-8.1.1.drv /tmp/guix-tests/store/ckb9nzpjh8qcrxi0izalc673a372zxsj-readline-8.1.tar.xz.drv /tmp/guix-tests/store/4zjjf1h3imnzd43nzbr29ws926chi6gy-readline-8.1.tar.gz.drv /tmp/guix-tests/store/pgz10hw4hia626xbjlyhzir277nw2934-readline81-001.drv /tmp/guix-tests/store/6d8ybzkz8rm5vcl79664443pqpa2hf2x-libxdmcp-1.1.3.drv /tmp/guix-tests/store/fkm1lq1yjjyi0g04qpp94c2g9z6zfq6v-xorgproto-2021.5.drv /tmp/guix-tests/store/gfn93s2dy2z4rqrbpmj3pz8gwfaf4wkd-xorgproto-2021.5.tar.bz2.drv /tmp/guix-tests/store/j63dxva124aj5n41h0g0g3h62wwdl04q-libbsd-0.10.0.drv /tmp/guix-tests/store/4qamifn14izjih5n74kaym42g0gbh1x3-libbsd-0.10.0.tar.xz.drv /tmp/guix-tests/store/jqgv2x635lvd45lkgizn8ww88mm38pkl-libXdmcp-1.1.3.tar.bz2.drv /tmp/guix-tests/store/b2axffmpy7xpra7ad1q05j47nvr1wvk4-libx11-1.7.2.drv /tmp/guix-tests/store/8kr3mbm12vs5h453w43mbv24qh2i369z-libX11-1.7.2.tar.bz2.drv /tmp/guix-tests/store/l1vjnxwvn0n2pj717i8ankxgqr37qjaq-libxcb-1.14.drv /tmp/guix-tests/store/1sv0g93b0fpbsqm91qrd8rzsi4ghprg1-libxcb-1.14.tar.xz.drv /tmp/guix-tests/store/ggdnn1b7zfnixx3y8p7pa5f7rrslgil0-xcb-proto-1.14.drv /tmp/guix-tests/store/4g0ciqbdh73xkcx6iyzvxx458fy72vj6-xcb-proto-1.14.tar.xz.drv /tmp/guix-tests/store/nicc7434l857m6pn1nldrl1iycvfa6z2-xcb-proto-1.14.tar.xz.drv /tmp/guix-tests/store/w0q72700i2v48ik05jaak38g4n1340pk-python-minimal-wrapper-3.9.6.drv /tmp/guix-tests/store/xdk1lfrcd51g7i2i7lkmbyjpyzipc2zm-bash-5.1.8.drv /tmp/guix-tests/store/vkixsak7qv5jsim76sa7zkq0sjm8ffv0-libpthread-stubs-0.4.drv /tmp/guix-tests/store/hwdxl7fny9sh7034hfkcxjma8pcy107n-libpthread-stubs-0.4.tar.bz2.drv /tmp/guix-tests/store/w0dwmy34rs10n7rh100j3c1v7fdk1q95-libxau-1.0.9.drv /tmp/guix-tests/store/5fdjjbsmgaf73lmfbwp1syzi9dpfj4ki-libXau-1.0.9.tar.bz2.drv /tmp/guix-tests/store/z4scfly9fws2q3k097x2fiyml2xjms6q-libxslt-1.1.34.drv /tmp/guix-tests/store/0fgn8iqagrz9d8hzakkjbcfyh95l7mm7-libxslt-1.1.34.tar.xz.drv /tmp/guix-tests/store/1da1kh5yvmxq3kspiqgsfdnrnqrh17qi-libxslt-1.1.34.tar.gz.drv /tmp/guix-tests/store/m79hnhjw3i1y99xwf7rg771xhf99hdvy-xtrans-1.4.0.drv /tmp/guix-tests/store/8jwhbqwafy7haqjkk15bmx8cg1ybyhp7-xtrans-1.4.0.tar.bz2.drv /tmp/guix-tests/store/di8hlsnfacip72sxzhi8k8fd0pzrv7zk-gdbm-1.20.drv /tmp/guix-tests/store/7yjcgjpgnh7szk10rdki8wqpnvnzhs8b-gdbm-1.20.tar.gz.drv /tmp/guix-tests/store/psxi5c3yvv4xm3mif8ddaswmjp0wbk28-sqlite-3.36.0.drv /tmp/guix-tests/store/zf5y36j726cfri6m6c7951hw0i499rrz-sqlite-autoconf-3360000.tar.xz.drv /tmp/guix-tests/store/a84rbsxnyx15jdg82xdn164qa96dnn9k-sqlite-autoconf-3360000.tar.gz.drv /tmp/guix-tests/store/pxrv528rakvqw4sjjlb0wmnvjyia39w9-libxext-1.3.4.drv /tmp/guix-tests/store/73whp8srb8nr5c5zn11xrrq0nl0sa1wh-libXext-1.3.4.tar.bz2.drv /tmp/guix-tests/store/xmb8zw25ydf9qncq91waj3c4hpdnbsjh-tk-8.6.11.1.drv /tmp/guix-tests/store/1kk2vqp36s9d5594hbd40f2pbzls7xnz-tk8.6.11.1-src.tar.xz.drv /tmp/guix-tests/store/8dnfigpzdy1hdhfa46gix97zfnvn2lv7-tk8.6.11.1-src.tar.gz.drv /tmp/guix-tests/store/2lbg1pwja5lnn0jd69pr7rqc1wf73mn4-libxft-2.3.3.drv /tmp/guix-tests/store/a42jslaiw3n7pbr73f9nqx5jga5lny9b-libXft-2.3.3.tar.bz2.drv /tmp/guix-tests/store/g1cg0xh5ii9mc9zwxf0ahlfj74zr9r5x-fontconfig-minimal-2.13.94.drv /tmp/guix-tests/store/b081xw509nqg9jchl062lllxsp3gixwf-font-dejavu-2.37.drv /tmp/guix-tests/store/0dm5a4akpbvz5adfck7z5n71k3grnq6h-dejavu-fonts-ttf-2.37.tar.bz2.drv /tmp/guix-tests/store/bw6h4j46crzwmw15xq1mj4fg2hwym9xi-module-import-compiled.drv /tmp/guix-tests/store/kwcb79jcnimag8dsp16p0xyivpz4yf9c-gzip-1.10.drv /tmp/guix-tests/store/gnn656w5ai6h3y71lzq6aflc69p5b8si-freetype-2.10.4.drv /tmp/guix-tests/store/913xvnkyjyr9wpy5yyq4ald01vynvxj2-freetype-2.10.4.tar.xz.drv /tmp/guix-tests/store/p218ymga1ixpjhqvkkwx5jr74ln7qcy7-libpng-1.6.37.drv /tmp/guix-tests/store/ds8l06mgv1llghrqqydj8v244ck0gss0-libpng-1.6.37.tar.xz.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/nh1kzsk0kaip51ys6yigh7za0b4n0abc-fontconfig-2.13.94.tar.xz.drv /tmp/guix-tests/store/3hzm9r3k2gzfinka6m0vfn3ny7fk734i-fontconfig-2.13.94.tar.xz.drv /tmp/guix-tests/store/w537jrzzh9517wcnq8dg4hkcf31yfri6-gperf-3.1.drv /tmp/guix-tests/store/avqyx04y2by5q8sh0bn658dm8l2gbf3i-gperf-3.1.tar.gz.drv /tmp/guix-tests/store/y567js4v5n504frabyip2lfbs3d8c9s9-libxrender-0.9.10.drv /tmp/guix-tests/store/aajf4cc26g4y84h7kzgmsxqz8pkvyica-libXrender-0.9.10.tar.bz2.drv /tmp/guix-tests/store/hmz6j0m3l356zwf5qhii500fgbxsl0vd-c-ares-1.17.2.drv /tmp/guix-tests/store/95p5v1wqiih9i1jwnrsc8vzvhjdxl8lk-c-ares-1.17.2.tar.gz.drv /tmp/guix-tests/store/irmq4qan6pd9irm70xalv20ygb1n7vqm-jemalloc-5.2.1.drv /tmp/guix-tests/store/b90sxmfg5bn0qmb6kz9vs2lxy12pq4f6-jemalloc-5.2.1.tar.bz2.drv /tmp/guix-tests/store/kgvidm7g4c95ayvyb9hidjqbrlwq2210-libev-4.33.drv /tmp/guix-tests/store/j9hk17nyqdv3pj81nsa77njxl3pr9jjj-libev-4.33.tar.gz.drv /tmp/guix-tests/store/kyc7hx0zj21kry7mxj8ks6sid1apvl6x-libidn-1.37.drv /tmp/guix-tests/store/6jcak9dw49dz4dl84206wzgr4n09vnk0-libidn-1.37.tar.gz.drv /tmp/guix-tests/store/gnj35c1cx3d65n0nffwb0vjskp8znxj1-git-2.34.0.tar.xz.drv /tmp/guix-tests/store/w3al8qd0l6y6h5ji67ampfck8qf25biy-guile-json-4.5.2.drv /tmp/guix-tests/store/2jsvq6g3mm0zd2bfysm3d5x0l9qignqh-guile-json-4.5.2.tar.gz.drv /tmp/guix-tests/store/zczss9jzfvg6w3218pyxf9rp3rc5p53k-module-import-compiled.drv /tmp/guix-tests/store/2q0vizlrfigfym166gjsxcm2v6zmjpzg-module-import.drv /tmp/guix-tests/store/8x5s2m9sqdk6sppr4382b93ygsbaijbw-config.scm.drv /tmp/guix-tests/store/40mp2k0naxpiapiq8dz8pzkhxcvvzx65-findutils-4.8.0.drv /tmp/guix-tests/store/kwlld6yi8abb567a1s52z11ravaiz3yn-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/82npksqpdaahimifykl7rkqnni5vfl7n-genimage-14-1.11bb044.drv /tmp/guix-tests/store/2gvqyn8k7ywbkc3fqhwkzqjgvfcn6bds-e2fsprogs-1.46.4.drv /tmp/guix-tests/store/1i9rb17bz35zswpdics7q5pnk8hd6m66-procps-3.3.16.drv /tmp/guix-tests/store/xwdwvpgbkqk0afqnmn8vyivgr137305i-procps-ng-3.3.16.tar.xz.drv /tmp/guix-tests/store/60ajy8fhp2pfznlx5ippk3y5lh05rqgg-e2fsprogs-1.46.4.tar.xz.drv /tmp/guix-tests/store/5ckv3dlvj7nj1m9jsfhbpafbqcma4fj4-mtd-utils-2.1.2.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/hiaa99jhg9xibrw26a4gx07ncb1vp42m-zstd-1.5.0.tar.gz.drv /tmp/guix-tests/store/d2x8jblqpi962y5x2zj1svy3p746mf45-cmocka-1.1.5.drv /tmp/guix-tests/store/0hxqizv2mkz7k6h2v6gbka5jks7pn4kn-cmocka-1.1.5.tar.xz.drv /tmp/guix-tests/store/6rbfyfard7972xp7gdlai8hsv2hsq4zn-module-import-compiled.drv /tmp/guix-tests/store/ln972qkvma2g6qwwcba09g1gmh1pamnh-cmake-minimal-3.21.3.drv /tmp/guix-tests/store/1mwnr87746w4yw62b7jxbbmd8dbc9rsv-libuv-1.41.1.drv /tmp/guix-tests/store/jljx74ak5ql238hg9hxipa17wmchmq04-libuv-v1.41.1.tar.gz.drv /tmp/guix-tests/store/59qygq2wky37iyjq9jl39b9zgbaj6yd7-cmake-3.21.3.tar.xz.drv /tmp/guix-tests/store/q6wx3cw7cynrx74l67dyqcdvlrvsqf5k-cmake-3.21.3.tar.gz.drv /tmp/guix-tests/store/adzkdxigm9w7v6w26nrwpjzy50dzrhyb-libarchive-3.5.1.drv /tmp/guix-tests/store/3j5idg9r07m0bj5d3kr157y4h63z296l-libarchive-3.5.1.tar.xz.drv /tmp/guix-tests/store/sjk59gnkp4vmkp60rq02pb2z5c0nik9d-lzo-2.10.drv /tmp/guix-tests/store/n01vi6wwqgrcgfwblyj944g4wk3z1b76-lzo-2.10.tar.gz.drv /tmp/guix-tests/store/mapkpngb78vc71h6hidaq1y1haimy9r5-rhash-1.4.2.drv /tmp/guix-tests/store/0c7n3q8x5ayj5ll7m16b9cl8yiwzdrcm-rhash-1.4.2.tar.gz.drv /tmp/guix-tests/store/pg9qr99nqpl4ibhih23dvsly9srcrird-jsoncpp-1.9.4.drv /tmp/guix-tests/store/9ksb8j9yl8y3mw76c02isd5c1zi7kgbi-jsoncpp-1.9.4-checkout.drv /tmp/guix-tests/store/4mdija5vd7149a9v9mwdmznw1pjgdfvp-jsoncpp-1.9.4-checkout.drv /tmp/guix-tests/store/vrn18j4438yk8x266hxm9yj1h338ij5w-cmake-bootstrap-3.21.3.drv /tmp/guix-tests/store/mxdsa1lnahn5hah35dkwpvlhdidrb5b9-cmake-3.21.3.tar.xz.drv /tmp/guix-tests/store/gg0897h8bc5p6ljc4yq74b2c4x7qsdsh-acl-2.3.1.drv /tmp/guix-tests/store/bfqcx4ji79m0igvagplbhha9h3hkhqgb-attr-2.5.1.drv /tmp/guix-tests/store/2pn4vdkzbg5gwjqskby89v8nrn84b66y-attr-2.5.1.tar.gz.drv /tmp/guix-tests/store/fdrp2n3bzzjzdb8im056pgcp98ccscna-acl-2.3.1.tar.gz.drv /tmp/guix-tests/store/hcs4d0v1jfy9pm395zn7hcv4s7iamyfx-mtd-utils-2.1.2.tar.bz2.drv /tmp/guix-tests/store/6411pxr1kk4g0jnc13yak20q2ca8ks44-genimage-14-1.11bb044-checkout.drv /tmp/guix-tests/store/fl68dfywj008igyr9wa9fvmdbmlg8spg-genimage-14-1.11bb044-checkout.drv /tmp/guix-tests/store/6vm4apwi19sbnh1qhxjz5ndjyhzx1dlj-dosfstools-4.2.drv /tmp/guix-tests/store/vmx7m2m8ckk2ih8z0jvsgnvfxf6yrqw8-xxd-8.2.3487.drv /tmp/guix-tests/store/ib6pk0mhk8vnppzbiz1iv5y2bbxhwvp5-vim-8.2.3487-checkout.drv /tmp/guix-tests/store/yqcbbbanifkf14prmpgzk3212sh1jhbc-dosfstools-4.2-checkout.drv /tmp/guix-tests/store/br6gasx4f29jq55lcwn3qc9yg2l1lzyn-libconfuse-3.3.drv /tmp/guix-tests/store/j0c7pnq820r7r703nps68i5xj6q17hqw-confuse-3.3.tar.xz.drv /tmp/guix-tests/store/dw2gg8yj5hck33w5nkh7crdmkbqgfc13-squashfs-tools-4.5.drv /tmp/guix-tests/store/1wv9lkgzxfs0f0qhbwkyjz59qp4i7haw-squashfs-tools-4.5-checkout.drv /tmp/guix-tests/store/9hjylqx90b24zc48i1rs87fn1laxcbaq-lz4-1.9.3.drv /tmp/guix-tests/store/5kyr84znk1llqw0hk0wfgq6pv94c90ys-valgrind-3.17.0.drv /tmp/guix-tests/store/s7njaa84r894m76jfq3gvv4k7iav4j5r-valgrind-3.17.0.tar.xz.drv /tmp/guix-tests/store/nkxjl1qkpnhh6wg6zklyf59qjk6cpx7d-valgrind-3.17.0.tar.bz2.drv /tmp/guix-tests/store/ncjw157s7k071ih8r48gvf5qjkq4skpk-lz4-1.9.3-checkout.drv /tmp/guix-tests/store/fc3ksvjvblm1x2k1ycrmc3j39zis69sv-u-boot-tools-2021.10.drv /tmp/guix-tests/store/00869marixcrqj5axm0bm3by8nxh1pd9-swig-4.0.2.drv /tmp/guix-tests/store/64vl8sv5q10x0wx5qz2yr1a966grs27k-boost-1.77.0.drv /tmp/guix-tests/store/6wf8ybg4ad5ndbsykaffzyrifh4rjxj6-boost_1_77_0.tar.bz2.drv /tmp/guix-tests/store/ahxbd7r4pwpz7plklqq9jr1rk48xv3zl-tcsh-6.22.03.drv /tmp/guix-tests/store/glxl883f74gazyldc9rjzqcnh1qgb1xk-tcsh-6.22.03.tar.xz.drv /tmp/guix-tests/store/5ggczxi2i04vd81yh42v7sg0lr0bv5fs-tcsh-6.22.03.tar.gz.drv /tmp/guix-tests/store/j4rdkmgmv5gf07mh13q2p8sizfqi0zcx-module-import-compiled.drv /tmp/guix-tests/store/mwgh318v1ma3idnj3l4vsbn71yh9rkhx-icu4c-69.1.drv /tmp/guix-tests/store/97bz00wrbbwn79skw5m5a22qz7hwrrlg-icu4c-69_1-src.tgz.drv /tmp/guix-tests/store/sdw1p14wrcjqjz0r3jmsywy0lh3nms0r-swig-4.0.2.tar.gz.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/hvih1zpzxk0mj9qpfwh02cxn0cn9zwj9-pcre-8.45.tar.bz2.drv /tmp/guix-tests/store/07n9ps8hpmbkbhwsbmkd6jk8jx9j5mqj-bc-1.07.1.drv /tmp/guix-tests/store/0yaz8903406bdjggf3qci4xfl3v9v1vw-ed-1.17.drv /tmp/guix-tests/store/11vvvvwwd3ssyla9jjsy0kal6jsg2kg1-lzip-1.22.drv /tmp/guix-tests/store/4w46qd2mgv12i9xrp7rrknsgx9xgvgzy-bc-1.07.1.tar.xz.drv /tmp/guix-tests/store/b3js201yr9f5iqs9frwq49hrlrbap0ja-bc-1.07.1.tar.gz.drv /tmp/guix-tests/store/0f4v143sf9hrkqmqs5ysjazlzhzi5sh0-libxfixes-6.0.0.drv /tmp/guix-tests/store/knm8n2122bxqf1dibappak4hpcc376q2-libXfixes-6.0.0.tar.bz2.drv /tmp/guix-tests/store/1d43ppzhvv8ss51649knyyqqiy50zl0m-python-pyparsing-2.4.7.drv /tmp/guix-tests/store/2mjimlk8rz6yb79r9qbb3v2f232m9qkc-pyparsing-2.4.7.tar.gz.drv /tmp/guix-tests/store/cm8zp3pqpg7c94yhpzfmkrmhhsny6ykl-python-wrapper-3.9.6.drv /tmp/guix-tests/store/1vwqa9dkwhggp5i5c6f4r5mhrm9jnr05-libpciaccess-0.16.drv /tmp/guix-tests/store/1633zavvypdlxn33xscws5dixkxk2xvj-libpciaccess-0.16.tar.bz2.drv /tmp/guix-tests/store/fpmwwkafs0ppcp478m82vsk4qbqb6bxl-pciutils-3.7.0.drv /tmp/guix-tests/store/41lndimrmc5h40wjqwbdbsj98fkmpwgi-kmod-29.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/64i36988f5cw6y2cmjyvs70rqxhqxkqc-kmod-29.tar.xz.drv /tmp/guix-tests/store/fplbsi54rvw8krf6rqv86p5514p5lhbk-kmod-29.tar.xz.drv /tmp/guix-tests/store/p8bzhrqn88y4v6sysrkpld645vnv3mf1-pciutils-3.7.0.tar.xz.drv /tmp/guix-tests/store/7zj0chwvkz7bgkhvji1q7khz6538z2gv-pciutils-3.7.0.tar.xz.drv /tmp/guix-tests/store/4im9x2mbmjl1cn21s7l9kl29kn5wmw0j-python-six-bootstrap-1.16.0.drv /tmp/guix-tests/store/fz8jx0fx1i03ax2sf3c33r9y069ixahm-six-1.16.0.tar.gz.drv /tmp/guix-tests/store/5p0bvvky448923k7fylsdzgsv8fdppww-python-py-1.10.0.drv /tmp/guix-tests/store/cvhnybips1n2cy2yaw0yfhy1ar4lqphv-py-1.10.0.tar.gz.drv /tmp/guix-tests/store/mqg9wwykz0dmqjmm6zdh9wp5iqg9x9yw-python-setuptools-scm-6.3.2.drv /tmp/guix-tests/store/pirnb59cw9wr18ar7h2d195zhr74l3sy-setuptools_scm-6.3.2.tar.gz.drv /tmp/guix-tests/store/sklgjna5vkzr1kd9rp8czvnd3yvqlqhr-python-tomli-1.2.2.drv /tmp/guix-tests/store/72ikfq0yinwmnhiyxjwcgvzp5bwq78zn-python-flit-core-3.4.0.drv /tmp/guix-tests/store/v5qfxqkfbigl8ls0jpiki8jjzsj0fwql-flit-3.4.0.tar.gz.drv /tmp/guix-tests/store/yqplrl93igh8b2j8l3lcgkmqky2rddna-python-toml-0.10.2.drv /tmp/guix-tests/store/vgq2xxs4ami7pwd2r00f9jqzhd2a2l4r-toml-0.10.2.tar.gz.drv /tmp/guix-tests/store/c66fzdc43r5gnxm5cw2cs51swhyq3imj-python-pypa-build-0.7.0.drv /tmp/guix-tests/store/jams5qd3hs82bjqa55x7r2wqzglgcyjz-build-0.7.0.tar.gz.drv /tmp/guix-tests/store/sbn7vfhnjf0dv6vw732k2vkwf9yvjjqs-python-pep517-bootstrap-0.9.1.drv /tmp/guix-tests/store/w0cz8xk3pf2nzgibfdf3i3i3yb20hcy6-pep517-0.9.1.tar.gz.drv /tmp/guix-tests/store/w2a8nw7lpi8jv4hbp1pa0xb9gv94c56f-python-wheel-0.33.6.drv /tmp/guix-tests/store/ghnsg29srfi8xhjzq069a667zb883cfc-wheel-0.33.6.tar.gz.drv /tmp/guix-tests/store/w893c4ik91b1a8lkziqnm18i6kgbvx5d-python-packaging-bootstrap-20.0.drv /tmp/guix-tests/store/qxvrgxg6q9smn6z8nlrqrwnif93x9pww-packaging-20.0.tar.xz.drv /tmp/guix-tests/store/13xp6id4887qq28b6sc6h9wzhlkbksc8-packaging-20.0.tar.gz.drv /tmp/guix-tests/store/rla4c0kgqjcm16l79hqc54hxscai5n7k-tomli-1.2.2.tar.gz.drv /tmp/guix-tests/store/6f82h68g03inanl5236x60vil6j76awg-libdrm-2.4.107.drv /tmp/guix-tests/store/22qy2xj02x5al8jxzq6i5zqcwfsx29yi-meson-0.60.0.drv /tmp/guix-tests/store/9mn0kdb31jrchnp3zzgnvmgzcm1cd7ij-ninja-1.10.2.drv /tmp/guix-tests/store/lg5j257z460kqn5y2zpq9095qpyvvdx8-ninja-1.10.2-checkout.drv /tmp/guix-tests/store/gkxhhd51vbqrrv4x3bycsy2k12f5d0fm-meson-0.60.0.tar.xz.drv /tmp/guix-tests/store/jv39rkg0s8lmmag8r5x30mai1x5136r6-meson-0.60.0.tar.gz.drv /tmp/guix-tests/store/8sx78yf9lfd5nx3f1yl4bbb271vxilqj-libdrm-2.4.107.tar.xz.drv /tmp/guix-tests/store/na8q08f52nzbhfq7k420yjbpbvcws9d1-module-import-compiled.drv /tmp/guix-tests/store/6mqwsfbvl7920zmhkbpy11vian08irbr-libxdamage-1.1.5.drv /tmp/guix-tests/store/hhdgkq70mm1y3l7djrzlaihqr7fd8hpw-libXdamage-1.1.5.tar.bz2.drv /tmp/guix-tests/store/7ln83xypzs1vl81qli6m5psqyndblllg-python-coverage-5.2.1.drv /tmp/guix-tests/store/dvcqm0016nbby836mhj99s0d34ngbyak-coverage-5.2.1.tar.gz.drv /tmp/guix-tests/store/83x000x8nqk95j7xcxiswn62fzq1l8g0-python-attrs-bootstrap-21.2.0.drv /tmp/guix-tests/store/73jn0glzgd211jicb55dfp81m55k255w-attrs-21.2.0.tar.gz.drv /tmp/guix-tests/store/aakk35y3iiskxcis0k4kprvimmplbrda-libvdpau-1.4.drv /tmp/guix-tests/store/lharpkh073cnbsi3rxrp70r3zgvgxiy0-libvdpau-1.4-checkout.drv /tmp/guix-tests/store/fl2nwddxvck92m1r34azkwx6bppvqqqm-python-pycryptodomex-3.11.0.drv /tmp/guix-tests/store/0ikzbggbxsxnaw0anr2pd4c210d47sar-libtommath-1.2.0.drv /tmp/guix-tests/store/qsd4vs0qswgs6hh9rkfya7cx9qgjli0j-ltm-1.2.0.tar.xz.drv /tmp/guix-tests/store/25wwj0icd11m5wqnyfhyj1vbn081rw8z-pycryptodomex-3.11.0.tar.xz.drv /tmp/guix-tests/store/d206cwib577j0ckp9g5mhlscw2ira2jn-pycryptodomex-3.11.0.tar.gz.drv /tmp/guix-tests/store/immfvxjj20npmmz66j28i8m5nj94kabb-libtomcrypt-1.18.2.drv /tmp/guix-tests/store/c2dfzxrzczcmw5ijdvpgqzcnszczkr4q-crypt-1.18.2.tar.xz.drv /tmp/guix-tests/store/62p8g0kf19vmhibzjddyvjg68r4079y8-crypt-1.18.2.tar.xz.drv /tmp/guix-tests/store/iaf48jk9vsr5z7pxmk2in7izyc4gvvz0-sdl2-2.0.14.drv /tmp/guix-tests/store/0ldj9ylwxp5gj6wclzrm6g7p403s3bj1-SDL2-2.0.14.tar.gz.drv /tmp/guix-tests/store/2bfkk8g82aphfxphbk8ak8lgcqv7wgyl-alsa-lib-1.2.4.drv /tmp/guix-tests/store/bsc41dnqy1g2g0s2g36ai2cambjpmf69-alsa-ucm-conf-1.2.4.drv /tmp/guix-tests/store/q3cf9m524ahanwzkg921s9nzjwmzc5yx-alsa-ucm-conf-1.2.4.tar.bz2.drv /tmp/guix-tests/store/z73n3cdwj0jbw5frn2jffyai2nzb6pld-module-import-compiled.drv /tmp/guix-tests/store/kwcp0mcd5zsg7qzwq4r88kijrpjmvxx8-alsa-topology-conf-1.2.4.drv /tmp/guix-tests/store/zsnmj62w05savi7v9qnyjy3v9abcrpk8-alsa-topology-conf-1.2.4.tar.bz2.drv /tmp/guix-tests/store/p1n4m081mi2nsmfwq0p5zppcg3yg71b5-alsa-lib-1.2.4.tar.bz2.drv /tmp/guix-tests/store/2wq417gjv0inl2967yzh6wdd9fgn7m1v-fcitx-4.2.9.8.drv /tmp/guix-tests/store/0242g2kynspcrapaxcpjx3hcgya2syin-libxkbfile-1.1.0.drv /tmp/guix-tests/store/4dvrn7g9rna3b7qwabinffrpxy9izfg4-kbproto-1.0.7.drv /tmp/guix-tests/store/i06sm0vcw3fdhxj2rdcq2nyvsqgywraz-kbproto-1.0.7.tar.bz2.drv /tmp/guix-tests/store/is286vwd9yhi3rbm1hsnym42s8w2r4ih-libxkbfile-1.1.0.tar.bz2.drv /tmp/guix-tests/store/02706ifnsq3aqgj97scyl1dmsgm9jvq6-json-c-0.15.drv /tmp/guix-tests/store/910cb21n9r9rhsxdspc3rm1zy3pa5flc-json-c-0.15.tar.gz.drv /tmp/guix-tests/store/0kz1l7grxh2svc2n6dzxyns1dg5cbbrk-gtk+-2.24.33.drv /tmp/guix-tests/store/2cz4hv6dgp1l25c4jjvrq0afbrbcma0s-gobject-introspection-1.66.1.drv /tmp/guix-tests/store/49i46bq4kmzasvkl55d2a7is0p5ygf8h-gobject-introspection-1.66.1.tar.xz.drv /tmp/guix-tests/store/wpk723agq2ywwsnrpjpfsllid19y9547-gobject-introspection-1.66.1.tar.xz.drv /tmp/guix-tests/store/akwd6b9vagad50v50plfa2j7q1mh6h0z-glib-2.70.0.drv /tmp/guix-tests/store/2r6rbqbvgqi0msmajqz1ylv3hgv18p2r-libelf-0.8.13.drv /tmp/guix-tests/store/jxrg02rgaymp91llhihyygvj2mnar895-libelf-0.8.13.tar.gz.drv /tmp/guix-tests/store/63wvgyi3jk3aa3vbbhx14cbqnqivxh0n-bash-completion-2.8.drv /tmp/guix-tests/store/rws4frwzrw3fwd8nk53axbxjjbwsim5j-bash-completion-2.8.tar.xz.drv /tmp/guix-tests/store/x5mynqylgv1vrs9gmf63dfdih7n63q0w-bash-completion-2.8.tar.xz.drv /tmp/guix-tests/store/lhrcf8n28hh7a70slzcjcbwv8x876k7q-dbus-1.12.20.drv /tmp/guix-tests/store/f1pv7sj0vb1f4cff2xrlyfh5yykrvdvv-itstool-2.0.6.drv /tmp/guix-tests/store/p94shj49z9m8j2wq3jmskxvi7gbpzia9-itstool-2.0.6.tar.bz2.drv /tmp/guix-tests/store/xdi5126485gsw6mvx37vc6n5wr36yhfy-python-libxml2-2.9.12.drv /tmp/guix-tests/store/ddwzrp96zh4fch63w0n81acc65dc5n1q-libxml2-2.9.12.tar.xz.drv /tmp/guix-tests/store/frv94krkjsrdy4n0h78zjhbygv6iza09-docbook-xsl-1.79.2.drv /tmp/guix-tests/store/5c1aprdmpq422i3lz6gavkirf1vz7xl9-docbook-xsl-1.79.2.tar.xz.drv /tmp/guix-tests/store/3bz1xi8mifzvvihbff8fjpp5fs4ybiib-docbook-xsl-1.79.2.tar.bz2.drv /tmp/guix-tests/store/igkmyldvyjb57jg0kwhjsm0ddksk700a-xmlto-0.0.28.drv /tmp/guix-tests/store/wppi02xzax3c4ivvbhhfpsn9j9j1l52m-xmlto-0.0.28.tar.bz2.drv /tmp/guix-tests/store/qvrk2k11sm7wfgzxlc7mh46lp2s5iybl-dbus-1.12.20.tar.xz.drv /tmp/guix-tests/store/43mj9x70809bvm0xds686lf0xn5id1n9-dbus-1.12.20.tar.gz.drv /tmp/guix-tests/store/w1df50wgkyql0b8sj1cn65qn1jn098kh-doxygen-1.9.1.drv /tmp/guix-tests/store/np2m2v8p5hv89ffc1xd8kkjmc9x6dwvx-doxygen-1.9.1.src.tar.gz.drv /tmp/guix-tests/store/w4s80qcss3rvlnrqaznrnc9xx2b4hzhk-yelp-tools-3.32.2.drv /tmp/guix-tests/store/h3bk6giywb5dzhmlk2y3ypgzbaif1b2h-yelp-xsl-41.0.drv /tmp/guix-tests/store/63k0rqrvvqk30d2z0xha13bwid3sh5si-intltool-0.51.0.drv /tmp/guix-tests/store/i10li6jbqagg9mg77pvh813bz1zwpa1z-intltool-0.51.0.tar.xz.drv /tmp/guix-tests/store/5d6qr6jjk5nkmgsnkj73asahwa4ync42-intltool-0.51.0.tar.gz.drv /tmp/guix-tests/store/y2ndd5cyxiwy2n48a0is6vzcnwlw60fn-perl-xml-parser-2.46.drv /tmp/guix-tests/store/rrrrxprhj5v5kdxi5yf0sljhi3gndzq6-XML-Parser-2.46.tar.gz.drv /tmp/guix-tests/store/fsfrm6cpnmjalwkygqpx95afj75w3vsb-yelp-xsl-41.0.tar.xz.drv /tmp/guix-tests/store/vdcv3rxkk4dj6n06kh25fpfpk48sa42r-mallard-ducktype-1.0.2.drv /tmp/guix-tests/store/jdq6fhxdf28djx2avfwlpppq1wp8miin-mallard-ducktype-1.0.2-checkout.drv /tmp/guix-tests/store/vwfl23gk5shi4bslm74bixm45y7lajfc-yelp-tools-3.32.2.tar.xz.drv /tmp/guix-tests/store/x6vqn652f2kkdg0wx4mckn6nspqz43dd-docbook-xml-4.4.drv /tmp/guix-tests/store/0ksyjfjvnwf0rw3xq4b43khd19dnqxsb-docbook-xml-4.4.zip.drv /tmp/guix-tests/store/lw3vp2q5gazfwjnfh9f5i9mxyrsaqjh6-glib-2.70.0.tar.xz.drv /tmp/guix-tests/store/dwqa9sp2cs7sphy7psa1sspw8zyqs0yz-glib-2.70.0.tar.xz.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/518rx93g9y0dq7mbwhdpr0dqyzxcd0bl-libdatrie-0.2.13.drv /tmp/guix-tests/store/cqp8x0bnpjkxiy949h7c5kyivyrj8s4k-libdatrie-0.2.13.tar.xz.drv /tmp/guix-tests/store/5b5f15bbsrr5abjfvi1wv6h2lph85q4x-libxcomposite-0.4.5.drv /tmp/guix-tests/store/8zsn39cnnyrmc7b8ic4rd7ajm3hz6lp2-libXcomposite-0.4.5.tar.bz2.drv /tmp/guix-tests/store/6jm6dgzxbdi3viq4dg04q4gxvq44ycgb-libxrandr-1.5.2.drv /tmp/guix-tests/store/mka548gkivgws3s226k39ci3bvii4mvs-libXrandr-1.5.2.tar.bz2.drv /tmp/guix-tests/store/6nnsb5ij49hqrb38j1xzd51mkignsygs-cairo-1.16.0.drv /tmp/guix-tests/store/950nfjl37002pjyxkzmb003mq5xlix6z-libspectre-0.2.9.drv /tmp/guix-tests/store/l07rpf0f1yvxzgn8yji1zc5ya2g2zqx2-ghostscript-9.54.0.drv /tmp/guix-tests/store/5rh6x6j9gfl82193sxlvb474pb3nkrwc-ghostscript-9.54.0.tar.xz.drv /tmp/guix-tests/store/xx5hnbs01aba5dk246zqmvl9qwh9j460-ghostscript-9.54.0.tar.xz.drv /tmp/guix-tests/store/5vnml2rg59fipa1r0akrdw6fdnjfy46c-font-ghostscript-8.11.drv /tmp/guix-tests/store/azlxx6qzgwjm6yyy0z05jbdxrpm02crq-ghostscript-fonts-std-8.11.tar.gz.drv /tmp/guix-tests/store/9vvj3igk13pfxfq47yamfw5vm7kvaz3l-libjpeg-turbo-2.0.5.drv /tmp/guix-tests/store/9300n7xf7nakazm93nkz4s2lmjznfw65-nasm-2.15.05.drv /tmp/guix-tests/store/0402pfph3s15mnib10rkxc3qx8wk1r7j-nasm-2.15.05.tar.xz.drv /tmp/guix-tests/store/zhvkblzv4r36kqi3dp5mizra85384a21-libjpeg-turbo-2.0.5.tar.gz.drv /tmp/guix-tests/store/jmliaf57fyx77wq1rk5ja0h05mn11sc9-jbig2dec-0.19.drv /tmp/guix-tests/store/xkis6w40kr8l1n91y8xhdyn3q0ngrggr-jbig2dec-0.19.tar.gz.drv /tmp/guix-tests/store/mnyf11gpi02b1j6b30282cksn6p29iw1-libpaper-1.1.24.drv /tmp/guix-tests/store/j2kvglmqz8k2lwkfc09l230fkrf825k9-libpaper_1.1.24.tar.gz.drv /tmp/guix-tests/store/rgr3isbphrcg13zwzc2xycg49604knf1-libtiff-4.3.0.drv /tmp/guix-tests/store/c28gr8dky7a1pv83rznvc7zc7xa63852-tiff-4.3.0.tar.gz.drv /tmp/guix-tests/store/p3nbj46s3pa9m8jpmq570jd0dfssb8h6-libspectre-0.2.9.tar.gz.drv /tmp/guix-tests/store/a551rjad05wa1j4fa6f6ria10w7wkzqg-module-import-compiled.drv /tmp/guix-tests/store/bb84qa9qwh8qgglq969nm40kgh7l8z7g-pixman-0.40.0.drv /tmp/guix-tests/store/2kppbr9qf9m8wjr4hnfmlwww2bp85xy9-pixman-0.40.0.tar.xz.drv /tmp/guix-tests/store/ig0j6nwczg9jl5xn2bvi9bczy71z00za-pixman-0.40.0.tar.gz.drv /tmp/guix-tests/store/qwhkcj6gifhipdx0bykh8k508iv20wv0-cairo-1.16.0.tar.xz.drv /tmp/guix-tests/store/5rl93jh93l4lk72ayjkvy9pk1k9q5wvp-cairo-1.16.0.tar.xz.drv /tmp/guix-tests/store/rxws90r8xdblf9zm6v85k5gnb72sjwag-poppler-21.07.0.drv /tmp/guix-tests/store/0gdx1ggq4bdvyzbiprl8akbx0qfag00f-lcms-2.12.drv /tmp/guix-tests/store/id06kx2lmfyzwygvai01njzgdpvgxmgi-lcms2-2.12.tar.gz.drv /tmp/guix-tests/store/6lnqgvpwjxlc0mdc3wnys6zvylpzy571-cairo-1.16.0.drv /tmp/guix-tests/store/8i18wrimi8q61nrvf3ldf3fir1m5kgjc-openjpeg-2.4.0.drv /tmp/guix-tests/store/2zjfjys3k0nbwmsnwzmm1hdg4n8kg5cb-openjpeg-data-2020.11.30.drv /tmp/guix-tests/store/dhvvb83w2mlqflgvy1600sicnn4ny7gm-openjpeg-data-2020.11.30-checkout.drv /tmp/guix-tests/store/54nawf3lmxbipflmpwzb0zwpkan6zpkh-openjpeg-2.4.0-checkout.drv /tmp/guix-tests/store/pjrd3y75k6s05mcvacawa1d1hjaqhiz6-poppler-21.07.0.tar.xz.drv /tmp/guix-tests/store/89ngbjyv26prha3mh6a59d0xmcklw9wp-xorg-server-21.1.1.drv /tmp/guix-tests/store/112b8g7ry03pjcyf98yw62kya9ypc225-xcb-util-keysyms-0.4.0.drv /tmp/guix-tests/store/vl57lf5kpxmjj1zcl7z2ckxb1lrwvcv8-xcb-util-keysyms-0.4.0.tar.bz2.drv /tmp/guix-tests/store/1zabz0ns5hza30yw81i99mqmcn2v0995-libfontenc-1.1.4.drv /tmp/guix-tests/store/zsd55ydb7knk2cz01f6d3hpgq2ph48c2-libfontenc-1.1.4.tar.bz2.drv /tmp/guix-tests/store/22y54jf1dv107v89ivg1ig3nwkmm36kg-xkbcomp-1.4.5.drv /tmp/guix-tests/store/mil8b60i9b1js4iw90jzymq54w35rz6j-xkeyboard-config-2.34.drv /tmp/guix-tests/store/cr5ij6qgci0x7idrj0600r7dw723yp8h-xkeyboard-config-2.34.tar.bz2.drv /tmp/guix-tests/store/s4c5cnr256bz1lk2lm79q2b9vl1dqg6n-xkbcomp-intermediate-1.4.5.drv /tmp/guix-tests/store/pgfdhk3da8iihlb0frv361m95hdxsik5-xkbcomp-1.4.5.tar.bz2.drv /tmp/guix-tests/store/5myq09qf466wka0b5fzpfmcvcikq2300-libxaw-1.0.14.drv /tmp/guix-tests/store/9ah006xxmdjr2hc9srmfnh55x0xslyn9-libxpm-3.5.13.drv /tmp/guix-tests/store/c81ixkb0abyckywhfmnp3966i2fnz40y-libxt-1.2.1.drv /tmp/guix-tests/store/h6yxfd4fm8zsvyygb3zzvna8hsys6536-libice-1.0.10.drv /tmp/guix-tests/store/l0ydvipidjilav2xkfc9d8x593scp7xh-libICE-1.0.10.tar.bz2.drv /tmp/guix-tests/store/mp66vbanf751fr8xslddhwsh9sw9jlwj-libsm-1.2.3.drv /tmp/guix-tests/store/7ir6rvz3ijm3bi7d6hyrnkpzxa3nibgg-libSM-1.2.3.tar.bz2.drv /tmp/guix-tests/store/pspndz27fi9lr0m7nafmbyy0vg44xsdf-libXt-1.2.1.tar.xz.drv /tmp/guix-tests/store/2jja5ci203vghx0g9va4wfak90rdjwfw-libXt-1.2.1.tar.bz2.drv /tmp/guix-tests/store/s97ngr3x783qxh2yk03lkjhka4vj0dqk-libXpm-3.5.13.tar.bz2.drv /tmp/guix-tests/store/gagrzik18ii9w65j4ki8zchcrx97i9dd-libXaw-1.0.14.tar.bz2.drv /tmp/guix-tests/store/wlpmac7biws74w8gfs4fd1bab65rg535-libxmu-1.1.3.drv /tmp/guix-tests/store/3qh8q3j64dfcdkscrmfspary1h0s4rk7-libXmu-1.1.3.tar.bz2.drv /tmp/guix-tests/store/85cxvlf08f9ijzfv2g4cjqv41hpkh5z3-xcb-util-image-0.4.0.drv /tmp/guix-tests/store/h2xg0sfgyhxmkiciqjf6ajzkmbmzkkd4-xcb-util-0.4.0.drv /tmp/guix-tests/store/p1la79193dzxx4n5j260fbb4v915bsr5-xcb-util-0.4.0.tar.bz2.drv /tmp/guix-tests/store/q4irq6w3z4irxim8s8mrfqljd8r4q6ym-xcb-util-image-0.4.0.tar.bz2.drv /tmp/guix-tests/store/a8yyhj9xn53xgcafgzxrzpg8rcl58pw8-xcb-util-renderutil-0.3.9.drv /tmp/guix-tests/store/96y2r2spdffz329sad8zjkmjqi6agmwm-xcb-util-renderutil-0.3.9.tar.bz2.drv /tmp/guix-tests/store/av6jbpini5r1gw6l7vyx54805iy0qqbn-libxv-1.0.11.drv /tmp/guix-tests/store/j5s8f49hz6wdbdcv7vfnv6kbnibf15w3-libXv-1.0.11.tar.bz2.drv /tmp/guix-tests/store/bw36n824l74wqlxcgjsbh3pqafl9hgds-xcb-util-wm-0.4.1.drv /tmp/guix-tests/store/vvlnfl3gjfirdfrhj9sblrmz9l81ysds-xcb-util-wm-0.4.1.tar.bz2.drv /tmp/guix-tests/store/lhi8hky4b60i2swd7ip85pw7fcv2kfzh-libxshmfence-1.3.drv /tmp/guix-tests/store/xvdl64qkzlxd1brvx9i78i6blf338qim-libxshmfence-1.3.tar.bz2.drv /tmp/guix-tests/store/lnj9brddrvsx8w1cwdgfblcbg3alqrgs-libdmx-1.1.4.drv /tmp/guix-tests/store/l53smvl87r0h497mghchhr5d9kd4jhw2-libdmx-1.1.4.tar.bz2.drv /tmp/guix-tests/store/pryrccddxpjp6rhg9dg63bfj1bxqr9ws-eudev-3.2.9.drv /tmp/guix-tests/store/96qg9y2lrwq5ai7n4dp6n5v5hg1rbhrc-docbook-xml-4.2.drv /tmp/guix-tests/store/4xa6bmg4fysxsi7fcaqcln3dzbch3jbq-docbook-xml-4.2.zip.drv /tmp/guix-tests/store/z3fp9gnyy3n3g27jqflhb7l46cqygxww-eudev-3.2.9-checkout.drv /tmp/guix-tests/store/j8rf89mfp8xklyz4c5fwpfrjmcm4031q-eudev-3.2.9-checkout.drv /tmp/guix-tests/store/rgg4fpwk3wjk5g1vzmbwn0fqp8h4ci20-mesa-21.2.5.drv /tmp/guix-tests/store/60jw4s11bmqq50mx486mha870lgj993p-llvm-11.0.0.drv /tmp/guix-tests/store/wslfjx88gvlb7cizj0pw65by8h0cy3sf-llvm-11.0.0.src.tar.xz.drv /tmp/guix-tests/store/75dazwvi6njz6nj49433m7nzqrgjvmbi-python-mako-1.1.3.drv /tmp/guix-tests/store/6hwhxayicrwk3lg9a8v2cb5nn7lvq3vv-python-mock-3.0.5.drv /tmp/guix-tests/store/acvv5nylvrrg6x6597nhybhv540gnv5m-python-six-1.16.0.drv /tmp/guix-tests/store/jknvfj1msw0c1qs0d3day2zc5244jsbq-python-more-itertools-8.2.0.drv /tmp/guix-tests/store/clv9p0c7v9l5y2v6yl9z23nl4psb6csx-more-itertools-8.2.0.tar.gz.drv /tmp/guix-tests/store/n6xfvp2qp1b6q8kmlxcbflgmn1vbq5ca-python-pytest-bootstrap-6.2.5.drv /tmp/guix-tests/store/6k7ji090bd9xgl89drg7mg72b38hfhmd-pytest-6.2.5.tar.gz.drv /tmp/guix-tests/store/p69x7vz4k9v8rzp07hqqznr1y7qvpi5b-python-iniconfig-1.1.1.drv /tmp/guix-tests/store/p5m9njda55z5wlahnxja3hxbd7hj1l26-iniconfig-1.1.1.tar.gz.drv /tmp/guix-tests/store/pgm55978kw09r2ymcl12wz12xaagl2ly-python-wcwidth-0.1.8.drv /tmp/guix-tests/store/w2cdb3kc9s3w00cfcir2ydlmljdb2k0r-wcwidth-0.1.8.tar.gz.drv /tmp/guix-tests/store/r8hhnw5h7n5dpyml45273ixag5vz290v-python-pluggy-0.13.1.drv /tmp/guix-tests/store/cyw49jzinnn3dysmlsff31j718p59y4s-pluggy-0.13.1.tar.gz.drv /tmp/guix-tests/store/wjdmpalck3l6df3f5ggdryhf90v4v3mj-mock-3.0.5.tar.gz.drv /tmp/guix-tests/store/9fjdiiy3rf18wgy9kw3q1n1nrs72m4s0-python-nose-1.3.7.drv /tmp/guix-tests/store/p6r6akibgmldl4rsqnm763mpsiqydmr5-nose-1.3.7.tar.gz.drv /tmp/guix-tests/store/ivvc8pi1f4w06fgl4m9qw5jkg6h13w18-python-markupsafe-2.0.1.drv /tmp/guix-tests/store/l5ghzm4xa5hp8bvrr7zk9hrmcrzk90nw-python-pytest-6.2.5.drv /tmp/guix-tests/store/2r79s4gaz7qp0310ky8ny9qzsxngl3g4-python-sortedcontainers-2.1.0.drv /tmp/guix-tests/store/4w8xkhsgjwr6xjr6jvmpcd16fxf8pfvs-python-filelock-3.0.12.drv /tmp/guix-tests/store/rmimazya2r7xxbivh7y2w5w49387abzb-filelock-3.0.12.tar.gz.drv /tmp/guix-tests/store/6wivz10hfixa5jy9788zdxcbv0l16wls-python-appdirs-1.4.3.drv /tmp/guix-tests/store/j79g0cbd6ijr44zqffdqwy4ps84wpal7-appdirs-1.4.3.tar.gz.drv /tmp/guix-tests/store/fqcnc4pm0nlpq4p9gjn23qqx8dnnns8m-python-distlib-0.3.1.drv /tmp/guix-tests/store/jv28qccm9b1byfsga3677rznvrawlgrr-distlib-0.3.1.zip.drv /tmp/guix-tests/store/ih7z1b3a6lrkrjr7zwvgq3cm0p09lhm6-sortedcontainers-2.1.0.tar.gz.drv /tmp/guix-tests/store/cc907ag3kvv1qanzfzn512qxq4i5dabp-python-xmlschema-1.2.5.drv /tmp/guix-tests/store/16lzr4lakg8cdcjmif35jf0wknybf41q-python-xmlschema-1.2.5-checkout.drv /tmp/guix-tests/store/fybsdvq2d2vwm6k7jlk26k8nivbngp0n-python-elementpath-2.0.3.drv /tmp/guix-tests/store/yqynjpjmk3gndv32p4j54nx3zg3l1qdf-elementpath-2.0.3.tar.gz.drv /tmp/guix-tests/store/k841ad1fk364xn2i28457377x67aii3v-python-lxml-4.6.3.drv /tmp/guix-tests/store/kgll9h1rj15ja2k4wlikww4jnl2vh1yd-lxml-4.6.3.tar.xz.drv /tmp/guix-tests/store/rv5z8vvw51i198jfqmyn1nbmj1y9zhzz-lxml-4.6.3.tar.gz.drv /tmp/guix-tests/store/wvk1hnlgjljijvsiv7jqcn5w6kry8jpa-python-hypothesis-6.0.2.drv /tmp/guix-tests/store/g14wbkgrq2d5dxxk544s8s6qxpi00xkn-hypothesis-6.0.2.tar.gz.drv /tmp/guix-tests/store/vjfmxg648virpddqwk8f9p9zxk26406w-MarkupSafe-2.0.1.tar.gz.drv /tmp/guix-tests/store/yfxg9pfg88nbc41cbjzl02s11ak5v7n0-Mako-1.1.3.tar.gz.drv /tmp/guix-tests/store/77hnwm8qkdrk9kqva42hz8q1b5v0a4z3-elfutils-0.183.drv /tmp/guix-tests/store/lshhrjlv19fi8nzwd9dd6ma8nzx7gs7r-elfutils-0.183.tar.xz.drv /tmp/guix-tests/store/j188gxqdvzjh0pkrf2xgnginallxg49a-elfutils-0.183.tar.bz2.drv /tmp/guix-tests/store/kajmjxdpj552alfy0yvv01g0sy6d5d4b-wayland-1.19.0.drv /tmp/guix-tests/store/0zgpdz9ygz4sli5wwd429mnkd426ac4s-graphviz-2.49.0.drv /tmp/guix-tests/store/8i3kns3w97qgixhn4q7wb5n6yjyvy8sp-pango-1.48.10.drv /tmp/guix-tests/store/b1a1ndzgxjc5r856wqkp0m65yczvdy39-harfbuzz-2.8.2.drv /tmp/guix-tests/store/frbfs7dcw5rkrmny4iwxyv6s3whq8paa-harfbuzz-2.8.2.tar.xz.drv /tmp/guix-tests/store/wgjj3bjv2gx0xdml240cpj0ws558y29m-graphite2-1.3.13.drv /tmp/guix-tests/store/3vlz4jvai3ijrg5y196y528fkwfgzx6s-graphite2-1.3.13.tgz.drv /tmp/guix-tests/store/j02az1xlma527fwlnjq1h668q3y8vl3l-python-fonttools-4.6.0.drv /tmp/guix-tests/store/1h2lyrlgj97g3n16wwhc79c7ln2l024l-python-pytest-runner-5.2.drv /tmp/guix-tests/store/ggwznmj631clj16p3xjixh1x2yphbabg-pytest-runner-5.2.tar.gz.drv /tmp/guix-tests/store/rchdn7fkqzhkhyhc3vc16qfr8xr5lw4w-fonttools-4.6.0.zip.drv /tmp/guix-tests/store/bz0fz8qvgpd72zjnzpz5km09hdbzx2wn-libthai-0.1.28.drv /tmp/guix-tests/store/3cw20nvvzakssdrhiilwp0l0a7qwn6dz-libthai-0.1.28.tar.xz.drv /tmp/guix-tests/store/d5kih80xiplf7cmnslqgdyzcj8frn4zy-fribidi-1.0.9.drv /tmp/guix-tests/store/dd8n4rcqdlw1swx78ww2hyci13qci8lm-fribidi-1.0.9.tar.xz.drv /tmp/guix-tests/store/qb1nsf5jahi9444ng6g0navi9agsaskk-pango-1.48.10.tar.xz.drv /tmp/guix-tests/store/dy6hd89lb65wqf97wn6768pcs0yjfvvb-pango-1.48.10.tar.xz.drv /tmp/guix-tests/store/akwd6b9vagad50v50plfa2j7q1mh6h0z-glib-2.70.0.drv /tmp/guix-tests/store/kx2igpxh0yn94klc72w5q0j3iyaibfk6-gts-0.7.6.drv /tmp/guix-tests/store/7wdbwbs2lmq4ljp29kvj3n89lwlyhdbv-gts-0.7.6.tar.gz.drv /tmp/guix-tests/store/wj2wwpcgvsw0rljdwkjwgadqsrjiqqgx-graphviz-2.49.0.tar.xz.drv /tmp/guix-tests/store/xa7r2qdzcyl4mavpigr3jdf8bxpfxr27-gd-2.3.2.drv /tmp/guix-tests/store/wij1b56irx5hfbpc65l1fyyid7w4zlfx-libgd-2.3.2.tar.xz.drv /tmp/guix-tests/store/kjcf53firqwhmaah3ih1cwkkm6qk76mi-libgd-2.3.2.tar.xz.drv /tmp/guix-tests/store/dn4ngpfqw2fkfnwjmnk0c0ya9xxxgyjd-wayland-1.19.0.tar.xz.drv /tmp/guix-tests/store/x3yfjx440ziw2afiykklvczhbvcn1hfk-docbook-xml-4.5.drv /tmp/guix-tests/store/y7p9gwd0l4d1ljbb5arp3fc9gqbyh4f3-docbook-xml-4.5.zip.drv /tmp/guix-tests/store/n42gl0r3rg7c9fk8gqj42lbs1cbmjr27-glslang-10-11.0.0.drv /tmp/guix-tests/store/v4j4g5skcj8gh1ysvdyvk7qidy8v6w2y-glslang-10-11.0.0-checkout.drv /tmp/guix-tests/store/r4lc1sq6n2ym15189qzn2djdqn1czxci-wayland-protocols-1.23.drv /tmp/guix-tests/store/1rcip87y8vnf8rpzlaiwm9x4frzpnjz0-wayland-protocols-1.23.tar.xz.drv /tmp/guix-tests/store/r99ih3gwfkmdfys07whvzpnz12phs3zx-mesa-21.2.5.tar.xz.drv /tmp/guix-tests/store/8f7h3xaimxwhgmddi7gkwmnbfbrbj8zz-mesa-21.2.5.tar.xz.drv /tmp/guix-tests/store/wcmlq4nifvj31a6b74mak4c7cfpk1z58-libva-without-mesa-2.13.0.drv /tmp/guix-tests/store/i1p2bvycbhfp58w9z489szi8mhlyvz8g-libva-2.13.0.tar.bz2.drv /tmp/guix-tests/store/ww60vxx2y1jh92pmsin1gdjb32r89ynl-libxvmc-1.0.12.drv /tmp/guix-tests/store/bkb953r6s98f2pmiy8akpamqbrdp8jiv-libXvMC-1.0.12.tar.bz2.drv /tmp/guix-tests/store/yyiw68ya5300h10vp671dppa5s6y9ss1-libxxf86vm-1.1.4.drv /tmp/guix-tests/store/l2klf72ywcfsdgc8dskr84xlqkdc76cl-libXxf86vm-1.1.4.tar.bz2.drv /tmp/guix-tests/store/s5bhqms3vhv584p1h7wfy562s1av1ww7-libxcvt-0.1.1.drv /tmp/guix-tests/store/8m0wclr8kah7akgcb7gvcz0dvrmv57vr-libxcvt-0.1.1.tar.xz.drv /tmp/guix-tests/store/sdwradfjm675a3lj7xznfzqb6a8dcr40-libxres-1.2.1.drv /tmp/guix-tests/store/sfyb84mwlh3a1bhpasilhglx0mgp5nm0-libXres-1.2.1.tar.bz2.drv /tmp/guix-tests/store/vakx8328r7y1n3h1hwh7qc7971dad6gz-libepoxy-1.5.5.drv /tmp/guix-tests/store/pd2alhk34aq0i5n1jdlpk6ybkjl5ayqm-libepoxy-1.5.5.tar.xz.drv /tmp/guix-tests/store/vj75b102g8cvrwn17xj7mqzmpkzxg0xv-libxfont-2.0.4.drv /tmp/guix-tests/store/rypixq3myxcdh4ivj5574wlfvz5kpiw1-libXfont2-2.0.4.tar.bz2.drv /tmp/guix-tests/store/zqi2n34r35gkr47d5hivr20y4b0hqybw-xorg-server-21.1.1.tar.xz.drv /tmp/guix-tests/store/n0mwrdy5wsdpn9r4mgx2y18dkrq6mhly-xorg-server-21.1.1.tar.xz.drv /tmp/guix-tests/store/y16hpc0qvgpxyv4n1d4wnyabl9a8c2gx-xorg-server-use-intel-only-on-pre-gen4.diff.drv /tmp/guix-tests/store/8lzbr6m2h67xql4hh56gqc9mgjrg6qyj-libxinerama-1.1.4.drv /tmp/guix-tests/store/fh8w9yi1zcysy311120wych7db3n78zd-libXinerama-1.1.4.tar.bz2.drv /tmp/guix-tests/store/a0pxdi1vfz317ms0c812z8357xxgs8xr-cups-2.3.3op2.drv /tmp/guix-tests/store/gmvj16vndjyhyfqkh6n2yw6j99x73vjf-cups-filters-1.28.9.drv /tmp/guix-tests/store/27ic97iwcqsqcmrhj67lx16j8wi3x0qz-grep-3.6.drv /tmp/guix-tests/store/h15q26zy0r6f9jskz77bybi08myqliv0-grep-3.6.tar.xz.drv /tmp/guix-tests/store/8ip7i5j2c69fgzan3i1rphdx4902rysk-ghostscript-with-cups-9.54.0.drv /tmp/guix-tests/store/8z8d5nni8q9rw4gqbq7ldzk8668g3hkk-cups-minimal-2.3.3op2.drv /tmp/guix-tests/store/kbxih53z6hksi6bbbj9956izdpswbsrb-cups-minimal-2.3.3op2-checkout.drv /tmp/guix-tests/store/inl6j4q2b682w1k93663pn4x1w3vzbv3-cups-filters-1.28.9.tar.xz.drv /tmp/guix-tests/store/l77aqg6hzn4i2mdgf3wn0ha5dd3fns21-cups-filters-1.28.9.tar.xz.drv /tmp/guix-tests/store/msbxcxqh5wjgswahsi2dah581yvfpqp4-qpdf-10.0.1.drv /tmp/guix-tests/store/ln7l1nz8b7whxxsrxc7dkxc905rzia7x-qpdf-10.0.1.tar.gz.drv /tmp/guix-tests/store/plwp5ir2xaln7ffd9syfhk6d8m882k5y-ijs-9.54.0.drv /tmp/guix-tests/store/qqadvi6vj5hxn3i86w8nhswpl0r78z4d-avahi-0.8.drv /tmp/guix-tests/store/05mxrlvm0zl5rdhcnpncnfkwlzcccfwb-avahi-0.8.tar.xz.drv /tmp/guix-tests/store/kv5zjaqcw6m0dsqb6d1ifpsp6iza8mx7-avahi-0.8.tar.gz.drv /tmp/guix-tests/store/63hzg9lj4qbc0yzjcqldmkj0l5x4brjm-libdaemon-0.14.drv /tmp/guix-tests/store/cizg1dvmf4l2n1vyr2p9rdi1hc0g8m1f-libdaemon-0.14.tar.gz.drv /tmp/guix-tests/store/jvdj9bd8wdw01qvsh6cwlznfwg1xmf3f-libevent-2.1.12.drv /tmp/guix-tests/store/w358xfjmb9w4ny9bd4p2rl0lf8smqp13-libevent-2.1.12-stable.tar.gz.drv /tmp/guix-tests/store/nyc558r8806f7b4f8cwp2mdxp1qgx0aj-libcap-2.51.drv /tmp/guix-tests/store/1l45dy2rjh880s0k4mij9iwj4b6lwzk0-libcap-2.51.tar.xz.drv /tmp/guix-tests/store/cpb9gxknn6zdszgwfmr2lplkrbpq2mmy-shared-mime-info-1.15.drv /tmp/guix-tests/store/849616pvharfhc6r4p8kflz647d4mm3b-shared-mime-info-1.15.tar.xz.drv /tmp/guix-tests/store/is3gn0h0zjvg11gjrzj9i1pfvf9dw8z4-atk-2.36.0.drv /tmp/guix-tests/store/zd74cfmqfcps99lw7x0rc87phkww8mq8-atk-2.36.0.tar.xz.drv /tmp/guix-tests/store/j4b912r65vsqmbhq5f9ladja2d19iq0d-gtk+-2.24.33.tar.xz.drv /tmp/guix-tests/store/nal9xpj51d227xgdda4458cdlalibd8b-gtk+-2.24.33.tar.xz.drv /tmp/guix-tests/store/l9ywwqvvdzwyf244618hprsclq2wazbj-librsvg-2.40.21.drv /tmp/guix-tests/store/0r7iyfdx2njcgqi4bsbgrncn0xmf58pr-libgsf-1.14.47.drv /tmp/guix-tests/store/scqlzp3wrmjxiiwqvd6z5vz10gskny78-libgsf-1.14.47.tar.xz.drv /tmp/guix-tests/store/xwgkkzn7v0lfjc5vjj5nbk73rfn74h9b-gdk-pixbuf-2.42.4.drv /tmp/guix-tests/store/6ms48d12d6h6p4mlbvy2pc92z7k59mag-gdk-pixbuf-2.42.4.tar.xz.drv /tmp/guix-tests/store/jv424rnsi01kjqrq04970gpk5cnqihw7-docbook-xml-4.3.drv /tmp/guix-tests/store/rym91smpacy7q9m2vlr0n23znr84lxq4-docbook-xml-4.3.zip.drv /tmp/guix-tests/store/hm5p7xl3ad97k70nqp9ydij4da2l31zk-libcroco-0.6.13.drv /tmp/guix-tests/store/03ddw7xmnib10zap1z2nyn9fpqpv8wmz-libcroco-0.6.13.tar.xz.drv /tmp/guix-tests/store/6cvwsd8snmnc25606gfvdmw7gf0c6l83-libcroco-0.6.13.tar.xz.drv /tmp/guix-tests/store/s21fp4h91fgjg1n2jmrjwmdkd5ijz05h-librsvg-2.40.21.tar.xz.drv /tmp/guix-tests/store/nmp0vl6aalsnqz0pbfzgb6pqgnjvi4zf-libxi-1.7.10.drv /tmp/guix-tests/store/xpwxn95cj41w1cmv4rfh1faccw57aqpi-libXi-1.7.10.tar.bz2.drv /tmp/guix-tests/store/xz1bs852bpbnv3q8fji8my1aiarvs6n4-libxkbcommon-1.3.0.drv /tmp/guix-tests/store/shk13fr21d2nw3gcrnwribkipvqykh23-libxkbcommon-1.3.0.tar.xz.drv /tmp/guix-tests/store/zmz647jls2d4rjwsggpwilisnzp3xr9p-libxcursor-1.2.0.drv /tmp/guix-tests/store/6qxacvvacq6srhfwflrs9whb0yzf2pv9-libXcursor-1.2.0.tar.bz2.drv /tmp/guix-tests/store/2wyhxyh081zi65pipslbd5a0vxw5s7v3-iso-codes-4.5.0.drv /tmp/guix-tests/store/3yab4djyskpcfqqrpi3v4szh15y9428j-iso-codes-4.5.0-checkout.drv /tmp/guix-tests/store/7jqr6jjapmapapbynipwwq48rqa4ijbm-libxtst-1.2.3.drv /tmp/guix-tests/store/938b3my99rmdlrjyc1j8b6hyx8zlbp23-libXtst-1.2.3.tar.bz2.drv /tmp/guix-tests/store/ak1xv6wrzjmcs292zwf5sci8fwcszhqd-enchant-1.6.0.drv /tmp/guix-tests/store/a93yh0raz698p6dxjfv8rjaaq7qmfscl-hunspell-1.7.0.drv /tmp/guix-tests/store/4ns47qsgfwf64s3rfn1znk7656215rkf-hunspell-1.7.0-checkout.drv /tmp/guix-tests/store/kc7paqqc6hkxm704k0kqb8ikniigscqq-enchant-1.6.0.tar.gz.drv /tmp/guix-tests/store/xcc3w83ipc7zysg0gpsmnf8ng7d0j1dh-aspell-0.60.8.drv /tmp/guix-tests/store/w8fgf8cgz9xnwbc0b7wrsrhfzd2qp5qn-aspell-0.60.8.tar.xz.drv /tmp/guix-tests/store/yq761hm160d0prj7252123mk3sp0z2jy-aspell-0.60.8.tar.gz.drv /tmp/guix-tests/store/aly8m8ln4wbfqph902qywcidshggpxm1-at-spi2-atk-2.38.0.drv /tmp/guix-tests/store/c12i2pzpvy9d5hixf0b91mcxqazp42qd-at-spi2-core-2.40.0.drv /tmp/guix-tests/store/8mkc41a2vdl35pv962aihgmhs02jjakr-at-spi2-core-2.40.0.tar.xz.drv /tmp/guix-tests/store/f3zq62rvq1h94yw35244sp6w6b39dkpl-at-spi2-atk-2.38.0.tar.xz.drv /tmp/guix-tests/store/bnazxgffckbl2jfzxj9l7lgxgp1kk85r-gtk+-3.24.30.drv /tmp/guix-tests/store/0jmp7g9m6jhmlqsbrb05n37hjbzn13aw-graphene-1.10.6.drv /tmp/guix-tests/store/gaf065y20vzn7y0ni9xh5xvy74kdxxpn-mutest-0.0.0.drv /tmp/guix-tests/store/kxnz9zq7fclfvsz56q8xr05hj4250hkd-mutest-0.0.0-checkout.drv /tmp/guix-tests/store/j81x4wry2h66qg0i5l2xlh60f1ckfxj2-git-minimal-2.33.1.drv /tmp/guix-tests/store/vwdih22sscz6agfisazfqh4p11gybrfr-git-2.33.1.tar.xz.drv /tmp/guix-tests/store/jdpdzgaywn7310cmzq69a9mdg30ilhfv-graphene-1.10.6-checkout.drv /tmp/guix-tests/store/1953wjqf3sw2lwc7x207rnhy4pkp8bzd-libpsl-0.21.1.drv /tmp/guix-tests/store/npx78j0nqw43j8h6gkx5v8q537x0zkm9-libpsl-0.21.1.tar.gz.drv /tmp/guix-tests/store/337jzrwv31gs5c2i3j2zpvyrnx3vp950-gtk+-3.24.30.tar.xz.drv /tmp/guix-tests/store/y470jr0b736h62n9jplma15wb0cvpanx-gtk+-3.24.30.tar.xz.drv /tmp/guix-tests/store/3r0hhs24914k4w23q1g1wy0y9s5g22il-hicolor-icon-theme-0.17.drv /tmp/guix-tests/store/2j6c7gsq4wcbjdi895k36rlqnqgwccxp-hicolor-icon-theme-0.17.tar.xz.drv /tmp/guix-tests/store/9nccwbrvif02xxdw0fb0cxj0s4s7b13q-colord-minimal-1.4.5.drv /tmp/guix-tests/store/cpxzs0p59d5w4bdzmg0wb4s6izzxpb5y-libgudev-236.drv /tmp/guix-tests/store/2vsq760q0fwd1pw0s6ahfhh30ssh9znr-libgudev-236.tar.xz.drv /tmp/guix-tests/store/f94i9rlkn9w4i76ph9spxy6dn7n7bhn9-colord-1.4.5.tar.xz.drv /tmp/guix-tests/store/i8hxz8bqlv70vv1bssfzws1z05pi4q7x-sane-backends-1.0.32.drv /tmp/guix-tests/store/kdgy3rwn09xj6wrncf8gzrmmkjnhfyrj-autoconf-archive-2021.02.19.drv /tmp/guix-tests/store/5319mkj0w7kyrixl1d8v6852rhyp2rbz-autoconf-archive-2021.02.19.tar.xz.drv /tmp/guix-tests/store/mjzdzmb6565bkbxzr3m4d8kl8vxwyvyi-hplip-minimal-3.21.10.drv /tmp/guix-tests/store/0x393jcfkj7rlck0c3xirc4j8dmzhbk8-sane-backends-minimal-1.0.32.drv /tmp/guix-tests/store/nyvbwmp5r4fvhvzikcf8b4kig7pd3g3g-libusb-1.0.24.drv /tmp/guix-tests/store/wminr6yzj5j504qx7s5k0zm1q3l9d8yl-libusb-1.0.24.tar.bz2.drv /tmp/guix-tests/store/z2a2hrzqybwmz2i41p7wqb524xlsxcq0-sane-backends-minimal-1.0.32-checkout.drv /tmp/guix-tests/store/nrmzdkk4lzw29ivxaf3ww7mlgpq63ynk-sane-backends-minimal-1.0.32-checkout.drv /tmp/guix-tests/store/jidxq8fvwqda65rzili4ld4nvw5bxkly-hplip-3.21.10.tar.xz.drv /tmp/guix-tests/store/qrqk2b5i3b63xpr0hm2sx58dxwnm90y9-hplip-3.21.10.tar.gz.drv /tmp/guix-tests/store/w8h45wgk21mqcj4pjk2mfi12nfky16gf-polkit-duktape-0.120.drv /tmp/guix-tests/store/1ahv9biwiqjpw9ap24s7qmdnz1gwmywk-elogind-246.10.drv /tmp/guix-tests/store/082awpzp75l8s1pqf31yym1y5lvlg1g5-shadow-4.8.1.drv /tmp/guix-tests/store/gf16p699ahr7vbz0hadybq22c928k5rv-linux-pam-1.5.1.drv /tmp/guix-tests/store/c92m79y0gc6m80gf926j38428b12f82i-Linux-PAM-1.5.1.tar.xz.drv /tmp/guix-tests/store/8qxkyympyn7imadwvgy4lzlqzbj8ganw-Linux-PAM-1.5.1.tar.xz.drv /tmp/guix-tests/store/m6dams3882kszqiwy4v4m4kkc1jybj8i-shadow-4.8.1.tar.xz.drv /tmp/guix-tests/store/jnmwcp0li2jbz9dp3bkmz9q91waqn1rb-shadow-4.8.1.tar.xz.drv /tmp/guix-tests/store/446k6zyrxk1wafj1g7cyh9gzblbqm85z-elogind-246.10-checkout.drv /tmp/guix-tests/store/17nk73prqc8inw38vi5wcswpkx7627c5-elogind-246.10-checkout.drv /tmp/guix-tests/store/g9r9d57bxxgqsr953vfi5pddcfq8zl7n-kexec-tools-2.0.23.drv /tmp/guix-tests/store/c191x4dggyr1wg2cps4d82q933a9y8gw-binutils-next-2.37.drv /tmp/guix-tests/store/crs3pvci2zd1dcgn3q42x4s7phz5pxf9-binutils-2.37.tar.xz.drv /tmp/guix-tests/store/hcaf3pss2w1idlp79raigxg8mckzlzm2-ld-wrapper-0.drv /tmp/guix-tests/store/y45mhq799sw29ss8p1zrw10431aw5xm1-kexec-tools-2.0.23.tar.xz.drv /tmp/guix-tests/store/sd3cwl4rq49ci499hpxhkgvixr1yz01s-shepherd-0.8.1.drv /tmp/guix-tests/store/g17zvd9vf2yyadylx3v4ic4c1wm2l5kz-guile-readline-3.0.7.drv /tmp/guix-tests/store/gk3x735dci3qaw541pl9l90z0f5w248b-shepherd-0.8.1.tar.xz.drv /tmp/guix-tests/store/xpcy4xvdh1psxz8s6rfa26hffblgykvs-shepherd-0.8.1.tar.gz.drv /tmp/guix-tests/store/4kbc815i2qqrf0v7w82x91mnmh5p0v4k-duktape-2.6.0.drv /tmp/guix-tests/store/si9di59v8h2ffasn53v6c3apm7mjpc2g-duktape-2.6.0.tar.xz.drv /tmp/guix-tests/store/5kkjvpn88fmqcs7n7x3ii0py8wbh54l3-polkit-0.120.tar.xz.drv /tmp/guix-tests/store/qm12dh10fkig6xrhnaw6r80n038rznwx-polkit-0.120.tar.gz.drv /tmp/guix-tests/store/xszgf0vjvmkigawqyl8g13qwnc9dndkq-nspr-4.31.drv /tmp/guix-tests/store/54iajabrw4ml29ga7nms0a8cdkrv74iw-nspr-4.31.tar.gz.drv /tmp/guix-tests/store/wdygi599pw3n3xb0d0kimc54bpq26ysx-vala-0.54.2.drv /tmp/guix-tests/store/v3k2cjh75v89ln1gqrnfgaxiq723lfpd-vala-0.54.2.tar.xz.drv /tmp/guix-tests/store/wv5lk4cpdxy625x04mighymlvvb1f3rs-dbus-glib-0.110.drv /tmp/guix-tests/store/1kyaamk4k5rzwd4d3ad6flyw0m8g3856-dbus-glib-0.110.tar.gz.drv /tmp/guix-tests/store/z6ynrgrgzqlwbm28w22g2h7ca3dp1030-gusb-minimal-0.3.5.drv /tmp/guix-tests/store/cayiipbhr1ywbjaq7089kxifwvdniy61-gusb-minimal-0.3.5-checkout.drv /tmp/guix-tests/store/9xqcgq7j6477w57088ps8b2y017h0bgj-sassc-3.6.2.drv /tmp/guix-tests/store/fggwzjk8spv55nw71ablxlqf5xxjkgch-sassc-3.6.2-checkout.drv /tmp/guix-tests/store/shamg168gyvk597fr27mc26zh8qqfz8x-libsass-3.6.4.drv /tmp/guix-tests/store/kp45f9q1ljsxp295phpkizyricbdry98-libsass-3.6.4-checkout.drv /tmp/guix-tests/store/b2w2g0nzs8mn945fpq0p2w8pb2q86p38-docbook-xml-4.1.2.drv /tmp/guix-tests/store/55v3by9g3l7afl0bl167acgwz3limirf-docbkx412.zip.drv /tmp/guix-tests/store/gamlxl7jj7p707vn7ni35qywij50r73v-libcloudproviders-minimal-0.3.1.drv /tmp/guix-tests/store/nlrdxjz5waw9gihj2kf8r6k8hipgdrjf-glib-networking-2.70.0.drv /tmp/guix-tests/store/8gpp53y8xhshnr5k57l71fmmcafyjd2i-libproxy-0.4.17.drv /tmp/guix-tests/store/xakdq8snqi10vhfmphyf27l7gky3fis1-libproxy-0.4.17.tar.xz.drv /tmp/guix-tests/store/9piia7lk2294nh1rz9970gfn51njm521-glib-networking-2.70.0.tar.xz.drv /tmp/guix-tests/store/n873rd6w6fi4yksq2jzr9law846z5gxm-glib-networking-2.70.0.tar.xz.drv /tmp/guix-tests/store/lhlg5ihx4q1pma319hirj9l4wz6lzshd-gsettings-desktop-schemas-41.0.drv /tmp/guix-tests/store/nqqcxxy2kngfyapc7m5bfjbxy77dxigd-gsettings-desktop-schemas-41.0.tar.xz.drv /tmp/guix-tests/store/q8w365ifjm7ikcr8y0af88d2z3nii12m-gnome-backgrounds-40.1.drv /tmp/guix-tests/store/b3cn2ky29asrkidfsr9zn7lv6raljkw0-gnome-backgrounds-40.1.tar.xz.drv /tmp/guix-tests/store/riv2lg1dhznfwpkfsm5x0p3gbg13yakr-libcloudproviders-0.3.1.tar.xz.drv /tmp/guix-tests/store/lxsyx955wgklzhhbxnkp4qk72j6q1gbh-json-glib-minimal-1.6.2.drv /tmp/guix-tests/store/yz45iwpqml2chkyxnqx5xfnlva2ffrqc-json-glib-1.6.2.tar.xz.drv /tmp/guix-tests/store/p849b27h90zv6qd80bg2ygmz97s41qcr-rest-0.8.1.drv /tmp/guix-tests/store/is52g8h2dcgvr0k7d9xrjgnqylxsi9ak-rest-0.8.1.tar.xz.drv /tmp/guix-tests/store/q3xix2q60zc4cw05fr22yglnx5kgffdd-libsoup-minimal-2.72.0.drv /tmp/guix-tests/store/6zy6mzpmqx8cqcncqispwjlcaidsd0bs-samba-4.13.10.drv /tmp/guix-tests/store/00mjcznbdwhirl3lr1vxhajpxp4fw5g6-gamin-0.1.10.drv /tmp/guix-tests/store/sza3vij6wlxg4z5vr1xr6vnjgv0jcp93-gamin-0.1.10.tar.bz2.drv /tmp/guix-tests/store/7ssbz6wl5lj4b3q88fchigx67rcsrbff-samba-4.13.10.tar.xz.drv /tmp/guix-tests/store/1rfz8k9zgv5s6ld1vx1wbrv8afas9nvv-samba-4.13.10.tar.gz.drv /tmp/guix-tests/store/82jkmdwj1d53wwa6bdyhnn90r3abiq2q-openldap-2.4.57.drv /tmp/guix-tests/store/81l7fdpcbb6wfz44rxr5si8apcyb6dpl-bdb-5.3.28.drv /tmp/guix-tests/store/fsb8j2wcgp0qz6c44cgqh028qpi6sak2-db-5.3.28.tar.xz.drv /tmp/guix-tests/store/akhcawvpvwjk4arrzcm0xawlqjs39xld-db-5.3.28.tar.gz.drv /tmp/guix-tests/store/a82yvd9rsqlmagir880npckdwkhgjsvx-openldap-2.4.57.tgz.drv /tmp/guix-tests/store/gdy8gamw9jjhlin0iwyzqlf2sbsrfk5z-cyrus-sasl-2.1.27.drv /tmp/guix-tests/store/wnpnkdy9dai5n4k3xpjnjd61s316n21g-cyrus-sasl-2.1.27.tar.xz.drv /tmp/guix-tests/store/kf93w9r4v3fwgcy5jvpy9fkaspgw6d6g-cyrus-sasl-2.1.27.tar.gz.drv /tmp/guix-tests/store/vrmjmliigr4cjjdg7rbadj4hzivasg62-groff-1.22.4.drv /tmp/guix-tests/store/p8lbfpyyqyx0qvx3pbhy84gzsc5yykhn-groff-1.22.4.tar.gz.drv /tmp/guix-tests/store/vrv2lnpjyh1hcrxjf66rr9a4zqz3x60i-psutils-17.drv /tmp/guix-tests/store/p8lxnszfcd4db52k2jgjgma6z261ccpn-psutils.tar.gz.drv /tmp/guix-tests/store/889jddavy0bqvldqfihv1ma9l48dp25b-gpgme-1.15.1.drv /tmp/guix-tests/store/hdmad6msgm00yds6rf171y5c27v9jhh9-gnupg-2.2.30.drv /tmp/guix-tests/store/5dx0qbsmw5bmckcsklja5ir2lga6300b-gnupg-2.2.30.tar.xz.drv /tmp/guix-tests/store/viyc43nny3nfb31s7f1c34mrmy6gxl97-gnupg-2.2.30.tar.bz2.drv /tmp/guix-tests/store/anzyihil4m1vkp8xba9kqzh1qbxp4f5m-pcsc-lite-1.9.3.drv /tmp/guix-tests/store/zvp4pkgj253ssjlblbhnv5acp2p1rcm5-pcsc-lite-1.9.3.tar.bz2.drv /tmp/guix-tests/store/cgzkx7crwj45x4c4nc3sdfjbc5y3cjzh-npth-1.6.drv /tmp/guix-tests/store/rp53sikc2550rbrawqna1p4mwzi11qcv-npth-1.6.tar.bz2.drv /tmp/guix-tests/store/q0jvqx07lvkmz5ihg03psjsvikk0a3yp-pth-2.0.7.drv /tmp/guix-tests/store/hxpgw1azlzxla19jfb0gskp2gzhsabdk-pth-2.0.7.tar.gz.drv /tmp/guix-tests/store/vwk86m4ighfxaajsn4l7682xhy2ymczv-config-0.0.0-1.c8ddc84.drv /tmp/guix-tests/store/s68h2c2i3ryhydxzf2ssblpmmxk5p66z-config-0.0.0-1.c8ddc84-checkout.drv /tmp/guix-tests/store/qz2cxdahz57cidzvipqj2pp5rhaypmp9-libassuan-2.5.5.drv /tmp/guix-tests/store/gigpn2afmnzgk3vwrwsl622maw9jbml9-libassuan-2.5.5.tar.bz2.drv /tmp/guix-tests/store/yvm0pp043209wkhqxi9av5zjziyapn36-libksba-1.6.0.drv /tmp/guix-tests/store/g0b876rlivwx8p8jcsqfc93vx79w0vyz-libksba-1.6.0.tar.bz2.drv /tmp/guix-tests/store/vs03h3mvgf47n6pazqbhr4zl33az2zj4-gpgme-1.15.1.tar.bz2.drv /tmp/guix-tests/store/94xqw5rkkpz8c1p2b2bswplm7i7piwmh-popt-1.18.drv /tmp/guix-tests/store/i26vs037bcwq7jnkq3ssgc8dg0n3avvc-popt-1.18.tar.gz.drv /tmp/guix-tests/store/d8xq55ycr2bvc44w9vvga561sr34y960-libtirpc-1.3.1.drv /tmp/guix-tests/store/l2r03nwqxqjf1851k25vq9jddm8y9d8f-libtirpc-1.3.1.tar.bz2.drv /tmp/guix-tests/store/g90vvcz1pzdwq9acnjl0rahzl1xp5byl-heimdal-7.7.0.drv /tmp/guix-tests/store/sjwx9pxi83dadixqz47lp366jmxjs90j-heimdal-7.7.0.tar.xz.drv /tmp/guix-tests/store/mbv16jxdpbyn93bmzh0lf3l0hzhmj5yy-heimdal-7.7.0.tar.gz.drv /tmp/guix-tests/store/jsz5zjs20k0g0vavp9akjr14z3wfhfpb-ldb-2.4.1.drv /tmp/guix-tests/store/l791laaszj8d3mpx64zsdv342l23hvic-tevent-0.11.0.drv /tmp/guix-tests/store/iabkr1r1zk3kdipiif95gkjw0rkkls60-tevent-0.11.0.tar.gz.drv /tmp/guix-tests/store/w5fn1mq0srplwrmk31rm2i2bqb7kivv8-talloc-2.3.3.drv /tmp/guix-tests/store/2sx3dj6ryb40761pbda831yad2hi4v5w-talloc-2.3.3.tar.gz.drv /tmp/guix-tests/store/q3j3d63rranmsqv5gyghv0x3l5vs8dh1-lmdb-0.9.29.drv /tmp/guix-tests/store/ifjp6z3skby94d4n6cfnaz7ijrpaj3dl-lmdb-0.9.29-checkout.drv /tmp/guix-tests/store/y5ry8z36pwasdqfyfw3ammygwzb12c4m-tdb-1.4.5.drv /tmp/guix-tests/store/cw7w2v0q58hx32zw61py6phy60yr1cph-tdb-1.4.5.tar.gz.drv /tmp/guix-tests/store/znp234pfz6m9g47gnr6hbb1lcmpv0swx-ldb-2.4.1.tar.xz.drv /tmp/guix-tests/store/im9bjc6a0570vg10zj601m1l195wdafh-ldb-2.4.1.tar.gz.drv /tmp/guix-tests/store/p3g1253jznnnv9m60fdafbvl4xaavp1k-python-iso8601-0.1.13.drv /tmp/guix-tests/store/aax0vmnzw2g0rvid773wkwg2f0wpka6k-iso8601-0.1.13.tar.gz.drv /tmp/guix-tests/store/pq6wk99f6i2i5lm1p843w834y1fafjpz-perl-parse-yapp-1.21.drv /tmp/guix-tests/store/5rzpnxpbvyg58cn6vxmx04kzi2ycl1d5-Parse-Yapp-1.21.tar.gz.drv /tmp/guix-tests/store/xn6x56jls7nwqaz95wdwi25v880g91z8-rpcsvc-proto-1.4.drv /tmp/guix-tests/store/sxmz0f3w0s9s8n7f5wabkzkvlm93fqwb-rpcsvc-proto-1.4.tar.xz.drv /tmp/guix-tests/store/gcjf1waa4zl9d2w36s9diwm46l9ffph4-httpd-2.4.52.drv /tmp/guix-tests/store/66d050g2wvpnsc493993jdcr0aax2mvy-apr-1.7.0.drv /tmp/guix-tests/store/n4iifygzr0z00q0yanfn2ilr49dvdwxi-apr-1.7.0.tar.xz.drv /tmp/guix-tests/store/mvmxxxv9329799j8k90mspfb3bs9fcjg-apr-1.7.0.tar.bz2.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/xbmxwzhcj11xclcy1x5jqwjcmvckkkvv-httpd-2.4.52.tar.bz2.drv /tmp/guix-tests/store/z3f881dri1cf7vycm2pw02vc628cgjbf-apr-util-1.6.1.drv /tmp/guix-tests/store/ix7s1881lq6rhnwf5999ad8h8lnqggik-apr-util-1.6.1.tar.bz2.drv /tmp/guix-tests/store/i8q22dnqbia3ck614icvcma0ly1vyq63-vala-0.52.0.drv /tmp/guix-tests/store/234cqyri7aywx9v24s6szp5x5aiaarlq-vala-0.52.0.tar.xz.drv /tmp/guix-tests/store/nf25gh5aryj4z6ar59r75hssfp5kn6n4-libsoup-2.72.0.tar.xz.drv /tmp/guix-tests/store/xc7lnbrhghak50iahzmqkg9z5g8mry45-brotli-1.0.9.drv /tmp/guix-tests/store/4bkqcc1pi7w5bbwpac7sbp1m38fwn5bk-brotli-1.0.9-checkout.drv /tmp/guix-tests/store/smkqflb4kpmzfg7ivhcdh0m96zykzw5c-brotli-1.0.9-checkout.drv /tmp/guix-tests/store/chlp2bkxgbpa9glwg4c66q4z1j2gpqys-extra-cmake-modules-5.70.0.drv /tmp/guix-tests/store/i5bqb3rhhjm9w619wl2ckbig2qwymxk6-extra-cmake-modules-5.70.0.tar.xz.drv /tmp/guix-tests/store/m5z5xr5vjywi6a19mq7vglgyldq2jzzd-qtbase-5.15.2.drv /tmp/guix-tests/store/2ykha2hc632p50zxk1qir4r9y0qiqnjw-xdg-utils-1.1.3.drv /tmp/guix-tests/store/48vzxfmnwvgkzwvhxyvpfq3pwjajm117-perl-file-desktopentry-0.22.drv /tmp/guix-tests/store/4q65h7xhy8kbkzj30s7rh1s8nlggf259-perl-uri-5.05.drv /tmp/guix-tests/store/mxnkl5rzx474bzfqh5i6p89d3f60k7ps-URI-5.05.tar.gz.drv /tmp/guix-tests/store/rk3pc5h676kyn657malaykjjjvzc1wk7-perl-test-needs-0.002009.drv /tmp/guix-tests/store/dd45gmkf8hkmw6cr5qy1m1hsz2m48qn7-Test-Needs-0.002009.tar.gz.drv /tmp/guix-tests/store/8d2k45s981sp0lp8lvdyjcbgasbyjzxx-File-DesktopEntry-0.22.tar.gz.drv /tmp/guix-tests/store/9zlv79ywj7ir8fxf4dnhsxjaia536cs6-perl-file-basedir-0.08.drv /tmp/guix-tests/store/04kg0x46kjrjhxrmwqddd0kmzg6yskfd-perl-cpan-meta-2.150010.drv /tmp/guix-tests/store/3xbblh9q03wkinhppx94lsyw4cznd9pq-CPAN-Meta-2.150010.tar.gz.drv /tmp/guix-tests/store/7cxa6x3fs3mb2hblvnzigjnzskmdx2ih-perl-parse-cpan-meta-2.150010.drv /tmp/guix-tests/store/gyxah97nb34z2l70ghyzgc0ypn86l5dx-perl-cpan-meta-yaml-0.018.drv /tmp/guix-tests/store/5ngr6g0iqi4dj8s27yrfybv38nqrzzz6-CPAN-Meta-YAML-0.018.tar.gz.drv /tmp/guix-tests/store/vca8zzap8k41maynsxbxna3ldmcn4gkd-perl-cpan-meta-requirements-2.140.drv /tmp/guix-tests/store/kd2gq3315fyp62vik956s13kbm05fsqn-CPAN-Meta-Requirements-2.140.tar.gz.drv /tmp/guix-tests/store/6dlq1zx8f87palkjqs1q2x962lpjl5kr-perl-module-build-0.4231.drv /tmp/guix-tests/store/3dr2z7qcc09pjcw2n85c92awr67v0d34-Module-Build-0.4231.tar.gz.drv /tmp/guix-tests/store/8w33xjjv3n1k2mpl5h3simwqxbcjzav4-File-BaseDir-0.08.tar.gz.drv /tmp/guix-tests/store/b23fdfp2awhv5g9p8zxg1kkzw5lggyjw-perl-devel-symdump-2.18.drv /tmp/guix-tests/store/gh9vb3zjzri8wxfwrsx2hnhyv88z9358-Devel-Symdump-2.18.tar.gz.drv /tmp/guix-tests/store/ja2p1cdy0s9nqiqvcm7vd906nr932dvj-perl-pod-coverage-0.23.drv /tmp/guix-tests/store/dqgfn54qafr39x1h689cz60ww4akr9sk-Pod-Coverage-0.23.tar.gz.drv /tmp/guix-tests/store/w4k2k7r8wzkf2ij5ldf2qc4fx7ljqanf-perl-pod-parser-1.63.drv /tmp/guix-tests/store/5c2j3zr38kpg8dmnpspc5k74fy857cj5-Pod-Parser-1.63.tar.gz.drv /tmp/guix-tests/store/mxm0rz4k1hdal56fkjzbw7qwfm94bp39-perl-ipc-system-simple-1.26.drv /tmp/guix-tests/store/jakpxym1b9pwblklb5wacqjbs77bj88m-IPC-System-Simple-1.26.tar.gz.drv /tmp/guix-tests/store/spcsmd5v4ly3nm1xp401807ij7snghgy-perl-test-pod-1.52.drv /tmp/guix-tests/store/m2mhndhixdj3a21yhiahhi1v6948p2bw-Test-Pod-1.52.tar.gz.drv /tmp/guix-tests/store/sw6zaqnwi9d9b1wyzqafm2zxq0vbva8s-xdg-user-dirs-0.17.drv /tmp/guix-tests/store/1bb47n7i4196z2zdvw9rdzzi35mfsa6f-xdg-user-dirs-0.17.tar.gz.drv /tmp/guix-tests/store/w4vc9lccrqhs7c6hcdxs142im8834k9y-perl-file-which-1.23.drv /tmp/guix-tests/store/232l7wlzqbi198hajlslgrq9yn0mnc9q-perl-capture-tiny-0.48.drv /tmp/guix-tests/store/swv64x3kzxxc95zbj7iqkx5c2qbx5ps6-Capture-Tiny-0.48.tar.gz.drv /tmp/guix-tests/store/5l44dn2g3spxx5cxhv85759z6fi6wzy1-perl-test-script-1.20.drv /tmp/guix-tests/store/dbcp6aahqjlzh1dh09pmq41gyjgclmsz-Test-Script-1.20.tar.gz.drv /tmp/guix-tests/store/x8lhjfcn07xfq2fbfhk7rzfxsjpdmbsr-perl-probe-perl-0.03.drv /tmp/guix-tests/store/0nry2askypi4qhbbf27lqjwc46falcar-Probe-Perl-0.03.tar.gz.drv /tmp/guix-tests/store/6j1p2arznbp8frl0wzv0shas81il5n85-File-Which-1.23.tar.gz.drv /tmp/guix-tests/store/yx7151hk8mlbip7p7zrfd7dmp4g10sm4-perl-test-pod-coverage-1.10.drv /tmp/guix-tests/store/rv2cazqa4hzkhh5yq7alhly1pjr5rz3i-Test-Pod-Coverage-1.10.tar.gz.drv /tmp/guix-tests/store/bpb10bqfavcxpmix4lw1pb8mykgalynk-gawk-5.1.0.drv /tmp/guix-tests/store/yqszk13mlq0bm6cw4xk8dfs8x5s72brk-libsigsegv-2.13.drv /tmp/guix-tests/store/g5vzh6a63kl79m419dmb0c3050zkm1d5-inetutils-2.0.drv /tmp/guix-tests/store/jsajnsc9fwq36pxmgyg4f7kldx4l4wdz-inetutils-2.0.tar.gz.drv /tmp/guix-tests/store/rsxj25ipcp5kzdgmgd59lfhdyijn1vgg-coreutils-8.32.drv /tmp/guix-tests/store/jjm9nw4i3sy0hdms679p0saq3ns99hih-w3m-0.5.3+git20210102.drv /tmp/guix-tests/store/014q6ksw63335cc2y5kgyc5rnp2cgw3p-imlib2-1.7.1.drv /tmp/guix-tests/store/ihwvdfz4hf11bbvmchwcj4g57qx8iyi4-giflib-5.2.1.drv /tmp/guix-tests/store/cvh8ar9yqg8q2fysn7di52liij5i74jr-giflib-5.2.1.tar.gz.drv /tmp/guix-tests/store/mda32pqx2prwcbcw9r1si48abch0gdks-libid3tag-0.15.1b.drv /tmp/guix-tests/store/gbc5c8mxdwgk156myc119dzc52nm234m-libid3tag-0.15.1b.tar.gz.drv /tmp/guix-tests/store/mr8dnx52vjd9ydcwzz5qj5xxsvchsjpj-imlib2-1.7.1.tar.bz2.drv /tmp/guix-tests/store/szsh0rd1kj9nfy2cgcg77m3hbhjlb81v-libwebp-1.2.0.drv /tmp/guix-tests/store/364m882wv6aqihvzwxr0xbf2wgdr64gi-libwebp-1.2.0-checkout.drv /tmp/guix-tests/store/6kax0nfrhbv11sw07pir4fc3pdbik2lv-glu-9.0.1.drv /tmp/guix-tests/store/lw2grwgmw3fsbh3ff7j0i4jsxa53ifr6-glu-9.0.1.tar.gz.drv /tmp/guix-tests/store/9vdmlbazk57wghszwp25anksnp6aqkzc-freeglut-3.2.1.drv /tmp/guix-tests/store/8c1qvjaja4kq58bsb6vl8rhz89h0xpjd-freeglut-3.2.1.tar.xz.drv /tmp/guix-tests/store/bwjhgan4wcfr1m40q28bf67vzrknnljc-freeglut-3.2.1.tar.gz.drv /tmp/guix-tests/store/kacy6af34527hhx42f7cdaiss8iszf0w-w3m-0.5.3+git20210102-checkout.drv /tmp/guix-tests/store/pc7qcjlchsbq9ki9zz3bldg790kqiwlr-xdg-utils-1.1.3.tar.gz.drv /tmp/guix-tests/store/pil4h0njnpq18aav1qidghbz4fgzk0d8-sed-4.8.drv /tmp/guix-tests/store/bhj4c2q1732gkqrgdvw8kz663vssda4f-sed-4.8.tar.xz.drv /tmp/guix-tests/store/q05drnblwylfn0drbyh2h9a14yj6bsdr-perl-file-mimeinfo-0.29.drv /tmp/guix-tests/store/vw5793s9n3qfpy1hgnfsvps2zpxrkx99-File-MimeInfo-0.29.tar.gz.drv /tmp/guix-tests/store/q0jzw0gqypbbqdxrjgjzr8f2214kcnvj-xset-1.2.4.drv /tmp/guix-tests/store/b1lgzbxvd7rpvf9in9xkc5x2z9fi9p48-xset-1.2.4.tar.bz2.drv /tmp/guix-tests/store/vl19cfr2f3k8474gi1g6a2b33blk84wi-xprop-1.2.5.drv /tmp/guix-tests/store/r18j86ykrrzr7vkb3mkck0lpadry0nyw-xprop-1.2.5.tar.bz2.drv /tmp/guix-tests/store/5hschmgyxcc7gnm6p1pz0cpk70fbzb1s-ruby-2.7.4.drv /tmp/guix-tests/store/p0y6mj365xhh7g30m3z9vmxijik1i89s-ruby-2.7.4.tar.xz.drv /tmp/guix-tests/store/xn88a8ymv5ykrnxg3l6c9b5vzkmywiip-ruby-2.7.4.tar.gz.drv /tmp/guix-tests/store/8680wmn44cz4jziczyi5h39f3cjk7b6k-libinput-minimal-1.19.2.drv /tmp/guix-tests/store/gkcq3x9lkg79znprv7zkqy3m83v1zzlr-libevdev-1.11.0.drv /tmp/guix-tests/store/wqqgnmhp8wx8hcb1rgvm8ydinyzdrv2a-libevdev-1.11.0.tar.xz.drv /tmp/guix-tests/store/ib4y8qszcpdk57xnzlzjz1rp7fw4dcyj-libinput-1.19.2.tar.xz.drv /tmp/guix-tests/store/sq21f5a20qk6gx27ap537dvlshdljmwr-mtdev-1.1.6.drv /tmp/guix-tests/store/ir6f6f0r0sfhmi6dvavjijbhcpq3h8q7-mtdev-1.1.6.tar.bz2.drv /tmp/guix-tests/store/v4jdzzzdf5hrk78av329kw96c5i3qfng-check-0.15.2.drv /tmp/guix-tests/store/mwwv2j5mnksv90mg1pkqmgfzhkfcbzcb-check-0.15.2.tar.xz.drv /tmp/guix-tests/store/f9d57xqxkdwalirc3k45yc73gqnln6j5-check-0.15.2.tar.gz.drv /tmp/guix-tests/store/wxmwi621zbgi19mwg6s7nrrshyr4ifjs-check-fix-test-precision-for-ppc.patch.drv /tmp/guix-tests/store/9zckpns68w91p514g9blbywrqwfaz9yj-mariadb-10.5.12.drv /tmp/guix-tests/store/151c3209b5zd756l6spf58mcs35y8fvy-mariadb-10.5.12.tar.xz.drv /tmp/guix-tests/store/9yx5x2jcrbqm3cqvzldmgmmq0idm77pl-mariadb-10.5.12.tar.gz.drv /tmp/guix-tests/store/f8q4d9jkq06xqf4l6fwa5fr8yzyx89d9-libaio-0.3.112.drv /tmp/guix-tests/store/yag9j7ycgkbzdgid4wxknyai0m11bag3-libaio-0.3.112.tar.gz.drv /tmp/guix-tests/store/kkbd2js27kxhfgkj29vsw7jkk8sz1m9y-pcre2-10.37.drv /tmp/guix-tests/store/19qkl32ja8ib1a7lsh4gwrj37drcrp4j-pcre2-10.37.tar.bz2.drv /tmp/guix-tests/store/ddybzv36lxqqbp9jkr6p73wgf6gnss5k-double-conversion-3.1.5.drv /tmp/guix-tests/store/wa9950s1i1k4hbgyx1v99avcz62llq37-double-conversion-3.1.5-checkout.drv /tmp/guix-tests/store/plaz442b4a06dfq0bilgci5353j6zajw-nss-3.71.drv /tmp/guix-tests/store/cgrhypv7k6422xd9k9nfvjni8wvpqb0q-nss-3.71.tar.xz.drv /tmp/guix-tests/store/zzvbcjmp1rykcwblk0w4w2lbvqs826q9-nss-3.71.tar.gz.drv /tmp/guix-tests/store/zhi7l92dja5c9vxa8blrn9nlqm7p5maz-libfaketime-0.9.9.drv /tmp/guix-tests/store/a3gv2hy9g38jgv1lbr4k89i7w09nqnc0-libfaketime-0.9.9-checkout.drv /tmp/guix-tests/store/qvhlraqz5cskinffqjhsz66x2s64ypg9-libmng-2.0.3.drv /tmp/guix-tests/store/mwk82cpav4d2k0xlka67xpm9i6mxxdgv-libmng-2.0.3.tar.xz.drv /tmp/guix-tests/store/qvkiw8z94qxmdbhbjkmgz62vkbjmc721-unixodbc-2.3.9.drv /tmp/guix-tests/store/xf0s9qlgl83xmlrvp3p5l7gnnrjb6ccl-unixODBC-2.3.9.tar.gz.drv /tmp/guix-tests/store/r6hxzh4fp6b6y5imjdqkqv0w6kx02hs6-vulkan-headers-1.2.164.drv /tmp/guix-tests/store/kfqxpg143nv2l7b37qgmvpgixdmsgasv-vulkan-headers-1.2.164-checkout.drv /tmp/guix-tests/store/ya8gi7spl2124ybyqq7md4hskw0zfm5l-postgresql-13.4.drv /tmp/guix-tests/store/mh9dp0gm243q1s3vwkbjsv1h56rqrvwh-postgresql-13.4.tar.xz.drv /tmp/guix-tests/store/zij1gi8ggcy67r5h21csfm8kviqrvn99-postgresql-13.4.tar.bz2.drv /tmp/guix-tests/store/yfkbg3xlv37g2nfh3a81simikyxhdf7m-pulseaudio-15.0.drv /tmp/guix-tests/store/0x5wmlws09v536q1kpc0gyhayh06a6qm-bluez-5.61.drv /tmp/guix-tests/store/407ihpf2h9pwnr4aywrmw75wb5v76fqf-python-docutils-0.17.1.drv /tmp/guix-tests/store/g14vvpr3ird9ybkn1q65pik05mfx80f8-docutils-0.17.1.tar.gz.drv /tmp/guix-tests/store/67sn1cq3gspwafgzz4m1pvkmmbgyckpv-bluez-5.61.tar.xz.drv /tmp/guix-tests/store/lpqxxgs5lkwlxmmcgbhl4zlrcdwgygph-libical-3.0.10.drv /tmp/guix-tests/store/73aln1lasdrydl6p398jd6rwx0dwgaad-libical-3.0.10.tar.gz.drv /tmp/guix-tests/store/dvaqliizqwlfb1pp2sqhpmj5dd7l18n8-gtk-doc-1.33.2.drv /tmp/guix-tests/store/1x1grvk9b3wgwmgaw5pwsdmw60z1677m-dblatex-0.3.12.drv /tmp/guix-tests/store/028k30w4f5x79s8y0anrqwfxlms28lgd-texlive-generic-etexcmds-59745.drv /tmp/guix-tests/store/4pfwphwlrncjmjs4g43vpszsmmmkk1x5-texlive-generic-etexcmds-59745-checkout.drv /tmp/guix-tests/store/7l5z7snlsga3fw2flfaffcxsyr6j5vvy-subversion-1.14.1.drv /tmp/guix-tests/store/501mancxh5qh5188h3paqs4pk4fq8b5y-serf-1.3.9.drv /tmp/guix-tests/store/d54vkrhnid9ih38kj5ylcx9xdpzbzbh1-serf-1.3.9.tar.xz.drv /tmp/guix-tests/store/wqp9kx7a7zhkic9dyr8dd9ydn2h9p7sm-serf-1.3.9.tar.bz2.drv /tmp/guix-tests/store/j1x5mizgcj8d336yjyprmfj581jymyr6-module-import-compiled.drv /tmp/guix-tests/store/y1x2iw8b9kpg3i84x05nrg6g3iddg01v-scons-3.0.4.drv /tmp/guix-tests/store/azxdh47x6m9zyrhj44jqw3x7dwqs7dbs-scons-3.0.4-checkout.drv /tmp/guix-tests/store/g8xy3126li96808909l5ybaxyw6wkisb-subversion-1.14.1.tar.bz2.drv /tmp/guix-tests/store/ws0j4ngxinicvp5fs0sdqmwswq7xbjrh-utf8proc-2.5.0.drv /tmp/guix-tests/store/1jxh04yx9h1a6xg6hnp37m015wfam52d-GraphemeBreakTest.txt.drv /tmp/guix-tests/store/4bnmlj9xn83mws5626hhv24n1zi78f63-utf8proc-2.5.0-checkout.drv /tmp/guix-tests/store/vmlk6mkr23fywyyz3gg19gah64nzbdb5-NormalizationTest.txt.drv /tmp/guix-tests/store/v9nimga3xxn0pf7qdl5xr51yi4z0bwk6-module-import-compiled.drv /tmp/guix-tests/store/h98y2qvkgx48x9lh3364gv6da8hzpwg1-texlive-generic-iftex-59745.drv /tmp/guix-tests/store/jkfyavsrm63sjgljqzy7kqyj3ccbjhkq-texlive-generic-iftex-59745-checkout.drv /tmp/guix-tests/store/ly8liqjqxdrsyc0ld23h0h7lpmrfz21j-texlive-generic-infwarerr-59745.drv /tmp/guix-tests/store/ndpkhmvx5sjmlj2g6hq8lgli35h1wqk8-texlive-generic-infwarerr-59745-checkout.drv /tmp/guix-tests/store/05sjz0rc22jvmbx96cs2dqxxs44sbhx8-texlive-fonts-latex-59745.drv /tmp/guix-tests/store/033x5fzq5q8vr6j13armc7r1ca4xwhdj-texlive-fonts-latex-59745-checkout.drv /tmp/guix-tests/store/1xw6j6c6w8dpalm826x3c5qbv9pwdqvr-texlive-metafont-59745.drv /tmp/guix-tests/store/bkri74603h5ivpi2n8z4nbas3ghs7f2d-texlive-metafont-59745-checkout.drv /tmp/guix-tests/store/z276lcx4zcvaf5z3lw3ziig3fmpxdb8b-texlive-bin-20210325.drv /tmp/guix-tests/store/67dbd2w2g0rnvvpxd7yshwb2fhj18cdm-texlive-20210325-source.tar.xz.drv /tmp/guix-tests/store/hagdw0vlzdsjlb9w560y280vacwa8z7m-texlive-20210325-source.tar.xz.drv /tmp/guix-tests/store/6nkf0a3rsj2sx3hjfwnahi3blivrwyhw-zziplib-0.13.72.drv /tmp/guix-tests/store/rrx87idvzsb2nsyd7c3pcdr23yb21l5b-zziplib-0.13.72-checkout.drv /tmp/guix-tests/store/fxmpyib9fp1bzlf7rprrp5b7y1shck6w-mpfr-4.1.0.drv /tmp/guix-tests/store/fzgnb4xd6nflqfb6kgnxilrb6fk3n0xz-teckit-2.5.10.drv /tmp/guix-tests/store/i4zdw3m62k1dp3i24sz7f2hrya6hs05v-teckit-2.5.10.tar.gz.drv /tmp/guix-tests/store/nrkwb1sgmxi9xl5mbb6yf91v9m5iyhfq-potrace-1.16.drv /tmp/guix-tests/store/d8dp47hxx385s5h89zrw48yfbyay6rva-potrace-1.16.tar.gz.drv /tmp/guix-tests/store/qwcsql4dlchvyqgnmn2gqzwv9888fccc-fontforge-20201107.drv /tmp/guix-tests/store/9qpacnnjw43zmf85adjky00rxy4aix33-libuninameslist-20200313.drv /tmp/guix-tests/store/wbxi070izyy2s6iklq7rx6hmgs44n68l-libuninameslist-dist-20200313.tar.gz.drv /tmp/guix-tests/store/ahx9v6vhrfvaq06ac394426hsczhmx30-fontforge-20201107.tar.xz.drv /tmp/guix-tests/store/n32nvwp2h8x6h8lsb3idxq72v13v2pwj-libspiro-20200505.drv /tmp/guix-tests/store/3zbl7jx0dlw41z4z60f439zhdd5169sf-libspiro-dist-20200505.tar.gz.drv /tmp/guix-tests/store/yk929yppgq25xj9gmdks0lmqn6x8x3ph-libungif-4.1.4.drv /tmp/guix-tests/store/cgbwr56isj6jk92na66sxchm832n0x42-libungif-4.1.4.tar.bz2.drv /tmp/guix-tests/store/rsya1dr99cz50xq76f6pbrw1nx0qpzxa-texlive-scripts-59745-checkout.drv /tmp/guix-tests/store/y361fhjx3r74hwaa76mblzywrfmlx6xg-texlive-20210325-extra.tar.xz.drv /tmp/guix-tests/store/y6kyfa9xlx9rjnzcdmyw8nvngs44bis5-texlive-cm-59745.drv /tmp/guix-tests/store/ghpaza4260x6ly1h37ba5k807gc06784-texlive-cm-59745-checkout.drv /tmp/guix-tests/store/0jh1m2pa24fc4m3vp52vnkzvjhvsa077-texlive-hyphen-estonian-59745.drv /tmp/guix-tests/store/09k9vnd7dkb19hv8dhc34glkzbidg6vs-hyph-utf8-scripts-59745-checkout.drv /tmp/guix-tests/store/0dq37vis4zy2zd99bag4i0iq78mw4a1v-ruby-hydra-0.0-0.5abfa37.drv /tmp/guix-tests/store/1ysmk5fxbscxw9n4diiy3yx5adr8dnq5-ruby-byebug-11.1.3.drv /tmp/guix-tests/store/26b4mg3jqhlihsmgm978d2c8fl49i7i5-module-import-compiled.drv /tmp/guix-tests/store/2w24j95bmgdlwvayzgq1qa7f8xadqrkp-ruby-pry-0.13.1.drv /tmp/guix-tests/store/6wji78gb9pc5xii8sk5q171hmvrb7yx1-ruby-coderay-1.1.2.drv /tmp/guix-tests/store/9kawpyx5ba9fb681q3am22zjhgg1jzg5-coderay-1.1.2.gem.drv /tmp/guix-tests/store/bh98fdf928gv0q4n0ymma8xx7330bi35-ruby-method-source-1.0.0.drv /tmp/guix-tests/store/38f3hpg9nqpf1mpry9sp75gdznss019f-method_source-1.0.0.gem.drv /tmp/guix-tests/store/9dhf047aj852m27x46nmdq4b7zsd87lf-ruby-rspec-expectations-3.8.2.drv /tmp/guix-tests/store/i8wd4c75bz0i2hindg6fn7z7rwa1i5b4-ruby-diff-lcs-1.3.drv /tmp/guix-tests/store/cqxs3af7wl5s0lwn38wvy5v6273p13pm-diff-lcs-1.3.gem.drv /tmp/guix-tests/store/ky6mah67sg1gxqla03h0206z404sa0mi-rspec-expectations-3.8.2.gem.drv /tmp/guix-tests/store/rda40n9ii53nqi64c3f81vgij23d0g6l-ruby-rspec-support-3.8.0.drv /tmp/guix-tests/store/21y62wg9lhlbjdww03p446xsvnfcams7-rspec-support-3.8.0.gem.drv /tmp/guix-tests/store/bg2j2mqwggbmba2l6rs7mvcmigj3vp14-ruby-rspec-3.8.0.drv /tmp/guix-tests/store/4y4rkfii0f69xz4dr8xblfassd1z52z3-rspec-3.8.0.gem.drv /tmp/guix-tests/store/pabv5svh0fi3qakfkm193gxc60dbp9ny-ruby-rspec-core-3.8.0.drv /tmp/guix-tests/store/8l88vbzk9l56vxqllbhf0jdvd7qzsirl-rspec-core-3.8.0.gem.drv /tmp/guix-tests/store/qcvzzkfnkyzp5z95jhyyzc2ip0ia1lxn-ruby-rspec-mocks-3.8.0.drv /tmp/guix-tests/store/6d8qa6l899fp00yhhny22skia4j07lnh-rspec-mocks-3.8.0.gem.drv /tmp/guix-tests/store/wvq32r4jcin03byw74znklr0z8qvkyw3-pry-0.13.1.gem.drv /tmp/guix-tests/store/2xh580sg6g239mjzyda0d2m4x2s71jc7-ruby-netrc-0.11.0.drv /tmp/guix-tests/store/4gvgqk1mv282ds4crvlv95jbq32smk1q-ruby-minitest-5.14.4.drv /tmp/guix-tests/store/hycy6gnkzsw8my91n1zg27jpdx6mgi9j-minitest-5.14.4.gem.drv /tmp/guix-tests/store/w2p8dj5pvjb0g4sfniwdhiv265kkby4m-ruby-hoe-3.21.0.drv /tmp/guix-tests/store/hgrxcazfldahc04f9n6sc5j6pr0nlw54-hoe-3.21.0.gem.drv /tmp/guix-tests/store/97qwpdhz5x8n3ia17599q8sy4fn21avy-netrc-0.11.0.gem.drv /tmp/guix-tests/store/6h0pvl76javnv12cw88bdz21hppya526-ruby-rubocop-1.10.0.drv /tmp/guix-tests/store/07g51pfc3kqji3qsizy1f8ivfb64h33g-ruby-bump-0.7.0.drv /tmp/guix-tests/store/8kyyav29z5rx8r0lg39ndc91gd4dpxsc-bump-0.7.0.gem.drv /tmp/guix-tests/store/30z0lizhqz6r3xqhy43i5gwbp0vhvd2n-ruby-docile-1.1.5.drv /tmp/guix-tests/store/9x16xh52jrksjdgx4qp7ii1pl2l5419m-docile-1.1.5.gem.drv /tmp/guix-tests/store/5g012b5cip9yhpcj07b946q4jh43c6g6-ruby-stackprof-0.2.17.drv /tmp/guix-tests/store/1q06r0pq2nvqdpcqdqqf8s5k0d7h5bip-ruby-mocha-1.13.0.drv /tmp/guix-tests/store/02lnrd9jma1nxl1h3fczcad93h5j23k3-ruby-instantiator-0.0.7.drv /tmp/guix-tests/store/0byv9wgigil4c80hsik820afxhpgb0ax-ruby-power-assert-1.1.5.drv /tmp/guix-tests/store/514snacixlp7g53y6ialz6z5xk0ija68-power_assert-1.1.5.gem.drv /tmp/guix-tests/store/vqjmr8l2ahknl228l319p20glq46syvs-bundler-2.1.4.drv /tmp/guix-tests/store/hvnmwp7n0dvj0dahfn42ay0g2nbwz9bl-bundler-2.1.4.gem.drv /tmp/guix-tests/store/5ac160n1w9zmk0iyn3vrhqprk3j5v03n-ruby-blankslate-3.1.3.drv /tmp/guix-tests/store/n5wa6k3fjxlqkwssyb3vcvgchg5klc6v-blankslate-3.1.3.gem.drv /tmp/guix-tests/store/s989ma6vcqcgk2pciahirrnfk9p79yy2-ruby-test-unit-3.4.4.drv /tmp/guix-tests/store/cy85lpk0k0wzhh5mn8rp4136sxdgy5ps-ruby-packnga-1.0.4.drv /tmp/guix-tests/store/kjq3j8ni1c3dk7alnj339ghqvp6mjlj8-ruby-yard-0.9.25.drv /tmp/guix-tests/store/bfcwd393pdrkkr91gjjh90nsdplpdrvv-ruby-yard-0.9.25-checkout.drv /tmp/guix-tests/store/nmjvrv4k6jxjkv98km2b8xyhigw8c87w-ruby-locale-2.1.2.drv /tmp/guix-tests/store/5a76rxgzgpiazkk8wvwalawmjlpwifbn-locale-2.1.2.gem.drv /tmp/guix-tests/store/r9vmnbr2zvy7zjqhradqnqdqcg39yd6i-packnga-1.0.4.gem.drv /tmp/guix-tests/store/v2r729q0axbk3m1nc2fq4zhr8m5cnp9i-ruby-text-1.3.1.drv /tmp/guix-tests/store/fh16xjhr77xh6hlq047kq7wmv0jb3wcz-text-1.3.1.gem.drv /tmp/guix-tests/store/yl064v4hw0kbk4al6pw7cphksqhs757a-ruby-gettext-3.1.7.drv /tmp/guix-tests/store/v0asfhwjggf98vfnvq24rydsa53mdwzl-gettext-3.1.7.gem.drv /tmp/guix-tests/store/hslnwnxxhplv5s4yybrw6a4s21la9m33-test-unit-3.4.4.gem.drv /tmp/guix-tests/store/zjb137yzvp0nmifbkfhlbj756chpr6wj-instantiator-0.0.7.gem.drv /tmp/guix-tests/store/053mv7y6n1a1hypwi1nmj4vn06gczpxj-mocha-1.13.0.gem.drv /tmp/guix-tests/store/4sk5201rg0qmp1lmljl0m222kfbqxrz7-ruby-introspection-0.0.4.drv /tmp/guix-tests/store/gimy8279zh3nw7fngwln4ik0cdk2df38-ruby-metaclass-0.0.4.drv /tmp/guix-tests/store/86w5iy89v8ccpizv14f0hck23iadqc8c-metaclass-0.0.4.gem.drv /tmp/guix-tests/store/pxxkh2xhd2q59cvq69wg77ms6c27i4b9-introspection-0.0.4.gem.drv /tmp/guix-tests/store/8dhn1zvvl8167n919bl9p92ny2nx6xw7-ruby-rake-compiler-1.1.1.drv /tmp/guix-tests/store/9pjgzxz6b3271yh5igzn1053vl1b589w-rake-compiler-1.1.1.gem.drv /tmp/guix-tests/store/js7fdhfm8z411czqx0hhmbk1i5i14333-stackprof-0.2.17.gem.drv /tmp/guix-tests/store/62dyfwxlz939skk3hdzzjr7bsax59wz4-ruby-rubocop-rspec-2.2.0.drv /tmp/guix-tests/store/pmjna5gqv7rcigy49igjshs0n3wfvn4c-ruby-rubocop-rspec-2.2.0-checkout.drv /tmp/guix-tests/store/7652z4wd9n4akn79w0cf4fb81k4l35jc-ruby-rubocop-1.10.0-checkout.drv /tmp/guix-tests/store/7fvyf1w7rv98x7ld33zavy3ywqxc2m7p-ruby-hashdiff-1.0.1.drv /tmp/guix-tests/store/0inr1a5kv6jqqqsxpwn874bs4dk49a0j-ruby-rspec-expectations-2.14.5.drv /tmp/guix-tests/store/0wpfzi41r15awjl1i972k6bhppwv2vil-rspec-expectations-2.14.5.gem.drv /tmp/guix-tests/store/bhfxf6n0qmykxnki79sk3mdninllygjd-ruby-rspec-mocks-2.14.6.drv /tmp/guix-tests/store/9874b00jaans6n95czizpm8p4myg2ppi-rspec-mocks-2.14.6.gem.drv /tmp/guix-tests/store/fh3cq8bqvbknplz5l932y45wxmh8v8qs-hashdiff-1.0.1.gem.drv /tmp/guix-tests/store/n90i8gy8xfmnm1csmli37zwz25d8bjkw-ruby-rspec-core-2.14.8.drv /tmp/guix-tests/store/f73prc25qp5s40plz26xhyyw5qxhqw1j-rspec-core-2.14.8.gem.drv /tmp/guix-tests/store/sw722sandc4q3z2q6rsr3k0jbn24zbsv-ruby-rspec-2.14.1.drv /tmp/guix-tests/store/blmgy1wml1jiywqlzm5q7g0vsm93flvq-rspec-2.14.1.gem.drv /tmp/guix-tests/store/8znqjirknqfzy0kw8qcirfy1dlcnyx6k-ruby-rubocop-performance-1.9.2.drv /tmp/guix-tests/store/qz1i3v4pfif9ki9zb56bm2ahgdpcdgay-ruby-rubocop-performance-1.9.2-checkout.drv /tmp/guix-tests/store/ak191g08768f6vkffd4862vrmwx4c70i-ruby-progressbar-1.10.1.drv /tmp/guix-tests/store/sga6ry8js1gg2jyy2ip7ah5hwyiiqgw2-ruby-progressbar-1.10.1.gem.drv /tmp/guix-tests/store/barpbg063hfrgdsi16s4dkq04i9kp6xq-ruby-parser-3.0.0.0.drv /tmp/guix-tests/store/1y38xv3z2yls22as9yh8s2lx20n4sa0i-ruby-cliver-0.3.2.drv /tmp/guix-tests/store/rj6qrzd987wm8298fzhw8fmjrpkby1qz-cliver-0.3.2.gem.drv /tmp/guix-tests/store/8mglqpwk0s8pq8hcg74wkcdp4s54jy2r-parser-3.0.0.0.gem.drv /tmp/guix-tests/store/8qm7n1ync8y0cf2fn5fq12l7xmfk8j0b-ragel-6.10.drv /tmp/guix-tests/store/i0vm7zlh5nsd7f4drlqqdhdlwqh27pw3-ragel-6.10.tar.gz.drv /tmp/guix-tests/store/gixqhdsqvp70qrzp7mrkn4hq27p4sly9-ruby-json-2.1.0.drv /tmp/guix-tests/store/knv0k9lsz5ajbfj23mgdhyyhr0hqbpgj-json-2.1.0.gem.drv /tmp/guix-tests/store/lrm0k0zfba7ilb9acpz9m4paka69nq8m-ruby-simplecov-0.17.1.drv /tmp/guix-tests/store/j6fdkjd9qzhmiwjnp7wagfb4sg2z3gnk-simplecov-0.17.1.gem.drv /tmp/guix-tests/store/pr9kr5aa0lmxpbbpfpcqvxr1s8x9ga95-ruby-simplecov-html-0.10.2.drv /tmp/guix-tests/store/jk7z42xmya0ghbpz5qql3z8ifhh84lbh-simplecov-html-0.10.2.gem.drv /tmp/guix-tests/store/p89153h77a88k9l2d2cqrxk19h7fargs-ruby-ast-2.4.2.drv /tmp/guix-tests/store/254blxdxglj3gj18bhajbssmc5axjg2x-ruby-ast-2.4.2-checkout.drv /tmp/guix-tests/store/2c857zqjak3c0xiamk2bfq6kz2iwf9x9-ruby-domain-name-0.5.20190701.drv /tmp/guix-tests/store/03khk7fhkswi7jv5yvw4pyk9hdzaqm48-ruby-tzinfo-data-1.2021.1.drv /tmp/guix-tests/store/1cmwqrzk230ym91g1znpyr1jpdfn1sib-ruby-tzinfo-data-1.2021.1-checkout.drv /tmp/guix-tests/store/fg47liyppziz4hgfl7lzbxsmj4c4n4kg-ruby-tzinfo-2.0.4.drv /tmp/guix-tests/store/7vqvi6pm10azixnafka3qz3kf1h6fmla-ruby-tzinfo-2.0.4-checkout.drv /tmp/guix-tests/store/p9rl8vc22dx7pddkhkagiddyx766953n-ruby-concurrent-1.1.5.drv /tmp/guix-tests/store/8p1pck5f7hizcdjg1j7rznyy3p3y205k-ruby-concurrent-1.1.5-checkout.drv /tmp/guix-tests/store/jhx40532r42q1w4l72hd5ap92nzjfs2m-tzdata-for-ruby-tzdata-info.drv /tmp/guix-tests/store/5xyv88lb1gsh9shy786ngc8qa531z1xk-tzdata2021a.tar.gz.asc.drv /tmp/guix-tests/store/qsa5s6m02i62vck7q62q3r6s0zw0r99j-tzcode2021a.tar.gz.asc.drv /tmp/guix-tests/store/sins7ly7xirxvxc08yw0xwfl4fr1pzvi-tzdata2021a.tar.gz.drv /tmp/guix-tests/store/zclshcmjlqq7zcgjvqcq1qcyb65rgx9j-tzcode2021a.tar.gz.drv /tmp/guix-tests/store/061r263pipd3fpyfqrhrjbjxzmsll5rh-ruby-i18n-1.7.0.drv /tmp/guix-tests/store/y4myj60x799pk1dxyrhwa9042v4jzmjw-i18n-1.7.0.gem.drv /tmp/guix-tests/store/46wjdzvp2ga3ip4dwy2iijjpsnlxlchf-domain_name-0.5.20190701.gem.drv /tmp/guix-tests/store/4jqlnyq78lsmqb1g6rpzs3hawxcf052s-ruby-shoulda-3.5.0.drv /tmp/guix-tests/store/6hylimcqh76xq1sjrkzg5mks7cr2q5gd-ruby-shoulda-matchers-2.8.0.drv /tmp/guix-tests/store/hm672xwh1bp1vrc80fqqcn1zjlm5v2pz-ruby-activesupport-6.1.3.drv /tmp/guix-tests/store/msx4ky62gxj0865hml70wqd1k0rpclgz-activesupport-6.1.3.gem.drv /tmp/guix-tests/store/s11mwmn1ngq35lmm4hyw1vz5ah2244z1-ruby-zeitwerk-2.4.2.drv /tmp/guix-tests/store/2b105vgchir450373fa56f30njwx7gg3-ruby-builder-3.2.4.drv /tmp/guix-tests/store/87rlrdp0xcj1dwvrklqyh9r3g95j15x3-builder-3.2.4.gem.drv /tmp/guix-tests/store/801qik2lwza1wkqqscndi3p5r5bxi2lz-ruby-zeitwerk-2.4.2-checkout.drv /tmp/guix-tests/store/9m1plyv8jmdjra00f4768n6xk6bmxkwa-ruby-ansi-1.5.0.drv /tmp/guix-tests/store/p6fp3x8a3q826f16cygg60q2n993xkhd-ruby-ansi-1.5.0-checkout.drv /tmp/guix-tests/store/g2xabwjldyajhaacvkmscxbhnmzy2hmm-ruby-minitest-focus-1.1.2.drv /tmp/guix-tests/store/c3f0yikhlqw96k658vwd11n01bmrwi9r-minitest-focus-1.1.2.gem.drv /tmp/guix-tests/store/zpzlzr6diac9xkvdp1j156g5lrq21xbw-ruby-minitest-reporters-1.3.6.drv /tmp/guix-tests/store/7bq2dfcbnp611qqkv8slc21shpk95iip-minitest-reporters-1.3.6.gem.drv /tmp/guix-tests/store/82l5370rprgal98d7jijnzzcyybjgr9k-ruby-maruku-0.7.3.drv /tmp/guix-tests/store/2dd8nc8lmzkdibr1ypza2s83212rkarf-ruby-nokogiri-1.10.9.drv /tmp/guix-tests/store/b2fxg2i2rlm2j5mzwal2b6548fvi38xd-ruby-pkg-config-1.2.5.drv /tmp/guix-tests/store/rr0nhvrwinx30n221mkkxwa451vx6fh5-pkg-config-1.2.5.gem.drv /tmp/guix-tests/store/cm41f11gn2gz1vp7izrabz0cmhnrx9vy-nokogiri-1.10.9.gem.drv /tmp/guix-tests/store/j8ciqchr1jqb0cyaykl2mqmcvngr3kfg-ruby-mini-portile-2.4.0.drv /tmp/guix-tests/store/clb0dzyvmlygrm71agnvxf6v8lzy058i-mini_portile2-2.4.0.gem.drv /tmp/guix-tests/store/991ycmi0xqrrfi5s8wbcgh2hwk3f078y-maruku-0.7.3.gem.drv /tmp/guix-tests/store/kz7krrqglhj73145gyab4vqkn4qxbmn4-ruby-tdiff-0.3.3-1.b662a604.drv /tmp/guix-tests/store/4ffbrk1ji8c806gjhvbf379qp3schp5d-ruby-rubygems-tasks-0.2.5.drv /tmp/guix-tests/store/xzzpfww7080f2w2yp1ddh9k572smy7gc-rubygems-tasks-0.2.5.gem.drv /tmp/guix-tests/store/l6wryykpzzg7b6imkkkwjqqmsc3ivdfg-ruby-tdiff-0.3.3-1.b662a604-checkout.drv /tmp/guix-tests/store/z2960r5kclhjn62fid4pzaiha44h27xh-ruby-nokogiri-diff-0.2.0-1.a38491e4.drv /tmp/guix-tests/store/ka06a79pbln5bccambpang1cw36b1wwm-ruby-nokogiri-diff-0.2.0-1.a38491e4-checkout.drv /tmp/guix-tests/store/vdklsvakz5gkc7iyg0pvqmhj6rqbsx7r-shoulda-matchers-2.8.0.gem.drv /tmp/guix-tests/store/fzh6fnfpb74c909c399kwvlqmv2hvrdf-ruby-shoulda-context-1.2.2.drv /tmp/guix-tests/store/hcs0gx3wwkdd92z6k7vim37k38zrz4wb-shoulda-context-1.2.2.gem.drv /tmp/guix-tests/store/y96fyaybzd4kyi3hpwlsazhs1j4wa1az-shoulda-3.5.0.gem.drv /tmp/guix-tests/store/ar402dq1346frgprz2lbrjrncrjs7lkj-ruby-unf-0.1.4.drv /tmp/guix-tests/store/81n8d2b7ssvar6dba8axb4ls4ajg8gn6-unf-0.1.4.gem.drv /tmp/guix-tests/store/jvqmk9skm6s9gmnjkxri238jikjya6s6-ruby-unf-ext-0.0.7.6.drv /tmp/guix-tests/store/63i32snyls5yqx0459nsvzi57s09g8b6-unf_ext-0.0.7.6.gem.drv /tmp/guix-tests/store/404hn9glql7z6a8msp4m86rkxxgghq0j-ruby-rest-client-2.0.2.drv /tmp/guix-tests/store/5q0sn0rc3f3bdf2sml63sn00yh4zgdx2-ruby-http-cookie-1.0.3.drv /tmp/guix-tests/store/8id5vl445p9km07lwj1pdzfqs6z20gs6-ruby-sqlite3-1.4.2.drv /tmp/guix-tests/store/8lnx7zdvkvrvgxc8rw9qpzvc76bwd5iz-ruby-mini-portile-0.6.2.drv /tmp/guix-tests/store/80i0sjgz0k58iwvm4lqm9a1x98mbaiqq-mini_portile-0.6.2.gem.drv /tmp/guix-tests/store/jyw2733d5vqrsb5gkimnr6cbjam27wck-sqlite3-1.4.2.gem.drv /tmp/guix-tests/store/fhjzbzy53zw09sf36vkdr5s3av6gv4fb-http-cookie-1.0.3.gem.drv /tmp/guix-tests/store/i9dcbld1h77c6dlz705gzd93pa4vanaf-ruby-addressable-2.7.0.drv /tmp/guix-tests/store/9z637vk5q097lg1ifrbfwmcjgz35k796-ruby-rspec-its-1.3.0.drv /tmp/guix-tests/store/xckn24dh0hfhwmx5hiqd2km4861lna28-ruby-rspec-its-1.3.0-checkout.drv /tmp/guix-tests/store/h9p8h4amkx2qdaib9k8aax8bsgpqyynp-ruby-idn-ruby-0.1.0.drv /tmp/guix-tests/store/1spqrxdrwp5g8ni7hcrjwh5m0dh10jz4-idn-ruby-0.1.0.gem.drv /tmp/guix-tests/store/k4l32ygzzkvaqdapxmapys4939ckms09-ruby-public-suffix-4.0.5.drv /tmp/guix-tests/store/y18v285grbrrxvir9wshqb1bxa53kwqm-public_suffix-4.0.5.gem.drv /tmp/guix-tests/store/mdciv99f1aqf5ar913h0hlca9q9l92l7-addressable-2.7.0.gem.drv /tmp/guix-tests/store/vnfbxp6di0lfr519gcbs8569n691llg8-ruby-rack-2.2.3.drv /tmp/guix-tests/store/19xmw0a5yr76layfk6xpkk2n96zfak83-ruby-minitest-global-expectations-1.0.1.drv /tmp/guix-tests/store/5csdmfy54q7y30gglv1whj3pwfvsv92m-minitest-global_expectations-1.0.1.gem.drv /tmp/guix-tests/store/zg9cjlyzwn4hpbyrhh8h6bijvhl63pr9-ruby-rack-2.2.3-checkout.drv /tmp/guix-tests/store/v9wfj9rl4qwqh0lck3hpcl2r7qg0zyz5-ruby-rack-2.2.3-checkout.drv /tmp/guix-tests/store/xnqsbi6pygn3i23jbv5vw95gc6ngjjra-ruby-sporkmonger-rack-mount-0.8.3-1.076aa2c.drv /tmp/guix-tests/store/yyxgsxqlq2rg8isf6k3aafv3a8k37j8z-ruby-sporkmonger-rack-mount-0.8.3-1.076aa2c-checkout.drv /tmp/guix-tests/store/ihdqbx5l0jvbsssvplfhs703rb0cji5r-ruby-mime-types-3.1.drv /tmp/guix-tests/store/1qw0g42dpp7sx7nrl5ra44738cikjq91-ruby-minitest-rg-5.2.0.drv /tmp/guix-tests/store/f20xmn9gy6bw725x59p9hqx94pij26m3-minitest-rg-5.2.0.gem.drv /tmp/guix-tests/store/35ziwidzi8qr14i5gz02gxfy3kdhn4hg-ruby-minitest-hooks-1.5.0.drv /tmp/guix-tests/store/77p7vi2kcc3ybnixayir2bg7ccika5y4-minitest-hooks-1.5.0.gem.drv /tmp/guix-tests/store/7spwq687ymknss2xb7dz75akxlk6zndj-ruby-sequel-5.47.0.drv /tmp/guix-tests/store/igq2lasd8yrxrp8b432hcka6b6an0gk1-sequel-5.47.0.gem.drv /tmp/guix-tests/store/5ydd9fjxgzqfak9dhsj7754d4v7lq5ic-ruby-fivemat-1.3.7.drv /tmp/guix-tests/store/5xcrb9gs1zn7pzg8b7n0xdaq2sicj9cg-fivemat-1.3.7.gem.drv /tmp/guix-tests/store/6qaw6lgpgvbqvhjnhhgkfqckzf4xflzz-mime-types-3.1.gem.drv /tmp/guix-tests/store/h1hd25r8csxf8zm22l79m0j6kd0lv8s5-ruby-minitest-bonus-assertions-3.0.drv /tmp/guix-tests/store/70q9a54ym66aqc70amfa7d4aysl2xac0-minitest-bonus-assertions-3.0.gem.drv /tmp/guix-tests/store/jy473bciz8rfnby3vgyrbxik9cyjm0hm-ruby-minitest-moar-0.0.4.drv /tmp/guix-tests/store/hw126lv8jaf0skr9d620nbf0z99nkrh7-minitest-moar-0.0.4.gem.drv /tmp/guix-tests/store/x9q98982k44wiyc46z05vrqd4p9w7v1s-ruby-minitest-pretty-diff-0.1-1.11f32e93.drv /tmp/guix-tests/store/8hlvcj67b1cyn5bq8ihvnbxf71ycnwib-ruby-turn-0.9.7.drv /tmp/guix-tests/store/040kcqdsqdwi0hp7i9z21byfaw0spif1-turn-0.9.7.gem.drv /tmp/guix-tests/store/hghy8mazabw7ss323qwz3r4l4jj5v1np-ruby-minitest-4.7.5.drv /tmp/guix-tests/store/kdanpxd8g2lwnnvjp8az14nhd8p1pvz4-minitest-4.7.5.gem.drv /tmp/guix-tests/store/g3l964jj5qnwhhwwm6ml3gh31z6lga0l-ruby-minitest-pretty-diff-0.1-1.11f32e93-checkout.drv /tmp/guix-tests/store/k0awd8kd1fznwc5nb029khym08k5r08y-ruby-mime-types-data-3.2016.0521.drv /tmp/guix-tests/store/xa8c9dagwcrq8hgs7rjdj60000xlpk9p-mime-types-data-3.2016.0521.gem.drv /tmp/guix-tests/store/q0n10knrnpfpbshcyz2knxs7b5ffqr9y-ruby-webmock-2.3.2.drv /tmp/guix-tests/store/cwhj57zhhw7pvc1yj13qi84ssxnbkqlz-webmock-2.3.2.gem.drv /tmp/guix-tests/store/xmnlr7pd83mgi08wirk1swkdnzb1611b-ruby-crack-0.4.5.drv /tmp/guix-tests/store/g8kbyhpxspqy5s5fna02y2r4kapv1rjg-crack-0.4.5.gem.drv /tmp/guix-tests/store/zwfv00krspzqj5pixd70js5gx5ll5p5i-rest-client-2.0.2.gem.drv /tmp/guix-tests/store/mgnh4i8gy4h2g0sgbgki2fdd0fvilhyw-ruby-kramdown-2.3.1.drv /tmp/guix-tests/store/31vdsdslls46g68rnghy193m0f754wvb-ruby-afm-0.2.2.drv /tmp/guix-tests/store/fzfc19d7dw5hn7xr5faqd23xvxs7i3cs-afm-0.2.2.gem.drv /tmp/guix-tests/store/43jas2hyrk52cxa6agzcyvcavzs1rm0s-ruby-hashery-2.1.2.drv /tmp/guix-tests/store/4if1fkx9n6n787rwmkna42h82rd0a2jm-ruby-qed-2.9.2.drv /tmp/guix-tests/store/mdf6snihkfzn07hij3gzdl75byyq7g26-qed-2.9.2.gem.drv /tmp/guix-tests/store/xpjys77v688za59rq74365gcz9b6165x-ruby-brass-1.2.1.drv /tmp/guix-tests/store/p57z1zfsn8375vvnbv6wac6pk0aqqll7-brass-1.2.1.gem.drv /tmp/guix-tests/store/666sfqprgla548313har51jgxb1nkl41-ruby-rubytest-cli-0.2.0.drv /tmp/guix-tests/store/k6cslw21a7ky2csry89rrxqgpafqjc96-rubytest-cli-0.2.0.gem.drv /tmp/guix-tests/store/v006bla1gycdazbardcwf90a199ga2a1-ruby-rubytest-0.8.1.drv /tmp/guix-tests/store/ydai14fnf0rvraa1cgvbljk0jnpsl34j-rubytest-0.8.1.gem.drv /tmp/guix-tests/store/b7p0fnzmzi5g8hhvv6xr1rqah1rqxqwf-ruby-ae-1.8.2.drv /tmp/guix-tests/store/i7whphpla9n9vr023921lxydqp1w41q7-ruby-ae-1.8.2-checkout.drv /tmp/guix-tests/store/g9s2zwlk92qqbcbhfa8qz9dwv6lcq0q4-hashery-2.1.2.gem.drv /tmp/guix-tests/store/ym2p67izjv1wndzr1al1549hs1z59sd9-ruby-lemon-0.9.1.drv /tmp/guix-tests/store/gi9y18cf0s5s7rkhmcimz9h1zbhxbzpj-lemon-0.9.1.gem.drv /tmp/guix-tests/store/6jf9piyjl2g69hzgwwx98rqhrb3skzby-ruby-ttfunk-1.6.2.1.drv /tmp/guix-tests/store/9l0dn2bav9y4sdfd9dlfgc244vdf080j-ruby-ttfunk-1.6.2.1-checkout.drv /tmp/guix-tests/store/70kzl6ck5djxzxh08y7l5bhz4zqh7j26-ruby-rc4-0.1.5.drv /tmp/guix-tests/store/h44lkkx6wijqns6i24hqi4w7dm4r66aq-ruby-rc4-0.1.5.gem.drv /tmp/guix-tests/store/al5fkg0j9cb096jpjycbhxkyf7lg26pv-ruby-pdf-inspector-1.3.0-1.00ee4c9.drv /tmp/guix-tests/store/9f5x4ch0x6xh7l1mgfq36ydfgwxbvbg2-ruby-pdf-inspector-1.3.0-1.00ee4c9-checkout.drv /tmp/guix-tests/store/dc8fb3shhj7vzsd2yw4sqanfg0p02pr0-ruby-pdf-reader-2.4.0.drv /tmp/guix-tests/store/130v7g2jnr7dayq3j4j4xxdynz498mkr-ruby-cane-3.0.0.drv /tmp/guix-tests/store/bcd0sfpbas9zx2z48pfaqjn5ql68mfzp-cane-3.0.0.gem.drv /tmp/guix-tests/store/qr7h6nghdpjy9ksxaki61kvw81365sij-ruby-parallel-1.21.0.drv /tmp/guix-tests/store/0qcc4a1d3vnyyiiskwfv1p37p3y1hnrf-ruby-activemodel-6.1.3.drv /tmp/guix-tests/store/6jgjn7ajkd7viapj749g2vzwf7pd833k-activemodel-6.1.3.gem.drv /tmp/guix-tests/store/117r31vqiirn2rv73m3pwj6q0q4m8z7q-ruby-rspec-rerun-1.1.0.drv /tmp/guix-tests/store/0npbj0hk2y3w8mzvr549f1a7wc4xypk9-rspec-rerun-1.1.0.gem.drv /tmp/guix-tests/store/6fsgm0g0g8jk9cccj2blfx42fy9gh55h-ruby-mysql2-0.5.2.drv /tmp/guix-tests/store/f51ikkqcdjdax4s85kc97x9i961g40sz-ruby-mysql2-0.5.2-checkout.drv /tmp/guix-tests/store/l8hdza408kkagfhh18kanff5qqd0zsm2-ruby-parallel-1.21.0-checkout.drv /tmp/guix-tests/store/pz7ypifip13hxgyrglnj8w052q52znaq-ruby-arel-9.0.0.drv /tmp/guix-tests/store/cn34zl7v5jvbmi6c8r2j299rvsf4gy99-arel-9.0.0.gem.drv /tmp/guix-tests/store/v70y4lhwznp95iya704909m3jc8ycf3c-lsof-4.94.0.drv /tmp/guix-tests/store/9a1r4a89q64mkad3sb4jcxydvmxaqlxa-lsof-4.94.0-checkout.drv /tmp/guix-tests/store/d6khsi3qjydiqphrpy9xm5kaiafh578r-lsof-4.94.0-checkout.drv /tmp/guix-tests/store/z2v6b1wn5v968wvcwh35gv17dagafklr-ruby-activerecord-6.1.3.drv /tmp/guix-tests/store/3zz2gvjnjk3725i04z64mi5fdhw2jy28-activerecord-6.1.3.gem.drv /tmp/guix-tests/store/drlw0knmnxkmlj32xf4c7pxxzs5yc6ix-ruby-pdf-reader-2.4.0-checkout.drv /tmp/guix-tests/store/gkixgzzsvq99xb5i58kxcbxzp5dabd2v-ruby-morecane-0.2.0.drv /tmp/guix-tests/store/x98k79pjyrwi78xbhh17fxpqsq8qk2lg-morecane-0.2.0.gem.drv /tmp/guix-tests/store/l57k39caqxl4ig8xln18z1q67h2f5pzv-ruby-ascii85-1.0.3.drv /tmp/guix-tests/store/whdhzci53rl9bpv4awdmqncp5l2n1hgk-Ascii85-1.0.3.gem.drv /tmp/guix-tests/store/hwlci2qadlqvym3mp50ya0jw0hy4irrv-kramdown-2.3.1.gem.drv /tmp/guix-tests/store/miqj0j6mpqxrrdggk1qh2q2ldbqvxfq6-ruby-pdf-core-0.8.1.drv /tmp/guix-tests/store/i1qrqgd97mwlm539k8yfqc2b319jk7k1-pdf-core-0.8.1.gem.drv /tmp/guix-tests/store/q8n4m7va674ncm7vrvmqrijpfhxn0cyd-ruby-prawn-2.2.2-1.d980247.drv /tmp/guix-tests/store/gn2cdgm98p2h75j9kby1v99dpsrrnnv1-ruby-prawn-2.2.2-1.d980247-checkout.drv /tmp/guix-tests/store/nybn91vlww1v687r9mmylrzwnm1bk8fr-ruby-prawn-manual-builder-0.3.1.drv /tmp/guix-tests/store/vdl6dp97y8fqj3c5whm3ygi1qr8nmx8l-prawn-manual_builder-0.3.1.gem.drv /tmp/guix-tests/store/s7l2pq5y7lgg74686l2yzqd6nw30n3pk-ruby-prawn-table-0.2.2.drv /tmp/guix-tests/store/lf0xdsqas2yz3wm2765p9lxz4m3d4w25-prawn-table-0.2.2.gem.drv /tmp/guix-tests/store/p8nfnc4np9xbavy053b179b8cyqmfbmf-ruby-bacon-1.2.0.drv /tmp/guix-tests/store/83ms1n1ps34g6dwpc115x4w6gc4qmdd7-bacon-1.2.0.gem.drv /tmp/guix-tests/store/vdgw321mxmhqj08fz0c6wyv3ymzy3lrx-ruby-bacon-colored-output-1.1.1.drv /tmp/guix-tests/store/bnkhh7840r791v396c4lybq3yh0rmihr-bacon-colored_output-1.1.1.gem.drv /tmp/guix-tests/store/vklv44jl4mlg1k7pbgyxdrl6z6gry8z2-ruby-racc-1.5.2.drv /tmp/guix-tests/store/d75yalanpx3ahfdm0rcc9c8grcdvc4vg-racc-1.5.2.gem.drv /tmp/guix-tests/store/zinh68yk28gjlrnas61pzaahdzk5qmmq-ruby-json-pure-2.3.1.drv /tmp/guix-tests/store/c4dn8iy88pnm8339aznlq1nbm46pxqqj-json_pure-2.3.1.gem.drv /tmp/guix-tests/store/bx64lyx0a70y8nrrmprmzvkw9rlp6ifp-ruby-webmock-3.11.2.drv /tmp/guix-tests/store/45a4irglhg55ia3kmbq0z07kxcpan35k-webmock-3.11.2.gem.drv /tmp/guix-tests/store/c4drwfbpqzpvhyq0w44j3hf21isx174c-ruby-rainbow-3.0.0.drv /tmp/guix-tests/store/7iq31r3v62md57sfvpxnzdjvx84bwygq-rainbow-3.0.0.gem.drv /tmp/guix-tests/store/cb0hmmlcrp7dr0kc999npxm692xdxqa9-ruby-unicode-display-width-1.6.0.drv /tmp/guix-tests/store/lfjjy555s4i5z6a52myy8q3fr3qdxmk1-unicode-display_width-1.6.0.gem.drv /tmp/guix-tests/store/gldidddmj314hkdxbsxxj59zzqrmafli-ruby-rubocop-ast-1.4.1.drv /tmp/guix-tests/store/hrffa6gb1jcqpw8zg8hw6d8qay54i995-ruby-rake-13.0.1.drv /tmp/guix-tests/store/kv5z6cr4zyk0qiwx4kvyvxmbn3j340i3-rake-13.0.1.gem.drv /tmp/guix-tests/store/ivkwnrwdilyhl6xb5nxdhlc6v9rj6n7j-ruby-rubocop-ast-1.4.1-checkout.drv /tmp/guix-tests/store/w5sl68kz8b5ms4gjbhb0vx5sw7dfqqvj-ruby-oedipus-lex-2.5.2.drv /tmp/guix-tests/store/7rm0044kprrmwliprl9z8j26dv19mr6y-oedipus_lex-2.5.2.gem.drv /tmp/guix-tests/store/h6ylwhrd6z6vznmskxzq11wix2wrq4nx-ruby-rubocop-1.10.0.drv /tmp/guix-tests/store/kf8jdmww66ghf9fmqnvdsa3jq2g22i8k-ruby-regexp-parser-2.0.0.drv /tmp/guix-tests/store/fydm9h2hsixpdhcps0zl9yjzkylvmp4p-ruby-regexp-property-values-1.0.0-1.03007a6.drv /tmp/guix-tests/store/2n3c02ln0iwl8sv9a3vzldpvgyd1agf7-ruby-regexp-property-values-1.0.0-1.03007a6-checkout.drv /tmp/guix-tests/store/67v0kql10pj4cvxrp9q4klaf48j55xw8-ruby-character-set-1.4.0.drv /tmp/guix-tests/store/6gxam9q0wmdbqn4kkqmxdsfjrwsaq4jl-character_set-1.4.0.gem.drv /tmp/guix-tests/store/hmnaw048bffhiwb3dm7a144jxph9g37b-ruby-range-compressor-1.0.0.drv /tmp/guix-tests/store/h913hb1kp56j3z2r6zvknb9g4b57afsj-ruby-range-compressor-1.0.0-checkout.drv /tmp/guix-tests/store/snzvfjsla2y4p4h02rlgk2hzashr42lf-ruby-regexp-parser-2.0.0-checkout.drv /tmp/guix-tests/store/z66grpmkmsdlil5pvqqpkwrjs2x57cx0-ruby-test-queue-0.4.2.drv /tmp/guix-tests/store/rk8mc4jaihp7cwacvpawgw71fq692jha-test-queue-0.4.2.gem.drv /tmp/guix-tests/store/8rz2bs0pqa31ci5mk4y71kynf1586dzr-ruby-octokit-4.18.0.drv /tmp/guix-tests/store/inh5vnpi9774m3zk3kw7mbrbilcqvw6j-ruby-faraday-0.15.4.drv /tmp/guix-tests/store/7qnf9fkzrwp3i2c3ygq1wwll4a6xsmn4-faraday-0.15.4.gem.drv /tmp/guix-tests/store/s2bps14a75dz773f3nmlk61digryysqp-ruby-multipart-post-2.0.0.drv /tmp/guix-tests/store/6kqnwa1j7vpc8wcdhsh6v8g4fy3ajv43-multipart-post-2.0.0.gem.drv /tmp/guix-tests/store/sig7brrhmgl9ldvahwfhvwdkmr3v7939-octokit-4.18.0.gem.drv /tmp/guix-tests/store/wq34lfyywzxd1bah1p3x9dsnzk455grq-ruby-sawyer-0.8.2.drv /tmp/guix-tests/store/c5b3xikja96qcdwks44wgi038b70p98i-sawyer-0.8.2.gem.drv /tmp/guix-tests/store/cx6w555qhxnix1949qm06aw6jr0rj76p-ruby-byebug-11.1.3-checkout.drv /tmp/guix-tests/store/m9r6521w8nphnm954gzqkfrn9gzlsixp-ruby-byebug-11.1.3-checkout.drv /tmp/guix-tests/store/hpz8ihw4hri3qvix3ip81sklvgsjacd5-ruby-chandler-0.9.0.drv /tmp/guix-tests/store/sp6jh0yc8zryd4fk3npk5iif8qqzg93s-chandler-0.9.0.gem.drv /tmp/guix-tests/store/w3zk1g2d4fgr6ds783asfq7i917sgf2z-ruby-hydra-0.0-0.5abfa37-checkout.drv /tmp/guix-tests/store/jl12gb4nqy3cmjsj0arwf4nhvzd656x2-texlive-hyphen-estonian-59745-checkout.drv /tmp/guix-tests/store/0ncky4a88bc7j01wyhy0j32i0lrdhidw-texlive-unicode-data-59745.drv /tmp/guix-tests/store/ncm6sgavvw9ckplgaiiyaizyy0zd75mq-texlive-unicode-data-59745-checkout.drv /tmp/guix-tests/store/10a44g0ghdj0y4ngyf817hw47yiiwc4l-texlive-latex-atveryend-59745.drv /tmp/guix-tests/store/1cnn0llrg6cki3nlxlawmksvwkrwsbqr-texlive-latex-atveryend-59745-checkout.drv /tmp/guix-tests/store/1iamypgxriqxg5xq55vr7mbyhp03m6lm-texlive-hyphen-sanskrit-59745.drv /tmp/guix-tests/store/sy94jbrhp0dkhiyl1rr55p4zafszvy1c-texlive-hyphen-sanskrit-59745-checkout.drv /tmp/guix-tests/store/1wfirzrwg6y8mivajvk68ac5jzd92qpx-texlive-hyphen-bulgarian-59745.drv /tmp/guix-tests/store/gyw0phsla1ysy17scpdrnvn2ps994fdh-texlive-hyphen-bulgarian-59745-checkout.drv /tmp/guix-tests/store/1y66pp9db31aabf24p3w2v3bs3np7b73-texlive-hyphen-friulan-59745.drv /tmp/guix-tests/store/bdq2spc4vyxwgic5j6dqahvki5q5rj8a-texlive-hyphen-friulan-59745-checkout.drv /tmp/guix-tests/store/1z0q2n6c2h36w79q110ppmz8hzqazv4l-texlive-latex-fancyvrb-59745.drv /tmp/guix-tests/store/37ms0ffrqlwqbamwiynin86wddyk5pn4-texlive-latex-fancyvrb-59745-checkout.drv /tmp/guix-tests/store/2g38pi5rpz5pphbpk6mcbx5w31n6mws3-texlive-tetex-59745.drv /tmp/guix-tests/store/q825bwi5hy15mzqw8s0kh0qnidjp9gqb-texlive-tetex-59745-checkout.drv /tmp/guix-tests/store/2rpqnivd9vx2klsmvall8n7lqlx9xhi7-texlive-generic-bigintcalc-59745.drv /tmp/guix-tests/store/552f3dw1jbhpms825zcdwc5jnghssjig-texlive-generic-bigintcalc-59745-checkout.drv /tmp/guix-tests/store/9y41z5xbh13619kd0b73q95r0myidfr5-texlive-generic-ltxcmds-59745.drv /tmp/guix-tests/store/x2n9zrpcfyj97rdbp2n0n3v91jclv0ni-texlive-generic-ltxcmds-59745-checkout.drv /tmp/guix-tests/store/lcyim7isxyggdkp7bjzbkami1ys08xgy-texlive-latex-pdftexcmds-59745.drv /tmp/guix-tests/store/f44sh4fiivjrra5j52r4yqgk6prn0l38-texlive-latex-pdftexcmds-59745-checkout.drv /tmp/guix-tests/store/2vgkkrrrds2pm1q7gplan2ppl20973hq-texlive-generic-intcalc-59745.drv /tmp/guix-tests/store/q73qxphsnqg3zbjfzgrv5fbavdi2m5w7-texlive-generic-intcalc-59745-checkout.drv /tmp/guix-tests/store/36kjzj0yyiml211bf7zv40s8bvml0lps-texlive-latex-l3kernel-59745.drv /tmp/guix-tests/store/c7drci7hj9mvrvav2yr42r1ipxa52s9r-texlive-latex-l3kernel-59745-checkout.drv /tmp/guix-tests/store/vc53kc9vk5a5wz91dbj07m3ag1x7mzfy-module-import-compiled.drv /tmp/guix-tests/store/z8a7dipy72cdk7fdabhm85swf7v6939l-texlive-docstrip-59745.drv /tmp/guix-tests/store/vs2p5rc2mzyadd4591qqnlcbrz7621zi-texlive-docstrip-59745-checkout.drv /tmp/guix-tests/store/38lfj5p4bj98azs0nml9an6wrcg4f5v0-texlive-latex-hycolor-59745.drv /tmp/guix-tests/store/vifi4s234y4b92ygxbwidhdsq5w0ddxq-texlive-latex-hycolor-59745-checkout.drv /tmp/guix-tests/store/39fpfyjrrnki45b9y034pifmwnfzy8ab-texlive-latex-auxhook-59745.drv /tmp/guix-tests/store/q53x3jsbj0ikb4xssqx5yf1ii9r6j3xq-texlive-latex-auxhook-59745-checkout.drv /tmp/guix-tests/store/3g0vv1218kg4fv5bwbyjsai4xfziyb1k-texlive-hyphen-danish-59745.drv /tmp/guix-tests/store/5l6v1ib2x5c7hrjw2ihqyj2lc7lgzcf6-texlive-hyphen-danish-59745-checkout.drv /tmp/guix-tests/store/3p1dvk67gd7cwhnj37vcag8pa7h2qn3q-texlive-latex-overpic-59745.drv /tmp/guix-tests/store/alj8rf2akh9nccdzh454k64fq60wvqxr-texlive-latex-overpic-59745-checkout.drv /tmp/guix-tests/store/3r3hanj0m3d1s6n63ipqb2r3bi5514n0-texlive-hyphen-coptic-59745.drv /tmp/guix-tests/store/464mjwky86xwhi76nvgjvrk790bm03f4-texlive-hyphen-coptic-59745-checkout.drv /tmp/guix-tests/store/3wkrlp79j5xvswfvcn0glsl457s5gd2s-texlive-latex-listings-59745.drv /tmp/guix-tests/store/49xnsh42bh4zq1581c4cbcq9ricr4sw9-texlive-hyphen-belarusian-59745.drv /tmp/guix-tests/store/2npissy680lrkyx5f9mf1pm5qrcn64gp-texlive-hyphen-belarusian-59745-checkout.drv /tmp/guix-tests/store/4plkwy1dl6cffrxb69ki6cs3xiw9fykm-texlive-hyphen-schoolfinnish-59745.drv /tmp/guix-tests/store/ibr57wq5isx3b1pxcgcgvj88cww6yk1k-texlive-hyphen-schoolfinnish-59745-checkout.drv /tmp/guix-tests/store/4w1avzc1d7cm6aj6issafxr0s977x1m8-texlive-latex-base-59745.drv /tmp/guix-tests/store/5g0vlk8dfd2zwmq9giwnq81423lp6lgf-texlive-hyphen-galician-59745.drv /tmp/guix-tests/store/3492r0zncj65v4dafadgsb06l9ix3hz8-texlive-hyphen-galician-59745-checkout.drv /tmp/guix-tests/store/5ysx5qff3bdq37h9fhr9l57kywkrmpml-texlive-hyphen-turkish-59745.drv /tmp/guix-tests/store/8fjfmqzd9csmjpvzgnh9fpg9qkbbxw5z-texlive-hyphen-turkish-59745-checkout.drv /tmp/guix-tests/store/6d22kqj1554wkjw6pb106ahsay6r719j-texlive-hyphen-icelandic-59745.drv /tmp/guix-tests/store/g9c7jpazfyk3338np4z9ky09n30sbj37-texlive-hyphen-icelandic-59745-checkout.drv /tmp/guix-tests/store/6zsbv7bp7p3vm7xbjhbasb2rfrb8ia49-texlive-hyphen-esperanto-59745.drv /tmp/guix-tests/store/gryga1fq59ac9j615kz6fx0jc4klg8g4-texlive-hyphen-esperanto-59745-checkout.drv /tmp/guix-tests/store/742ahq9dhlvd58zr8xgwzd4njzqiw1xx-texlive-hyphen-chinese-59745.drv /tmp/guix-tests/store/ny7pk67ra6c49z9rl8mlca36hc2ifldn-texlive-hyphen-chinese-59745-checkout.drv /tmp/guix-tests/store/7nb1jwansghqfbzrxf7i1ll9w5pw90j8-texlive-knuth-lib-59745.drv /tmp/guix-tests/store/v48923xb43k102p426ylkzw7xl62zipz-texlive-knuth-lib-59745-checkout.drv /tmp/guix-tests/store/83537fhilhwdk776x1y3p89dcrgf5x1s-texlive-latexconfig-59745.drv /tmp/guix-tests/store/h43kmlj78p58amdh3vsmqwgfyqlfmxx5-texlive-latexconfig-59745-checkout.drv /tmp/guix-tests/store/8a74cgxlhcigfzg1jn6ddypdgyyi2aqs-texlive-hyph-utf8-59745.drv /tmp/guix-tests/store/dkfvvh7wfq9sps3mq4x7hmxh6akss380-texlive-hyph-utf8-59745-checkout.drv /tmp/guix-tests/store/m3g1c68mz34ia78q7bwy0g5hxa049181-texlive-tex-plain-59745.drv /tmp/guix-tests/store/kna5gxzafwkyc6qhbw95f8b8yprv7ch7-texlive-tex-plain-59745-checkout.drv /tmp/guix-tests/store/qhjf8mjb2cq1q49g8svv1is5zgdl8fa9-texlive-hyphen-base-59745.drv /tmp/guix-tests/store/p820yvcy0mdfr6rcn4q96dlzcm9p5nx9-texlive-hyphen-base-59745-checkout.drv /tmp/guix-tests/store/8idg356cww7yycj0i2q110wybldj4hvs-texlive-hyphen-catalan-59745.drv /tmp/guix-tests/store/80q61pr0c4njrmd9jlr6xxg2bn8cxqxa-texlive-hyphen-catalan-59745-checkout.drv /tmp/guix-tests/store/8mbgw4fal7my6qzqkf5k1si2h4ylvx0z-texlive-hyphen-romanian-59745.drv /tmp/guix-tests/store/n4qksi18yqpx33b1zbmbjmhdzmdsrzd9-texlive-hyphen-romanian-59745-checkout.drv /tmp/guix-tests/store/8sy4vh6xmz8gq4qwryyldmilgjk1k6z8-texlive-hyphen-dutch-59745.drv /tmp/guix-tests/store/akr925l962nkyjvwk2r14fmgbslk62db-texlive-hyphen-dutch-59745-checkout.drv /tmp/guix-tests/store/8vprd021cvzcw0biqwzblz6ydycgbr2r-texlive-hyphen-occitan-59745.drv /tmp/guix-tests/store/f0yndj8vi0iw6jkc7j7ry75avlfxi6h1-texlive-hyphen-occitan-59745-checkout.drv /tmp/guix-tests/store/929q8hsjaqchhkvm8bgg3mqicc6ma1xj-texlive-hyphen-welsh-59745.drv /tmp/guix-tests/store/yn4mdhybwnga5djb0wfz8hxlxl7m6adj-texlive-hyphen-welsh-59745-checkout.drv /tmp/guix-tests/store/999rc8dva80nqbv63ji6b2ir2dwygj42-texlive-ukrhyph-59745.drv /tmp/guix-tests/store/jh0r74c2ydjv1ji06vdgayq2b3wq636j-texlive-ukrhyph-59745-checkout.drv /tmp/guix-tests/store/9f5x3rmlrz5r6hj01d4wnkx9cpczm9hw-texlive-hyphen-lithuanian-59745.drv /tmp/guix-tests/store/1x31y4il4agkmabznvb80pizxk567vgf-texlive-hyphen-lithuanian-59745-checkout.drv /tmp/guix-tests/store/a07j3pg0jnmcq29b2zdi74y36lcqrpmx-texlive-hyphen-spanish-59745.drv /tmp/guix-tests/store/3nhal4xx0zb3phb05j51v9s4037yvf7i-texlive-hyphen-spanish-59745-checkout.drv /tmp/guix-tests/store/axskv7b2blf6gpp3mxgkdm5z0rdvyysy-texlive-hyphen-kurmanji-59745.drv /tmp/guix-tests/store/ns5kjzmgrvwgfli70ndvw52i1v4gbdrx-texlive-hyphen-kurmanji-59745-checkout.drv /tmp/guix-tests/store/bg1yqdabykjza0pmjnxihc1w4pcvqj1x-texlive-hyphen-finnish-59745.drv /tmp/guix-tests/store/yb98cywdaac9br29ircamag7jvxa51r4-texlive-hyphen-finnish-59745-checkout.drv /tmp/guix-tests/store/c2hdz19w4c2fccqshw93mgdwak8vifyc-texlive-dehyph-exptl-59745.drv /tmp/guix-tests/store/y92mbkjmia5006bzxm6nj5nbmvz5mb9k-texlive-dehyph-exptl-59745-checkout.drv /tmp/guix-tests/store/cx39d2gv230hr5bqwzap712fd6lamvi9-texlive-hyphen-irish-59745.drv /tmp/guix-tests/store/sq2aydqrnk8bn5s5dlagip02kzif8hl3-texlive-hyphen-irish-59745-checkout.drv /tmp/guix-tests/store/dd043f39cl5aq7vivd0lzi9s915rn1ah-texlive-hyphen-greek-59745.drv /tmp/guix-tests/store/02fiq2igi1dfbh2qk44aaz0l7x0qqdrn-texlive-hyphen-greek-59745-checkout.drv /tmp/guix-tests/store/ddv5n1cxhbqhfsbba93vdiqy31wrv573-texlive-hyphen-georgian-59745.drv /tmp/guix-tests/store/sfm2c8nvc97ln5z4bqzdlijh81x2yah5-texlive-hyphen-georgian-59745-checkout.drv /tmp/guix-tests/store/df45idg8zga0aqmm5z92drkk2gdrrc1n-texlive-ruhyphen-59745.drv /tmp/guix-tests/store/ix8fjhyr1rhdkx6b24gcq3zp4zjvfh6i-texlive-ruhyphen-59745-checkout.drv /tmp/guix-tests/store/djadrny81scy66qyvqlyy8zkxvf1p141-texlive-hyphen-ethiopic-59745.drv /tmp/guix-tests/store/mprim31imayp1i3ivriyq656f8b24l0w-texlive-hyphen-ethiopic-59745-checkout.drv /tmp/guix-tests/store/ds3wg006ma4i8cxh0xq57fxn1rbksf10-texlive-hyphen-macedonian-59745.drv /tmp/guix-tests/store/kz4yzljslf337rrxwi03ri0qkq96gmny-texlive-hyphen-macedonian-59745-checkout.drv /tmp/guix-tests/store/f2r618g0isy7chp1drxx0wpp4rn0bawz-texlive-hyphen-indonesian-59745.drv /tmp/guix-tests/store/crxzvn6wjl41fl8hb92zm0kkcf44dgpk-texlive-hyphen-indonesian-59745-checkout.drv /tmp/guix-tests/store/fp7bcfxm0hzgqrvm7hk9ys3pn8zzspqk-texlive-hyphen-croatian-59745.drv /tmp/guix-tests/store/3ddg5jv999qkcfy02dkbin1skwagcnd1-texlive-hyphen-croatian-59745-checkout.drv /tmp/guix-tests/store/fyf0sccjrvn7bp138d375w0l20irvi9s-texlive-hyphen-french-59745.drv /tmp/guix-tests/store/cj2w2qq0z8jn5109j4qai380siacwxzj-texlive-hyphen-french-59745-checkout.drv /tmp/guix-tests/store/ghcrjphx72kcdari83zjh2rnc6b3sn2g-texlive-hyphen-norwegian-59745.drv /tmp/guix-tests/store/3ayx9rm7z7q9816cybvqf16mm4sxcd3f-texlive-hyphen-norwegian-59745-checkout.drv /tmp/guix-tests/store/ghkhlh9ysffrix0bfk8x25hja56d3qi3-texlive-latex-base-59745-checkout.drv /tmp/guix-tests/store/gk8yk3fmyrqgax5cshsa2z1qjc2si30f-texlive-hyphen-armenian-59745.drv /tmp/guix-tests/store/8idp13i46xqsa2y329bhg55c30skwwwi-texlive-hyphen-armenian-59745-checkout.drv /tmp/guix-tests/store/h8d3rm2smi56s1zmwf0r2xc16r62n0vd-texlive-hyphen-russian-59745.drv /tmp/guix-tests/store/njhg4j0bavxamb5p1yxzi4p6a27igjac-texlive-hyphen-russian-59745-checkout.drv /tmp/guix-tests/store/hasasspbxkp6vv6iz7vdl69cjgi19xbd-texlive-hyphen-ukrainian-59745.drv /tmp/guix-tests/store/hnhp8gy8zkb6ryakcmrpkx1nd0k9a005-texlive-hyphen-ukrainian-59745-checkout.drv /tmp/guix-tests/store/hy3gzb1kvz6z0j7dlrp0lzs0kjpcz35v-texlive-hyphen-polish-59745.drv /tmp/guix-tests/store/a0bzaad262bn3dmbz0ns02g54jrl17c7-texlive-hyphen-polish-59745-checkout.drv /tmp/guix-tests/store/j0pamvcy8hkij2di7vxcwpxbd5lx0r70-texlive-luatexconfig-59745-checkout.drv /tmp/guix-tests/store/ja1vnz4ir21jgxwaxrs5vamsyz2vlqml-texlive-hyphen-slovenian-59745.drv /tmp/guix-tests/store/9v9vspd2bxkd52yhxwad4mn7h66sqwc2-texlive-hyphen-slovenian-59745-checkout.drv /tmp/guix-tests/store/jhaqhkv0b17x6p826v7adcj4bl11s807-texlive-hyphen-serbian-59745.drv /tmp/guix-tests/store/ksbc9bckv7d7hn5z9864hpcmb2pz2ibw-texlive-hyphen-serbian-59745-checkout.drv /tmp/guix-tests/store/jv2gbw9j0xcxq6giv6bkvsrac9v6lwhh-texlive-hyphen-turkmen-59745.drv /tmp/guix-tests/store/2qqv38v1brsl2yp5wmzzbsq5yj3q9yfl-texlive-hyphen-turkmen-59745-checkout.drv /tmp/guix-tests/store/jw6vqxl67y3s30lil0xyyc4wcpsympxq-texlive-hyphen-uppersorbian-59745.drv /tmp/guix-tests/store/3fvxfszmw0y354xs96x318s4y90yslmc-texlive-hyphen-uppersorbian-59745-checkout.drv /tmp/guix-tests/store/k4bzmzrf684q1iqrgjv7sijb431lsvha-texlive-hyphen-thai-59745.drv /tmp/guix-tests/store/586wy9h1s6n77xxilv2wc63rhpyqwwp5-texlive-hyphen-thai-59745-checkout.drv /tmp/guix-tests/store/lb7bgkdjc5fph5lb9g255cyxfh8cxhfs-texlive-hyphen-slovak-59745.drv /tmp/guix-tests/store/xij7xqzsdxc521w57f88nkhl1m6gh0l7-texlive-hyphen-slovak-59745-checkout.drv /tmp/guix-tests/store/li0cx82377r9kyimpcp84hva3bl6qvha-texlive-hyphen-basque-59745.drv /tmp/guix-tests/store/4bidv6ypjzbin0sdhiixchh08nhk6hcn-texlive-hyphen-basque-59745-checkout.drv /tmp/guix-tests/store/lsn3y9n94wm1vwrvf7yilmd7s4anzmij-texlive-hyphen-latvian-59745.drv /tmp/guix-tests/store/p2za8jrrh7kj9zryk4dhsy9vwpqfg156-texlive-hyphen-latvian-59745-checkout.drv /tmp/guix-tests/store/m62cvfvhagmh2ig8ghfri826w82sa65x-texlive-kpathsea-59745.drv /tmp/guix-tests/store/n9bjk653lwzvpp5lxm2cjgbzdxwjp0ag-texlive-kpathsea-59745-checkout.drv /tmp/guix-tests/store/mhwymi5cvm6d2j15ip3l9n82bfarw8vr-texlive-hyphen-portuguese-59745.drv /tmp/guix-tests/store/papkw00l80wwnjgk7gvh8psvnvh998r4-texlive-hyphen-portuguese-59745-checkout.drv /tmp/guix-tests/store/miscccyxnc706ypvlz8wk1gjjx2n3k86-texlive-hyphen-mongolian-59745.drv /tmp/guix-tests/store/fn7nahrkyj0vv4gbga98h85bay3gxis6-texlive-hyphen-mongolian-59745-checkout.drv /tmp/guix-tests/store/mzk1ri3cqdhi80f0zaknz211b8lzsziz-texlive-hyphen-latin-59745.drv /tmp/guix-tests/store/48dsri50w40265slbklmhrkhks2gl872-texlive-hyphen-latin-59745-checkout.drv /tmp/guix-tests/store/n4wsp8xk7vyb9gf8mvn9jxshf57cdyss-texlive-hyphen-romansh-59745.drv /tmp/guix-tests/store/qkc7lx2zaq67b0n9ajd4yrm57j2mbc4h-texlive-hyphen-romansh-59745-checkout.drv /tmp/guix-tests/store/n85zjwa5nl5gh7ycsmjyx37il4h0lx7i-texlive-hyphen-ancientgreek-59745.drv /tmp/guix-tests/store/22nvf7lmzhrv14r3hbpz1wjb45hlrna9-texlive-hyphen-ancientgreek-59745-checkout.drv /tmp/guix-tests/store/n9iyfz4z7ibr7ld4p03lmjppyk352ivr-texlive-etex-59745.drv /tmp/guix-tests/store/hh56yd2gzy02i8j0q56za2gsll9sq3xc-texlive-etex-59745-checkout.drv /tmp/guix-tests/store/p1i7apwxxl2rwlhk4sy8al45v4wa1i2p-texlive-hyphen-afrikaans-59745.drv /tmp/guix-tests/store/fb6f3viwwaswn7gmpaczyp8qkd5xwrx9-texlive-hyphen-afrikaans-59745-checkout.drv /tmp/guix-tests/store/p9cymrnkvppnk94k7740jrbm0qh0zgv4-texlive-latex-l3backend-59745.drv /tmp/guix-tests/store/7c6py2c9mmxxy9mpi10zlyng28gvqx5q-texlive-latex-l3backend-59745-checkout.drv /tmp/guix-tests/store/pqgi7123kdhip7f2l9bfv9dph1ff58av-texlive-hyphen-piedmontese-59745.drv /tmp/guix-tests/store/vy1hlcwibafrl9n293l4ib3k13qz74ij-texlive-hyphen-piedmontese-59745-checkout.drv /tmp/guix-tests/store/qfa04wr43v6v4yhsbxvd0fxgsil45l7g-texlive-hyphen-indic-59745.drv /tmp/guix-tests/store/9a5f2mb55hbcv2zg8fs68vbillc1sp2q-texlive-hyphen-indic-59745-checkout.drv /tmp/guix-tests/store/rry4brx0r00sx2zl7w2lv2jy2vpp92s8-texlive-hyphen-german-59745.drv /tmp/guix-tests/store/hfvszmswv2mnr5qiabm92596q01l356p-texlive-hyphen-german-59745-checkout.drv /tmp/guix-tests/store/s5xx7w0fvyfbk4w9nlki2gbrs2irjqwa-texlive-hyphen-hungarian-59745.drv /tmp/guix-tests/store/jqimih64y1yg3xhyr8xn7kr4f9wz3m5d-texlive-hyphen-hungarian-59745-checkout.drv /tmp/guix-tests/store/sf7i0m5y6d1g11cy5xzy611b9vbj2r5x-texlive-tex-ini-files-59745.drv /tmp/guix-tests/store/1i4hpj2w5i0wxjxdkdnqy24vgpp4cjjx-texlive-tex-ini-files-59745-checkout.drv /tmp/guix-tests/store/slzrv82lwgs696n018p82rc1zd8bin5l-texlive-hyphen-czech-59745.drv /tmp/guix-tests/store/wsdyr8v0xmy2i28wazgmmskhjgcpkkxi-texlive-hyphen-czech-59745-checkout.drv /tmp/guix-tests/store/svrfmg28nhzv9588avsyxkskgxa7c475-texlive-hyphen-interlingua-59745.drv /tmp/guix-tests/store/n86bbl111pzx2jvmabapz8mw1wgiwx4s-texlive-hyphen-interlingua-59745-checkout.drv /tmp/guix-tests/store/syfpc9hdn3xwiqw5rgwdxvb8vxnr7qgw-texlive-hyphen-swedish-59745.drv /tmp/guix-tests/store/dql4a1j3f2gsj4l6gr1ni30vd5rp0rxk-texlive-hyphen-swedish-59745-checkout.drv /tmp/guix-tests/store/vjgkk4pq4ydvlv4hs3ialgvc3vhd8saq-texlive-hyphen-english-59745.drv /tmp/guix-tests/store/sjwnh4z21ji6gsd878gprbkskw48d6yi-texlive-hyphen-english-59745-checkout.drv /tmp/guix-tests/store/w3wmibd8gdip3b93v9ymwnp2avby45nk-texlive-latex-l3packages-59745.drv /tmp/guix-tests/store/lsvls0xwfxd469cam3qbapng29sf82hy-texlive-latex-l3packages-59745-checkout.drv /tmp/guix-tests/store/wnmni0xkpvi3138yxgqadv2c8hyz8s30-texlive-hyphen-churchslavonic-59745.drv /tmp/guix-tests/store/94kq4bbs7vdvyzrcf60mv76xsbr63702-texlive-hyphen-churchslavonic-59745-checkout.drv /tmp/guix-tests/store/xhr6mnwbhm5xxh2sj98kjldjakf0izxm-texlive-hyphen-pali-59745.drv /tmp/guix-tests/store/bxaimb78y5m86alkphb7imkkr7i8fviy-texlive-hyphen-pali-59745-checkout.drv /tmp/guix-tests/store/xi99mdnd0kn5sym7jw9fmi26nf1m62v8-texlive-hyphen-italian-59745.drv /tmp/guix-tests/store/vd00r9bw4c28nxg2gyixjm229y7gc363-texlive-hyphen-italian-59745-checkout.drv /tmp/guix-tests/store/5cjjbb3ifnpdxavqafyi1dayqzq30w12-texlive-latex-listings-59745-checkout.drv /tmp/guix-tests/store/3xmrqgagh2qld8il7qayx2rk0pa9var1-texlive-latex-titlesec-59745.drv /tmp/guix-tests/store/6lf7n45h6gmb16spb11hkv1hixbvmlzy-texlive-latex-titlesec-59745-checkout.drv /tmp/guix-tests/store/47n364957cizzh4y8ix19k2sv597vcyf-texlive-generic-gettitlestring-59745.drv /tmp/guix-tests/store/fy3mqqczka6wjwi2r01v415pvl3kb44z-texlive-generic-gettitlestring-59745-checkout.drv /tmp/guix-tests/store/51nlarl0j7w8xqpl0chcrh04ly6xcxfd-texlive-latex-fancybox-59745.drv /tmp/guix-tests/store/rikdpl9i6dg44lwilnf28n4pfw1lq2gv-texlive-latex-fancybox-59745-checkout.drv /tmp/guix-tests/store/57vk89arbn0d6fz18k98rrywib70n286-texlive-amsfonts-59745.drv /tmp/guix-tests/store/869gnf7dkmh42d7w3nz9sfmg89f18xlr-texlive-graphics-def-59745.drv /tmp/guix-tests/store/l7k0g05i15diz68wy4mblkngghwn95yg-texlive-graphics-def-59745-checkout.drv /tmp/guix-tests/store/yyrfidanv08ilxhv6qalxkml6ycx2zwk-texlive-latex-epstopdf-pkg-59745.drv /tmp/guix-tests/store/jxm5hpc3xw6y0xvy0367rzf7iw79rxkp-texlive-latex-epstopdf-pkg-59745-checkout.drv /tmp/guix-tests/store/b0r24iwj145b1g4wzfvna8pwibg1nl56-texlive-amscls-59745.drv /tmp/guix-tests/store/i7c76g8g1bkny6yw1v12ngnss4gxq4ig-texlive-amscls-59745-checkout.drv /tmp/guix-tests/store/c6x6r5mr1iwd8sadb7v4cjksn0s3hkgf-texlive-psnfss-59745.drv /tmp/guix-tests/store/lyx2gfx63g1sn2add80rc0id26z9g5gf-texlive-psnfss-59745-checkout.drv /tmp/guix-tests/store/fwjz5q37hvjwgi2pqz6xvml4kizg96rp-texlive-cm-super-59745.drv /tmp/guix-tests/store/59jk07z2vz5daw7lbwq9ijc9z3n8c5sh-texlive-cm-super-59745-checkout.drv /tmp/guix-tests/store/g4iyk5g22f7px23mdn7qgq3jbgba1hid-texlive-graphics-cfg-59745.drv /tmp/guix-tests/store/dss7yw2lb1cy31rlf7yjmcar9khznkip-texlive-graphics-cfg-59745-checkout.drv /tmp/guix-tests/store/h3b5iy9c337438qp5np19vwnvi3cf25l-texlive-latex-cyrillic-59745.drv /tmp/guix-tests/store/58rk3sa52bpkxn51i51k507liizwzvkp-texlive-latex-cyrillic-59745-checkout.drv /tmp/guix-tests/store/jmxxq0fx491z3b19vxh4xl04spzfk285-texlive-updmap.cfg-59745.drv /tmp/guix-tests/store/jxbkjb96z5zlsarw7gd00vxnwviqcz2k-texlive-latex-amsmath-59745.drv /tmp/guix-tests/store/wkm65g4vaipkyfb69fw6iqrh4gh27a29-texlive-latex-amsmath-59745-checkout.drv /tmp/guix-tests/store/kir5zzp8la3mdjkd8hv45xbili33i95i-texlive-fontinst-59745.drv /tmp/guix-tests/store/ds0vcppkczcmikg2vfx1a4md6d16r7h0-texlive-fontinst-59745-checkout.drv /tmp/guix-tests/store/lw8sqs2d3l0jjl41k3s7hldk9pqzw9yl-updmap.cfg.drv /tmp/guix-tests/store/mmfl11kl0l577nnbdvfipygc4n4h71jx-texlive-generic-babel-english-59745.drv /tmp/guix-tests/store/djm233j075lw09maa9r82pis3z3c53xx-texlive-generic-babel-english-59745-checkout.drv /tmp/guix-tests/store/r2plcggy8934fs32xd6bnfhkpivi2w8z-texlive-latex-tools-59745.drv /tmp/guix-tests/store/k2vapw1a30icpwmx4ib9v5bavr5ab218-texlive-latex-tools-59745-checkout.drv /tmp/guix-tests/store/v5b55nyibwmz8j0lmws3yrzgzabin7j0-texlive-babel-59745.drv /tmp/guix-tests/store/yj3bmhnqp68pa90ssnm7f6kbd2n2xd2v-texlive-babel-59745-checkout.drv /tmp/guix-tests/store/wk96qhxiypdcr5dy4jn5jgypr0wfrsp4-texlive-dvips-59745.drv /tmp/guix-tests/store/av6l4qjvmpmls89mz26rwgglf4w1cw7a-texlive-dvips-59745-checkout.drv /tmp/guix-tests/store/yxv34iypd2b0idfx18m7wy0wxrg4sycy-texlive-latex-graphics-59745.drv /tmp/guix-tests/store/4cpap8kb7f739csirf6mgl4yxpz63qb6-texlive-latex-graphics-59745-checkout.drv /tmp/guix-tests/store/zjrb58x7xfqf7arlmnlxwv2snqkgljrs-texlive-fontname-59745.drv /tmp/guix-tests/store/nqrbdyzxyvrrk2kgkr0qf5v1kvnp4ywb-texlive-fontname-59745-checkout.drv /tmp/guix-tests/store/sc06dgzi2mqs5mddqvxa4myy7n45gy9a-texlive-amsfonts-59745-checkout.drv /tmp/guix-tests/store/5r26vgjj1cmf406317px89kq43jw1baq-texlive-hyperref-59745.drv /tmp/guix-tests/store/84v5kgi34y7dsaxqwjf5bc33q037y1jz-texlive-generic-pdfescape-59745.drv /tmp/guix-tests/store/x2kh4lp5wxixq971sswc7q7jls5sd8gr-texlive-generic-pdfescape-59745-checkout.drv /tmp/guix-tests/store/88ywms5jm4jv9lb2prrwhi01qidgdfk4-texlive-hyperref-59745-checkout.drv /tmp/guix-tests/store/g1ifc9kcghrav5s0yj62il4d4si7fm47-texlive-generic-atbegshi-59745.drv /tmp/guix-tests/store/cya9fb6sqbpij9ww3viq1qg7g8lvnzss-texlive-generic-atbegshi-59745-checkout.drv /tmp/guix-tests/store/h1yb0kh5c9g6gxvxqm1s0bk87xy91nx7-texlive-latex-refcount-59745.drv /tmp/guix-tests/store/28vh8s32vjjnnx1gch0if3a39h2q46n2-texlive-latex-refcount-59745-checkout.drv /tmp/guix-tests/store/ixx3z3xaavqw70plj7cvr5gqf58kv9gz-texlive-generic-bitset-59745.drv /tmp/guix-tests/store/40ws55x9bbwmzb744mr02d7q0kclrybj-texlive-generic-bitset-59745-checkout.drv /tmp/guix-tests/store/jja6nshn7nascafwmikv42lznwnakxks-texlive-generic-kvsetkeys-59745.drv /tmp/guix-tests/store/0fdphls99dpyyimdw6dhvky7v86gvahz-texlive-generic-kvsetkeys-59745-checkout.drv /tmp/guix-tests/store/mw1x9fac2r319wvv9rffq6h28mfj1rcf-texlive-url-59745.drv /tmp/guix-tests/store/fkx7i2dr74dvaawrm323pqi6bbfx0np9-texlive-url-59745-checkout.drv /tmp/guix-tests/store/n5swg9k6i2nz69cg8pscqd26lbj36sf2-texlive-generic-kvdefinekeys-59745.drv /tmp/guix-tests/store/sp83swx4m9q1d7h5f1kp7cim9wsdn711-texlive-generic-kvdefinekeys-59745-checkout.drv /tmp/guix-tests/store/phc664sk9sbiqxl7qfm2947ixacy3yi0-texlive-latex-letltxmacro-59745.drv /tmp/guix-tests/store/r59cpc939ppshdz7fbwdc9m2kkvlfbx7-texlive-latex-letltxmacro-59745-checkout.drv /tmp/guix-tests/store/pxg43pyrmjn2yzn9y8cfyjd8l2kj5y3l-texlive-latex-kvoptions-59745.drv /tmp/guix-tests/store/k2j6lrnni83b04j1h2p4gdbvv2zafnxf-texlive-latex-kvoptions-59745-checkout.drv /tmp/guix-tests/store/q1va4096249nvqs6wvyplywjw30f5ki0-texlive-latex-rerunfilecheck-59745.drv /tmp/guix-tests/store/by8wfs6f6s177nw35wgxxjvqhwjwkzd5-texlive-latex-rerunfilecheck-59745-checkout.drv /tmp/guix-tests/store/zfard3vh41zqdrvfa4dka28fgcc4pmng-texlive-generic-uniquecounter-59745.drv /tmp/guix-tests/store/04fd2gbla04q2v6ksziql07zyvciys99-texlive-generic-uniquecounter-59745-checkout.drv /tmp/guix-tests/store/6p0gpdrdncs8980a5q1d8f229wb4vpfm-texlive-latex-subfigure-59745.drv /tmp/guix-tests/store/7n58zr4pqzd02jhqd2fgsj87m2ip1c40-texlive-latex-subfigure-59745-checkout.drv /tmp/guix-tests/store/7aqgvkm1wrnxsbsmbpcmd4rn9nnkgvxk-texlive-latex-fancyhdr-59745.drv /tmp/guix-tests/store/x55icf4yc3bl1aw4fprvddx9r6na1kl6-texlive-latex-fancyhdr-59745-checkout.drv /tmp/guix-tests/store/81l43lxn4gl693dpnm72lhnjm1jsgc71-inkscape-1.1.1.drv /tmp/guix-tests/store/0zf7i2fjqxlw6pmd0gvfyp1cj2gx5jnh-libsigc++-2.9.3.drv /tmp/guix-tests/store/9s6q4md79x4av5vbdisxg7jkwbldkg13-libsigc++-2.9.3.tar.xz.drv /tmp/guix-tests/store/ick5yqyfq4lkg9pmqrhhp3wkqdzyhdsx-mm-common-1.0.3.drv /tmp/guix-tests/store/fjmidvb43rzdyqhkrhc4rwvqmlfa1aan-mm-common-1.0.3.tar.xz.drv /tmp/guix-tests/store/33clhsbd69c4hlsmi29gg1k32jc69ljc-atkmm-2.28.1.drv /tmp/guix-tests/store/10jgiv65k8mwkh7w0xhbhanp1qsp974r-atkmm-2.28.1.tar.xz.drv /tmp/guix-tests/store/78q79qz8ch98x3swc04i0mr52j70lcc8-glibmm-2.64.5.drv /tmp/guix-tests/store/j1i6x1sapsaxpqvvk3cq94dmnvyx0ac4-glibmm-2.64.5.tar.xz.drv /tmp/guix-tests/store/z2hqfm6ml0rk166wx8v338jkr9g15i51-libsigc++-3.0.6.drv /tmp/guix-tests/store/na2gs48240w241yhc85rp55rln1ibwm3-libsigc++-3.0.6.tar.xz.drv /tmp/guix-tests/store/wp3wj8y9vyz07f3bm6xwvmdqcnhqhxcs-glibmm-2.68.0.drv /tmp/guix-tests/store/dr35md9s8gkv2sm2wa0qrhad8l689aav-glibmm-2.68.0.tar.xz.drv /tmp/guix-tests/store/3kp8ajqcmyy0sm6k8gm3cm2nhjswc0yh-cairomm-1.14.2.drv /tmp/guix-tests/store/6wr614wf28sr493rf8fpl04mril03pi7-cairomm-1.14.2.tar.xz.drv /tmp/guix-tests/store/3xi11l0ahwpi0pvyicmvk8jz222b17wp-libwpg-0.3.3.drv /tmp/guix-tests/store/7f5mgkchabaahj9pgziakpg0w43bvaxk-librevenge-0.0.4.drv /tmp/guix-tests/store/sj1j1n4av24xkvmmggl5f7mk5zd2x856-cppunit-1.15.1.drv /tmp/guix-tests/store/qn2ks28l0j2h3zda5374iw0jzqgbjvw6-cppunit-1.15.1.tar.gz.drv /tmp/guix-tests/store/z0h6j4wn0bl6j6mgx45f7jp00hgvpyaz-librevenge-0.0.4.tar.xz.drv /tmp/guix-tests/store/alb2hk702findb0swgwfa0cxp5pvk3j7-libwpd-0.10.3.drv /tmp/guix-tests/store/w6zxjycvlj25slhkgkbczzv14p4hajsv-libwpd-0.10.3.tar.xz.drv /tmp/guix-tests/store/s86zrdf590dnjx171bd5m8y2p3vi8v77-libwpg-0.3.3.tar.xz.drv /tmp/guix-tests/store/488nl6q7rgrx80m4i1cnmhwn42jznp23-gdl-minimal-3.34.0.drv /tmp/guix-tests/store/0fkacmbnvpciwndmw15kgb29zxmi500s-gnome-common-3.18.0.drv /tmp/guix-tests/store/nsfaiwhr2nrha4bds35lnrqxfvwwnwf4-gnome-common-3.18.0.tar.xz.drv /tmp/guix-tests/store/qqlvm2bsvasr6xigv385hqpxx9qdxv26-gdl-3.34.0-checkout.drv /tmp/guix-tests/store/bixpafc2h0kksdawn12w93ya372gay2j-gtkmm-3.24.5.drv /tmp/guix-tests/store/fmrf46w5yhfwixhjkbis2pnwc8sg0f49-meson-0.59.4.drv /tmp/guix-tests/store/i3ps43jc87jmdcljyy9zg8sbl2f6sjg2-meson-0.59.4.tar.xz.drv /tmp/guix-tests/store/adi03782zr66l30l8wr94si7nmm8sxkv-meson-0.59.4.tar.gz.drv /tmp/guix-tests/store/sc4s8viwr9rjxhnixwdg5my9cxiq8pii-pangomm-2.46.0.drv /tmp/guix-tests/store/94az8zdbiyhwgn8phbjvqlf5w8mrfc04-pangomm-2.46.0.tar.xz.drv /tmp/guix-tests/store/y2c4xfdi8ycx42kw7g855x14c3mda7m5-gtkmm-3.24.5.tar.xz.drv /tmp/guix-tests/store/d2qcs74lib84ayjbx0kdbnnnrcndc7y4-imagemagick-6.9.12-4.drv /tmp/guix-tests/store/ganfj86w0mwg26wf178k3k7fn3a31gii-ImageMagick-6.9.12-4.tar.xz.drv /tmp/guix-tests/store/7pivcm45q4hw5jra2jpgbi4qd5ssipp8-ImageMagick-6.9.12-4.tar.xz.drv /tmp/guix-tests/store/is2i0k7647r82lav7n4l117alz5l5kcs-fftw-3.3.8.drv /tmp/guix-tests/store/13x9yk166is9c0kyq5mb9qw72krngnxm-fftw-3.3.8.tar.gz.drv /tmp/guix-tests/store/d51a280zi4f4rvc1930v75hcbxg95kby-python-pyserial-3.5.drv /tmp/guix-tests/store/s7iqi6y576vfj4kbvrblyfn6l0f17lwr-pyserial-3.5.tar.gz.drv /tmp/guix-tests/store/h0d6j5a2gz5n5d6579blb4pyq0lak5b3-module-import-compiled.drv /tmp/guix-tests/store/jqvls4w99cx1yhh3csk3cr5vbrv51js5-lib2geom-1.1.drv /tmp/guix-tests/store/5llixsmzx8pgn3kz68hdqdd6wihfpysj-python-pycairo-1.20.0.drv /tmp/guix-tests/store/8adm6jz019sg0rlgr8bzz8njpknl587r-pycairo-1.20.0.tar.gz.drv /tmp/guix-tests/store/fkd3rn18ar9ikcgbk7y1ni9q7i7djqvc-lib2geom-1.1-checkout.drv /tmp/guix-tests/store/n4zpirl6xr5g2i84i2xvxvs0676mqsqn-module-import-compiled.drv /tmp/guix-tests/store/paq19mhg77pm5731kfz13rwd31038ihh-googletest-1.11.0.drv /tmp/guix-tests/store/nl68mc2pz8cfibxqrb1b5r0bzgibnvak-googletest-1.11.0-checkout.drv /tmp/guix-tests/store/vz95plc4nhvk6h5wv9n95wykcv2xvql6-gsl-2.7.drv /tmp/guix-tests/store/da0zaj0rfbmviy0cizxh7piv3cmrrr5z-gsl-2.7.tar.gz.drv /tmp/guix-tests/store/lyvanq8kglinkkx4vjzb5m7s6y0fmrah-python-numpy-1.20.3.drv /tmp/guix-tests/store/080zix5k1sg79sy3rz2haiqfi44l65xv-openblas-0.3.18.drv /tmp/guix-tests/store/7f7ms282j9zh1ilyy1wl6k7qsibxcg5z-gfortran-10.3.0.drv /tmp/guix-tests/store/1x5dx260g6h28n6az37hclpq9cdcgdfj-libstdc++-headers-10.3.0.drv /tmp/guix-tests/store/4bjmwzhm6q4fkfzr86bpckmmbjjxwr5n-libstdc++-10.3.0.drv /tmp/guix-tests/store/gxp7fnmlmcif375r9bwdj1r3ndcjqgaf-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/9jnsjis5r35yinyyawlc41hwb590gai6-isl-0.23.drv /tmp/guix-tests/store/wa4yvjq1svk7767z9c84pqpzs79ix10b-isl-0.23.tar.bz2.drv /tmp/guix-tests/store/fdx1lj479fbqnc0vfgb351gb0km6jkg8-mpc-1.2.1.drv /tmp/guix-tests/store/cs2xmi9m8nqja90i1iikm10f483wqm1x-openblas-0.3.18-checkout.drv /tmp/guix-tests/store/7f7ms282j9zh1ilyy1wl6k7qsibxcg5z-gfortran-10.3.0.drv /tmp/guix-tests/store/9db64pl12dz96ghzm3v4i8j0g1x98rah-python-cython-0.29.24.drv /tmp/guix-tests/store/g44in3p3lhq3gfcd40n19phhinpxx2lc-Cython-0.29.24.tar.gz.drv /tmp/guix-tests/store/9rxyw6i4zwg2w1xhykfrpr2blmv80srq-python-pytest-forked-1.3.0.drv /tmp/guix-tests/store/x423520n06q3xnjbd0i2gb3cg87wbg7v-python-pytest-forked-1.3.0-checkout.drv /tmp/guix-tests/store/bij7w0gcchm9rlazvcw9fk13x6z7a6p3-numpy-1.20.3.tar.gz.drv /tmp/guix-tests/store/ip2rvwmb41skrrb86xzwp9rsi1i2p29n-python-execnet-1.9.0.drv /tmp/guix-tests/store/3jkpgybhb10wkzdijvqsb29im1p2z323-execnet-1.9.0.tar.xz.drv /tmp/guix-tests/store/fm9hvbrkfxirwv5nhvc6ffdggajvviz2-execnet-1.9.0.tar.gz.drv /tmp/guix-tests/store/n0b54apfg5ljpk3ygl0nbs6vskm36h9d-python-pytest-xdist-2.1.0.drv /tmp/guix-tests/store/ki6m42q0jcb2ss91na9ckb1wncwv1r90-pytest-xdist-2.1.0.tar.xz.drv /tmp/guix-tests/store/n3zzp7vjbglnv5mivv2jhh0lfvfxqp5v-pytest-xdist-2.1.0.tar.gz.drv /tmp/guix-tests/store/r4a432vbfhilzbg00d59xd5nh0zvrkcp-libcdr-0.1.7.drv /tmp/guix-tests/store/wn0z2363a3w975197p7mnwphylh958xf-libcdr-0.1.7.tar.xz.drv /tmp/guix-tests/store/vf5q0gad0w0ll1y5lb8492056v816w8g-autotrace-0.40.0-20190624.59.drv /tmp/guix-tests/store/ac3wjif4f8z5bdxbz88ss121zd6vliq5-autotrace-0.40.0-20190624.59-checkout.drv /tmp/guix-tests/store/1gqabshydg70hkdraj6v05fn9nxz8hbl-autotrace-0.40.0-20190624.59-checkout.drv /tmp/guix-tests/store/k6lcv6pqnlm0gv5lrzgix9zminamr7a0-pstoedit-3.77.drv /tmp/guix-tests/store/2xv5is1j35lny7f1w38v9q160j69cdzj-pstoedit-3.77.tar.gz.drv /tmp/guix-tests/store/c3513whdiyi8vfwjbjsah8vx31yf79cg-plotutils-2.6.drv /tmp/guix-tests/store/m54iymc596lxggznmxwdwrzkh9aybfdc-plotutils-2.6.tar.xz.drv /tmp/guix-tests/store/9a42if7ax6ccn5adv5ayapg95bfr2jrf-plotutils-2.6.tar.gz.drv /tmp/guix-tests/store/vmqbvrrf51q3lmk5a1asbmd3k5ym27kw-inkscape-1.1.1.tar.xz.drv /tmp/guix-tests/store/rfn36qn2ifdmmv4mrcirz27a9g572hrp-inkscape-1.1.1.tar.xz.drv /tmp/guix-tests/store/xj9j10qj2sgcd8gy03y524dbh0ldmqpj-python-scour-0.38.2.drv /tmp/guix-tests/store/c65rphn2vc7h508v0k4q0c48sdw34c55-python-scour-0.38.2-checkout.drv /tmp/guix-tests/store/xvrzjz4wkryigmwd78mz9y0j52wawjva-gtkspell3-3.0.10.drv /tmp/guix-tests/store/s9lg9p1yi961ga708rkahh6ql9an6rf3-gtkspell3-3.0.10.tar.xz.drv /tmp/guix-tests/store/y3y3jx4wnzvngzpk8nc925hklfdyfqaw-enchant-2.2.15.drv /tmp/guix-tests/store/adxmrw7rkg0aavvqkd8k3xd4w8wc9d4f-unittest-cpp-2.0.0.drv /tmp/guix-tests/store/j2fvbalfzi53vwpagzjkxs12maaw45ff-unittest-cpp-2.0.0-checkout.drv /tmp/guix-tests/store/mgnsc1zilmbm8d1ip40nk038cw6dnp9x-enchant-2.2.15.tar.gz.drv /tmp/guix-tests/store/z3njc1ijvk1w64nd3j2cx3799i0613cn-libvisio-0.1.7.drv /tmp/guix-tests/store/2c16yi4divzvznhjgxqmxngrf0ysacrb-libvisio-0.1.7.tar.xz.drv /tmp/guix-tests/store/bwff5k48v4lwf3xq5c58bw0z4q768w98-texlive-latex-changebar-59745.drv /tmp/guix-tests/store/f451704ssqa5sg800dq5ffms1myy5x2z-texlive-latex-changebar-59745-checkout.drv /tmp/guix-tests/store/bwkb1xjk43phsz2jnfzhyzzbka6cxgvz-texlive-latex-jknapltx-59745.drv /tmp/guix-tests/store/qxswcdf7jinly2fjiqhhp9gz8h0j2cyk-texlive-latex-jknapltx-59745-checkout.drv /tmp/guix-tests/store/dnday04nlhbaignq1n9i2cz2ay9inr6d-texlive-latex-pdfpages-59745.drv /tmp/guix-tests/store/d9fvwzr58kln7f4hwx54qkzhjpmc8sk1-texlive-latex-pdfpages-59745-checkout.drv /tmp/guix-tests/store/fz273lyy4vbvxd933xzkaqd5lpll091r-imagemagick-6.9.11-48.drv /tmp/guix-tests/store/n45nscprsy97cyig2675rf6nc9hwqvaw-ImageMagick-6.9.11-48.tar.xz.drv /tmp/guix-tests/store/i2rbwxcvx8acac1ccrg38hbqjis155wv-texlive-latex-float-59745.drv /tmp/guix-tests/store/ckw4xlib46zh5igy7wnxz8sqg19jp2yy-texlive-latex-float-59745-checkout.drv /tmp/guix-tests/store/jp40zd4nv27x76a6l5ckwlyqxw22g8al-texlive-latex-anysize-59745.drv /tmp/guix-tests/store/9xhpan5abb9063yzm5vjhrc1a9in81lz-texlive-latex-anysize-59745-checkout.drv /tmp/guix-tests/store/jpvx7n5wsdffina7iy3sv3g3xl8b0kvm-texlive-latex-colortbl-59745.drv /tmp/guix-tests/store/s7xmakf85jxckzm37a64jack8il2kjna-texlive-latex-colortbl-59745-checkout.drv /tmp/guix-tests/store/mcjgksip4z6bknqn1ms3g918afsd21vq-texlive-latex-appendix-59745.drv /tmp/guix-tests/store/7qy05h4786r8vp3j9bv9gq2nd61z7gf6-texlive-latex-appendix-59745-checkout.drv /tmp/guix-tests/store/n708wzkj1kfqm5bqjmbam8lqq1na7qpg-texlive-wasysym-59745.drv /tmp/guix-tests/store/1ip8a4mbz7jjsa1cccqb3g773k44jwl5-texlive-wasysym-59745-checkout.drv /tmp/guix-tests/store/q9awysva9kl76ny3na5ylkvw4l1l6kv7-texlive-fonts-rsfs-59745.drv /tmp/guix-tests/store/f3qz8w0jc6i2jklkg01yjwbsls22v9s9-texlive-fonts-rsfs-59745-checkout.drv /tmp/guix-tests/store/qgylcxgqlhvf8g73dwy0i4vmg11kidc3-dblatex3-0.3.12.tar.bz2.drv /tmp/guix-tests/store/rk6v7vnkmzifbb7h6x6qqair57i97vfr-texlive-latex-bookmark-59745.drv /tmp/guix-tests/store/9h9pz97nfjva7dm7n96aqvh6mqdwzanl-texlive-latex-bookmark-59745-checkout.drv /tmp/guix-tests/store/ryanc4lpmzi419z0k5ykwglikrmigj2b-texlive-updmap.cfg-59745.drv /tmp/guix-tests/store/rz166f670ay1ipcm35y7x4s5nflbh6iq-texlive-latex-multirow-59745.drv /tmp/guix-tests/store/kkwimxs9jmyp06w25rriqas5pydnbzxg-texlive-latex-multirow-59745-checkout.drv /tmp/guix-tests/store/wr0qfr1a9wr2i42hckffqfg6h16wbx1w-texlive-stmaryrd-59745.drv /tmp/guix-tests/store/27slp2n4fgfgapipdsky4apsdc65c15k-texlive-stmaryrd-59745-checkout.drv /tmp/guix-tests/store/yn7g8z60zk090hp33rr7gkiswqbk8dfr-texlive-latex-footmisc-59745.drv /tmp/guix-tests/store/72xrg5d5hprn3cb1nlnf6bp4iasfsina-texlive-latex-footmisc-59745-checkout.drv /tmp/guix-tests/store/3jwr4x8hqigbnkxzjdmijz4d8g9c9vph-gtk-doc-1.33.2.tar.xz.drv /tmp/guix-tests/store/p0nghm08n1xy5w5qsf9srs89nsa00lfg-gtk-doc-1.33.2.tar.xz.drv /tmp/guix-tests/store/83509x1fmiq5x14p2v7yad681a53pr4l-python-traceback2-1.4.0.drv /tmp/guix-tests/store/0ndy7lgjx0qgj83f4pd11y68gacdzw89-traceback2-1.4.0.tar.gz.drv /tmp/guix-tests/store/9nf2dy3q4fsnibkmr6zngxy3d39ygcr9-python-linecache2-1.0.0.drv /tmp/guix-tests/store/hnwqxhrkljvsaa7hsd662i292j2y07b4-linecache2-1.0.0.tar.gz.drv /tmp/guix-tests/store/z45y4hndg2pvqh894ijsadxfgjnqk9h8-python-pbr-minimal-5.5.1.drv /tmp/guix-tests/store/65jri73rpklmv2293kwcyanjx6q9yrkj-pbr-5.5.1.tar.gz.drv /tmp/guix-tests/store/dln91hn5x2p9l1kqnbz6b4071qds12pq-python-pygments-2.8.1.drv /tmp/guix-tests/store/aazra4za7p9lbi8csn556wpvhy45rlip-Pygments-2.8.1.tar.gz.drv /tmp/guix-tests/store/g385qsx8fj3s7qfr9k699sh87b1ysvvk-source-highlight-3.1.9.drv /tmp/guix-tests/store/1d8l3fah02iw660x9k43925l6labimw9-source-highlight-3.1.9.tar.gz.drv /tmp/guix-tests/store/jkmhrb17gz351yprx01mz6mwd66cizjj-python-anytree-2.8.0.drv /tmp/guix-tests/store/lk5qln1mh7n2zdnvwj1lpm4sd3xb7z8g-anytree-2.8.0.tar.gz.drv /tmp/guix-tests/store/mjxrp973ximc3dlkaki5ysa33cbjkyvg-python-unittest2-1.1.0.drv /tmp/guix-tests/store/cm8s27mdqnc4i43p5qfy8d1fnnqn0whx-unittest2-1.1.0.tar.xz.drv /tmp/guix-tests/store/2slskfrnbl4sqj5jbd4xz5kn3wgxa4y1-unittest2-1.1.0.tar.gz.drv /tmp/guix-tests/store/v90k8nayfdd8rd2l4rh8c1acnzbm04ya-python-parameterized-0.7.4.drv /tmp/guix-tests/store/1ff34jyzygsfx2gqgyhmz5b4wfmi19cd-parameterized-0.7.4.tar.gz.drv /tmp/guix-tests/store/52i08rf16kmpyfxhib1526bgabrn28c8-libogg-1.3.5.drv /tmp/guix-tests/store/16qwdhhkzlkpd8wvsxv0xzqrvg8yc814-libogg-1.3.5.tar.xz.drv /tmp/guix-tests/store/53y6fad0d59jmnkcz544wbq38fjip7zk-libsndfile-1.0.30.drv /tmp/guix-tests/store/lqclr88wcxhj6ijkaqc3sdbfl3sz7ch2-flac-1.3.3.drv /tmp/guix-tests/store/zyanng5z4ksq329x4shlgdr6j5rh8ygv-flac-1.3.3.tar.xz.drv /tmp/guix-tests/store/pkz609irqk1d0lxkzd8krn9z9vpp794b-libsndfile-1.0.30.tar.xz.drv /tmp/guix-tests/store/zg1blp87srv2bw1r5qfz9yhksvjlms30-libsndfile-1.0.30.tar.bz2.drv /tmp/guix-tests/store/wijgv951ph20wn4l43yz4rj2mv2axcjy-libvorbis-1.3.7.drv /tmp/guix-tests/store/7qik7fi5i09c9cd6b71hfhg617dfpnb1-libvorbis-1.3.7.tar.xz.drv /tmp/guix-tests/store/yf42yz2b3cam6cagcmdzhk5vpwjkps4p-opus-1.3.1.drv /tmp/guix-tests/store/dz208rym5vxhkhl6zx9v2fvs1f8ks650-opus-1.3.1.tar.gz.drv /tmp/guix-tests/store/91nq9h430xgmnkvkq1176bsaq4m5sa2s-jack-0.125.0.drv /tmp/guix-tests/store/imf50gd2klbp77j7g3w3k5sfj94smv4n-jack-audio-connection-kit-0.125.0.tar.gz.drv /tmp/guix-tests/store/a30dy1gmj3sfpqn44f196b804sk2kx1n-pulseaudio-15.0.tar.xz.drv /tmp/guix-tests/store/na2drx6djnk997hnzg8l6kdbf4s2nrp0-pulseaudio-15.0.tar.xz.drv /tmp/guix-tests/store/f1pi4cqm62jd76hvm484nfnzc59v2px6-speexdsp-1.2.0.drv /tmp/guix-tests/store/7clzrbgbx44f9ss0c3pl332adqnkamis-speexdsp-1.2.0.tar.gz.drv /tmp/guix-tests/store/gxrimiijggal78766my8rc667v87d5ms-sbc-1.5.drv /tmp/guix-tests/store/jkbfd6992asmqrfrwiman8n91y0rxiz3-sbc-1.5.tar.xz.drv /tmp/guix-tests/store/mgavfyvndchgd6p07jmwsppzm95achca-sbc-1.5.tar.xz.drv /tmp/guix-tests/store/kdv0g421pf1r0p69c2nyw3893dc968zx-fftwf-3.3.8.drv /tmp/guix-tests/store/xbpn1a18ql8phbk0rb3jwlniv2giaqp6-webrtc-audio-processing-0.3.1.drv /tmp/guix-tests/store/vz5awm6w4qzw8mhdgwkhp4vhfqwzah3c-webrtc-audio-processing-0.3.1.tar.xz.drv /tmp/guix-tests/store/z8xhjvcjq3ghygca7y4zjn3kkgj1n1yq-qtbase-everywhere-src-5.15.2.tar.xz.drv /tmp/guix-tests/store/srw7md5lmjkyxsnwqsbh9zvzjv8srhhd-qtbase-everywhere-src-5.15.2.tar.xz.drv /tmp/guix-tests/store/iwvscqbfnswggmjr459qjmzn7kg968v6-fcitx-4.2.9.8_dict.tar.xz.drv /tmp/guix-tests/store/nrfjw0if301vxi5h96s5zrp76gfsa0d7-ibus-1.5.24.drv /tmp/guix-tests/store/0xlcg73ca7300y87qmaz6ply26bgbxdn-dconf-0.40.0.drv /tmp/guix-tests/store/3r8nrp2qhw275gjzrzmm0983b8cy741g-dconf-0.40.0.tar.xz.drv /tmp/guix-tests/store/2b2sq4s5xvs65ifj2wilh081mx2l13kx-xmodmap-1.0.10.drv /tmp/guix-tests/store/lmzp11j9842fs6x4n4wm7489z4lp8vbf-xmodmap-1.0.10.tar.bz2.drv /tmp/guix-tests/store/2c6ycx35jj1acgdvhw0p68zgw4b6x417-unicode-cldr-common-36.0.drv /tmp/guix-tests/store/6jns9hmxibbh18g67ms7wjjfvfbhf8xx-cldr-common-36.0.zip.drv /tmp/guix-tests/store/yh9rng71wvb2jjn5wfzd3c2w27lx960h-zipbomb-cldr-common-36.0.zip.drv /tmp/guix-tests/store/8dmh91aybcjspa9r8vm29ncyxq6jqxwf-ucd-12.0.0.drv /tmp/guix-tests/store/dmfw4d7si3pm7hxgzl0j193s55cda3zs-UCD.zip.drv /tmp/guix-tests/store/a1maanbbmgbxi4npym91pyw99b089jxw-zipbomb-UCD.zip.drv /tmp/guix-tests/store/awc90iccycqdp42w1zi069an6jml9s8n-ibus-1.5.24.tar.gz.drv /tmp/guix-tests/store/b733gf3gka919zs3q1839v41pdbh5hn2-json-glib-1.6.2.drv /tmp/guix-tests/store/pqkzqsk34db4qwv083pcczyvp3vyr4d8-gtk-doc-1.33.2.drv /tmp/guix-tests/store/4cvbgknh71wbip3543kzdmi6rdrdrqbx-dblatex-0.3.12.drv /tmp/guix-tests/store/bnazxgffckbl2jfzxj9l7lgxgp1kk85r-gtk+-3.24.30.drv /tmp/guix-tests/store/cd3gjbbyjb1xrnhdp1qj2rfipiyki4ya-unicode-emoji-12.0.drv /tmp/guix-tests/store/2zpbjd0kjfnhzfn8avphsxbwnrcsaqrz-emoji-test.txt.drv /tmp/guix-tests/store/6zlny5dnkk6dc8p4n38ykv25kgs1xs13-emoji-zwj-sequences.txt.drv /tmp/guix-tests/store/av98dk2vmlx3jcp36rfky51ba95iq5g4-emoji-sequences.txt.drv /tmp/guix-tests/store/fclymkakzzi88yzw4g2g1h125zaanwyc-emoji-variation-sequences.txt.drv /tmp/guix-tests/store/pkf1c3znwmj6nnkvpzpyj755jww06xgs-emoji-data.txt.drv /tmp/guix-tests/store/ch1vzr8wzgbv4hrq8kd1f16dwpq5agdn-python-pygobject-3.40.1.drv /tmp/guix-tests/store/9czdlgd84xqh6v2fc1kjl0kc9ackglx3-pygobject-3.40.1.tar.xz.drv /tmp/guix-tests/store/k3pvrx9kwj0yzqr8156fxqf5bghy7rd0-pygobject-3.40.1.tar.xz.drv /tmp/guix-tests/store/h162h7r3jr6g0kgpbzc55ygfhzb8nhr4-python-dbus-1.2.18.drv /tmp/guix-tests/store/2422ri1svgbwfg5kj3a0cqmbddmj7vn6-dbus-python-1.2.18.tar.gz.drv /tmp/guix-tests/store/jb373dls7c0slrly74xxifiqq2vv5i36-setxkbmap-1.3.2.drv /tmp/guix-tests/store/n1y57ixm2h6w7r4p0wmd1slgki52s38k-setxkbmap-1.3.2.tar.bz2.drv /tmp/guix-tests/store/rsz4srk11x4a707y4z1pa5hqy5vqrrn3-libnotify-0.7.9.drv /tmp/guix-tests/store/bf0p6hb1rzzncd7mrwpmm8bcz18xiidm-libnotify-0.7.9.tar.xz.drv /tmp/guix-tests/store/kvipshbagjr0clsfbxs0bpli750b6mwj-u-boot-2021.10.tar.xz.drv /tmp/guix-tests/store/3s3z7499lfl87nch7ax8s5mzlrvv3s6c-u-boot-2021.10.tar.bz2.drv /tmp/guix-tests/store/zx4xkcmbg5sz9akviwb1rfnxvwdqlshv-dtc-1.6.1.drv /tmp/guix-tests/store/9gbmsqsk32ynqzp1hkmxrf03zyi2sj5a-dtc-1.6.1.tar.xz.drv /tmp/guix-tests/store/fcb2zajdf60zzqsjz64n2rypxww1x1m0-libyaml-0.2.5.drv /tmp/guix-tests/store/sc53x2q3h4sss6vmasrpk81zaflw9c1b-yaml-0.2.5.tar.gz.drv /tmp/guix-tests/store/rjq0wgmw69vfl1rjjggmr64fjws6cl5c-qemu-minimal-6.1.0.drv /tmp/guix-tests/store/01i1dqd7ndz3c98s8dywbwrskljja05y-python-sphinxcontrib-htmlhelp-2.0.0.drv /tmp/guix-tests/store/n22civi2bp6ac1xa80izppp03kz3ri60-sphinxcontrib-htmlhelp-2.0.0.tar.gz.drv /tmp/guix-tests/store/12q5a5c6h0w565hq27q73r1xd8mr3yg3-python-asn1crypto-1.4.0.drv /tmp/guix-tests/store/89c6cq93vzqjchw5a7hxil98f870sc3b-python-asn1crypto-1.4.0-checkout.drv /tmp/guix-tests/store/18in8khqhxw5xhxl62q8cszp3ylfj0mk-python-charset-normalizer-2.0.5.drv /tmp/guix-tests/store/23psdhx9d9x5kjvgpzfx1hi56rm8ni4m-charset-normalizer-2.0.5.tar.gz.drv /tmp/guix-tests/store/1c77malcxjx14bwm7nh8q66nyykglbsh-python-idna-2.10.drv /tmp/guix-tests/store/0kxx0x8y407sxmc5dcz574ji9f6cs0rd-idna-2.10.tar.gz.drv /tmp/guix-tests/store/2ghsivipr1yb6yf00y8bcz27j0z35nmy-libcap-ng-0.8.2.drv /tmp/guix-tests/store/nf2lxkhiir1w4k28lfg4xz2kz9bla2d8-libcap-ng-0.8.2.tar.gz.drv /tmp/guix-tests/store/59l36lhvcsjkb0pw3hnfg13p3dbmz0si-python-pytz-2021.1.drv /tmp/guix-tests/store/0sdnik47q72psssnc5x5mnfsr5yv9jpx-pytz-2021.1.tar.gz.drv /tmp/guix-tests/store/64vrsskq97czn86i525dpkr4q0yy5gnb-python-certifi-2020.12.5.drv /tmp/guix-tests/store/vk7xxhljhm6scqsldjjqrcbi1rkmrngy-certifi-2020.12.5.tar.gz.drv /tmp/guix-tests/store/83m7b0q4g306d49y334q349hn9qjryhw-python-babel-2.9.0.drv /tmp/guix-tests/store/cqz8kzdwms7ipd99bz4qaq8imr6vpjkd-python-freezegun-0.3.14.drv /tmp/guix-tests/store/2jbd3i45jkp1fn3yl9ac2pxv7y0c44b5-freezegun-0.3.14.tar.gz.drv /tmp/guix-tests/store/kd688ymzmsnzpn442kjbpjfp945kxm6y-python-dateutil-2.8.2.drv /tmp/guix-tests/store/13f3h50mzv2n17l5qs96myfn349g14zj-python-pytest-cov-2.8.1.drv /tmp/guix-tests/store/zzpd8w78qpxvvwhh2g882lhmfvkfzv6v-pytest-cov-2.8.1.tar.gz.drv /tmp/guix-tests/store/syw38d3nvmgdisgv63zhryy3h91hr09a-python-dateutil-2.8.2.tar.gz.drv /tmp/guix-tests/store/dqzk82fhfm654pcsgblbvsgnwnfvb06f-Babel-2.9.0.tar.gz.drv /tmp/guix-tests/store/arzdd00nfj3b4s228ns0pnhggqdvalfq-python-sphinx-4.2.0.drv /tmp/guix-tests/store/2zyw6lw6d0dwmgnbi2hhiwvn9ijb0c02-Sphinx-4.2.0.tar.gz.drv /tmp/guix-tests/store/bm2h6ls4zir9vvkxv8a8rg840dn35dda-python-urllib3-1.26.7.drv /tmp/guix-tests/store/d6y75g1hfpb0vbcy620i4mqqxfcf50hz-python-cffi-1.14.4.drv /tmp/guix-tests/store/f5cgdvz9xzp88nk29az87rpwc8phrrp5-cffi-1.14.4.tar.gz.drv /tmp/guix-tests/store/njhh79fqs1h0brjl5xlgrqgnnj913wmk-python-pycparser-2.20.drv /tmp/guix-tests/store/1czag77s1c08i0z56312d8q4rg5ffxay-pycparser-2.20.tar.gz.drv /tmp/guix-tests/store/f4il6aszmfxci62lkaf2q08my6gg3g73-urllib3-1.26.7.tar.gz.drv /tmp/guix-tests/store/fai69jm1vmcg0zm1lkg5hs6kdc7a2nwc-python-cryptography-3.3.1.drv /tmp/guix-tests/store/2q6idpik06cx7ba558ly921v6nza4fnw-python-cryptography-vectors-3.3.1.drv /tmp/guix-tests/store/xjjyjzk44aq44cqfmb446zaamd9i9nvq-cryptography_vectors-3.3.1.tar.gz.drv /tmp/guix-tests/store/cikd1ka7q2w6935b0q29fx204sq6hagn-python-pretend-1.0.9.drv /tmp/guix-tests/store/2f9mkw7b3x78b11s5l94gjfcxbdfa9sf-pretend-1.0.9.tar.gz.drv /tmp/guix-tests/store/pgwdhlmhpj959rlh619dhf6gig87kmqm-cryptography-3.3.1.tar.gz.drv /tmp/guix-tests/store/h8w3kixcpz7phpdrd69v57jcnsng6b34-python-pysocks-1.7.1.drv /tmp/guix-tests/store/zar1xp9jwhac68pd9c7dd8qpchlzh33j-PySocks-1.7.1.tar.gz.drv /tmp/guix-tests/store/r5gw54wynrm3pa5bx8l8ylqg963baz0c-python-pyopenssl-20.0.1.drv /tmp/guix-tests/store/2qzs9g02y4mv4h7ppvp12c0dwkriw6jd-python-flaky-3.5.3.drv /tmp/guix-tests/store/7qb7lfakv1bsj5x8c15b3bxwpsyh4vcd-flaky-3.5.3.tar.gz.drv /tmp/guix-tests/store/64036g9fjw2g487snlvsix0i2s1nihd8-pyOpenSSL-20.0.1.tar.gz.drv /tmp/guix-tests/store/c0nck7i44gw6z7f1cy4xy2x57hh049c9-python-requests-2.26.0.drv /tmp/guix-tests/store/68070zqnzywk8zpqkgkg5g0bvcsnai78-requests-2.26.0.tar.gz.drv /tmp/guix-tests/store/hjzqb4yl91jqgswpi7kzn3zp10awp319-python-chardet-3.0.4.drv /tmp/guix-tests/store/1a5mb76vk1l5d84bx7lcbgbc2igzs7zd-chardet-3.0.4.tar.gz.drv /tmp/guix-tests/store/dgwnph3hf3pxzmlvnzd0l0ilrdq3j36c-python-sphinxcontrib-devhelp-1.0.2.drv /tmp/guix-tests/store/h2qpa86ymnqidvig1dmnd4yh5fqyx2vc-sphinxcontrib-devhelp-1.0.2.tar.gz.drv /tmp/guix-tests/store/fr36j1bmsv8g2znvv0499wgy3nfxc55w-python-sphinxcontrib-jsmath-1.0.1.drv /tmp/guix-tests/store/agp9iwn82f2ra8v1sx02b95x64x2sr7v-sphinxcontrib-jsmath-1.0.1.tar.gz.drv /tmp/guix-tests/store/h2lhimwf3chi5rri2qxl7y9vlma0gyic-python-snowballstemmer-2.0.0.drv /tmp/guix-tests/store/9a49mk14vvpgbn4rw1600lwzc5rx4554-snowballstemmer-2.0.0.tar.gz.drv /tmp/guix-tests/store/jki51kc261vlrjjdf84mm258x3yycxl8-python-packaging-20.0.drv /tmp/guix-tests/store/jxhfdhc34ixj8nxf6h48jjd8s10a9rga-python-sphinxcontrib-qthelp-1.0.3.drv /tmp/guix-tests/store/sygw5jqw4hb4msa4rgzgwhd51lqzcbk7-sphinxcontrib-qthelp-1.0.3.tar.gz.drv /tmp/guix-tests/store/lhfmi0acg19x52mxxb3f089r4ysfgi8r-python-sphinx-alabaster-theme-0.7.12.drv /tmp/guix-tests/store/q9pk2f4nyx4b2814p99faqwk8r96lb98-alabaster-0.7.12.tar.gz.drv /tmp/guix-tests/store/nllpay12x91rw85asj25dgzknkqk2d1n-python-sphinxcontrib-serializinghtml-1.1.5.drv /tmp/guix-tests/store/dx7vypdvs8d3j744lx89s3b4blh0w3l0-sphinxcontrib-serializinghtml-1.1.5.tar.gz.drv /tmp/guix-tests/store/nrzrk84v7ny3hws4mxak7vriciahxhbk-python-webencodings-0.5.1.drv /tmp/guix-tests/store/30acf20biyi24cklnprxy6sin4dxzycr-webencodings-0.5.1.tar.gz.drv /tmp/guix-tests/store/sqlw91q4gjvf3lysz16ympyj0s40gy7h-python-sphinxcontrib-applehelp-1.0.2.drv /tmp/guix-tests/store/bw1irzvp3pzpc4gpifmripdl55b46i26-sphinxcontrib-applehelp-1.0.2.tar.gz.drv /tmp/guix-tests/store/xijv71f9xx0nlswmgii46fbg22zmanma-python-imagesize-1.2.0.drv /tmp/guix-tests/store/q2c76w2sfgmdycv3cl9sc00nfdzdhr5z-imagesize-1.2.0.tar.gz.drv /tmp/guix-tests/store/yfr28d7xcq19hgqbg7yjvkmw7v0vfszq-python-jinja2-3.0.1.drv /tmp/guix-tests/store/3msr00fkq1b43dpsy9q1qdfhivz079bd-Jinja2-3.0.1.tar.gz.drv /tmp/guix-tests/store/ylyff6vcdnvfmldv7sg896y2d0n81w0z-python-html5lib-1.1.drv /tmp/guix-tests/store/ln1bp8xrbmljdz4m27wjb4k3cn60fab2-html5lib-1.1.tar.gz.drv /tmp/guix-tests/store/b2xnvs14gq8y279j33g6zphybzwyvcxj-qemu-6.1.0.tar.xz.drv /tmp/guix-tests/store/w59bzn2p78mdpk5wb26jj3kf9qq44amw-qemu-6.1.0.tar.xz.drv /tmp/guix-tests/store/gz9sy7296rmiycrlkj76x8l39jll2d2l-python-sphinx-rtd-theme-0.2.4.drv /tmp/guix-tests/store/33s841a2ijmz71fiksngzz8az6dxld19-sphinx_rtd_theme-0.2.4.tar.gz.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/yq3pn0f0zbwpnmsqqzr9rnjk6hva273c-libseccomp-2.5.3.drv /tmp/guix-tests/store/p51fxri0mf3jpvif5lqzyiih79aqb1wg-libseccomp-2.5.3.tar.gz.drv /tmp/guix-tests/store/rxbccqlx39snsycc4sfgdbj3s9zhagli-cpio-2.13.drv /tmp/guix-tests/store/shz8cm6iwvfg6sm0bdlcp97a6iv4x8xl-cpio-2.13.tar.xz.drv /tmp/guix-tests/store/y9nbw83qbnln93pr1951wjlvlyra5iwy-cpio-2.13.tar.bz2.drv /tmp/guix-tests/store/wkp2vszn11d1hpnrrbvi5fraai1z270b-cdrkit-libre-1.1.11.drv /tmp/guix-tests/store/f3n8dq4gbbs2zn5i26pn34xs01vhrvkf-cdrkit-libre-1.1.11.tar.xz.drv /tmp/guix-tests/store/j0wnaj19kzyv3ad4d4s5v9mdh2wjdr2s-cdrkit-libre-1.1.11.tar.gz.drv /tmp/guix-tests/store/y6qxr5sbapvvl5ybl4wwsj9y42mqf0cx-genext2fs-1.4.1-4.drv /tmp/guix-tests/store/sn1jysjx1csgls0r4k1cr9p1z74axlkv-genext2fs-1.4.1-4-checkout.drv /tmp/guix-tests/store/zrmavn3b0dbypg27c1ffxw2zh1jyy0bn-mtools-4.0.36.drv /tmp/guix-tests/store/h2d4xp2h2m5dpynhgc3zi9bclxd7jin5-mtools-4.0.36.tar.xz.drv /tmp/guix-tests/store/k4nm2qwi83s982kn1m7803gcb881ya8w-mtools-4.0.36.tar.bz2.drv /tmp/guix-tests/store/vwlq8ksgn8k6rgrc5i1vj05kykw49v0n-genimage.cfg.drv /tmp/guix-tests/store/f3x7ncn1wcqfbd2cgnmwzpg8kzpd07pr-partition.img.drv /tmp/guix-tests/store/dskvmzxj8js5bgliqb0y55v1bplzy78p-glibc-utf8-locales-2.33.drv /tmp/guix-tests/store/k7xjyqm9krkbv9qvw87z7dcwnc828lgn-glibc-2.33.drv /tmp/guix-tests/store/4978fq5br4v48dk27vk71yllddnn3kzm-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/kbwm91cmwawdj4cr3cwfkwxpfpjgg0ml-bash-static-5.1.8.drv /tmp/guix-tests/store/zjsnvvk557wmb5w2i962mq60fynrk6jz-linux-libre-headers-5.10.35.drv /tmp/guix-tests/store/m7w7d0ba41gg665aq9shwk68d56q44sd-grub-efi-2.06.drv /tmp/guix-tests/store/1vbgi0a26rnyvws37v5afqmzfs29l585-grub-2.06.tar.xz.drv /tmp/guix-tests/store/7k5daaqrmca44w4lgdgc3gbf3bngn5sj-grub-2.06.tar.xz.drv /tmp/guix-tests/store/3aflpa7pa4awlygblgxjkkwx99yj54q9-fuse-2.9.9.drv /tmp/guix-tests/store/xq1mlgk5rw7ka30jdx4aj31sa2grg039-fuse-2.9.9.tar.xz.drv /tmp/guix-tests/store/rrxskzv964zilsi81wwam87ix2yxvr2c-fuse-2.9.9.tar.gz.drv /tmp/guix-tests/store/54z5zijpccpjfsq44794svsybv0ifl4v-xorriso-1.5.2.drv /tmp/guix-tests/store/ix4k1853388gpg9gk7q7j60c25q809nf-xorriso-1.5.2.tar.gz.drv /tmp/guix-tests/store/94jsmp2v461d86cpsqfsvcpdivlxppv5-parted-3.4.drv /tmp/guix-tests/store/py9prgrxz261l11b346blzvbnv3dcnjk-parted-3.4.tar.xz.drv /tmp/guix-tests/store/xn7835n120pycqzqhfbsszk555hf0bvn-lvm2-2.03.11.drv /tmp/guix-tests/store/pjm81nfsixr57mzwv6j3n090sy6b204x-LVM2.2.03.11.tar.xz.drv /tmp/guix-tests/store/qbnmrqyxy66rnjxyv3xmcl3cg3184ml9-LVM2.2.03.11.tgz.drv /tmp/guix-tests/store/9a5fv9invv6f983qi23000sh9yb8zjwp-efibootmgr-17.drv /tmp/guix-tests/store/g41l93j4hpnm5qw4bia65rrv60p6fn3q-efivar-37.drv /tmp/guix-tests/store/yf9bxihf2j8xg2l060507sg6l334wypb-efivar-37.tar.xz.drv /tmp/guix-tests/store/bpn7r66bw8pzfx209ya5friz55ih15r2-efivar-37.tar.bz2.drv /tmp/guix-tests/store/j6qdjbiz7k9ga72dk4bqm92421l9lbaz-efibootmgr-17-checkout.drv /tmp/guix-tests/store/manwiff0fnbvq1v95ad5za889jphabpa-efibootmgr-17-checkout.drv /tmp/guix-tests/store/xci6rbyxxcqq000dhw1brycb3va9j0py-console-setup-1.205.drv /tmp/guix-tests/store/3xnnjz19snffsz4ifn39bkhp9sxbnskh-bdftopcf-1.1.drv /tmp/guix-tests/store/m51xbgwmddmalhlb47hxy5i186qs2gjh-bdftopcf-1.1.tar.bz2.drv /tmp/guix-tests/store/4d82476lpigdh993vsy0w2yvjka381zk-sharutils-4.15.2.drv /tmp/guix-tests/store/qx4b0qq0ccvbqmc8l9g5dxlxvlixj8q7-sharutils-4.15.2.tar.xz.drv /tmp/guix-tests/store/acqnvmjhnsy1paadqd9sgbp49i9wvcys-sharutils-4.15.2.tar.xz.drv /tmp/guix-tests/store/j8hnirmx00civbqqarxska8l83p7cgyz-console-setup-1.205-checkout.drv /tmp/guix-tests/store/qwha10vgcvwfqd8q3hmbris7gml6fs9r-bdfresize-1.5-11.drv /tmp/guix-tests/store/k4lqfhgql9xp59fijigg9zcg3rizbkn4-bdfresize-1.5-11-checkout.drv /tmp/guix-tests/store/5pfnj4vjixnff85ifhj1lc6cxlag9b08-bdfresize-1.5-11-checkout.drv /tmp/guix-tests/store/ydq5y6crh7ahaf2p7zvx5w55brkviqbn-mdadm-4.1.drv /tmp/guix-tests/store/gfw5yabijmqdn3l5a7w9y1bnrrcra12r-mdadm-4.1.tar.xz.drv /tmp/guix-tests/store/zpv61y3la0frkx599ls4jywkgvdd5mr8-unifont-7.0.06.bdf.gz.drv /tmp/guix-tests/store/ph616l5dx5v572nv4an2h5m9rw538pbs-system.drv /tmp/guix-tests/store/2ibhvm4kjqzl7jimn8sw30nrljrj8c0y-locale-multiple-versions.drv /tmp/guix-tests/store/kzzlxx72p8wgxrgcjh13p3128kpgkw7f-locale-2.33.drv /tmp/guix-tests/store/pv0ziwf8zikap87l6l2q935aydhcz9gd-module-import-compiled.drv /tmp/guix-tests/store/rh0z0b8gwryj2m25wr00wimxrrckynzk-module-import-compiled.drv /tmp/guix-tests/store/wmdk807ql9dk2d2nh982870j5h6w9wnz-locale-2.31.drv /tmp/guix-tests/store/4nkpxx2jjapbnl0fnpnas1x2pvahc5ih-glibc-2.31.drv /tmp/guix-tests/store/kflx39w92xlv1lg3pvgv1sqz939mzjc9-glibc-2.31.tar.xz.drv /tmp/guix-tests/store/1ipqan74q3gddmn8v2xc3giz6i5r6wks-glibc-2.31.tar.xz.drv /tmp/guix-tests/store/4bjy4xvh2wa17nyhffawkrdl14bvd8k4-profile.drv /tmp/guix-tests/store/03spvwpinh4ysdhs3zfsmxisf5ah84jj-usbutils-014.drv /tmp/guix-tests/store/cm100g7rscllnj0biscirhas9xxri54w-usbutils-014.tar.xz.drv /tmp/guix-tests/store/0qnjl5yfwgqw9za6jlji3wiin7x0cm1l-nvi-1.81.6.drv /tmp/guix-tests/store/92si81ir5290ikwqw1s55hrbdy02wank-nvi-1.81.6.tar.xz.drv /tmp/guix-tests/store/wr2w5zi22h6g0j0rr58ph2rl95cpi1gc-nvi-1.81.6.tar.bz2.drv /tmp/guix-tests/store/2hm1x5jxgiyjc3kazz5bfsayl9lvd6q6-wireless-tools-30.pre9.drv /tmp/guix-tests/store/21gv30k4s1czzskzwwbvbsymlph0kj56-wireless_tools.30.pre9.tar.xz.drv /tmp/guix-tests/store/h2ck7l3mz3mr3qs168y7lxr3psgrr52z-wireless_tools.30.pre9.tar.gz.drv /tmp/guix-tests/store/3m7dfgmlw64rqsn3wghs0iz5f4353hdd-guile-zstd-0.1.1.drv /tmp/guix-tests/store/ghmy8vjyc8r3yjkz4daczs351s4635ml-guile-zstd-0.1.1-checkout.drv /tmp/guix-tests/store/5xyc3mla67b13wbw356b027jlpwab1fx-rottlog-0.72.2.drv /tmp/guix-tests/store/g08crmldhqd0bwjh6p5cci1fpgzp5cq0-mailutils-3.13.drv /tmp/guix-tests/store/2h38i16d77zgiy1bvivl52xkjrgckhai-gsasl-1.10.0.drv /tmp/guix-tests/store/2klvswdlbhk7l5iswilki1ahjyvxj96w-libntlm-1.6.drv /tmp/guix-tests/store/bqhxn8jc0nbhwyi509ngfvw5dn0s6z69-libntlm-1.6.tar.gz.drv /tmp/guix-tests/store/lhpigb262sclzqbn48c7pg3sk92gvgla-gsasl-1.10.0.tar.gz.drv /tmp/guix-tests/store/7j22nfv73l9nyzv62nrn4vs7zj0v3fqy-libiconv-1.15.drv /tmp/guix-tests/store/plw5fmmhgglydkkrgzdia2fy3v0b6i6q-libiconv-1.15.tar.xz.drv /tmp/guix-tests/store/d4jafkvzzkpp6qhn0kxc40m0ilchpcly-libiconv-1.15.tar.gz.drv /tmp/guix-tests/store/8gyikhrn92yak2q7jx61f3rgqiabr2my-dejagnu-1.6.2.drv /tmp/guix-tests/store/1kib6rr5lm94fvpzb04pqs4aycgbj2dk-expect-5.45.4.drv /tmp/guix-tests/store/p1zzypvrfzd20c8f1j7m5galz7z6zaqr-expect5.45.4.tar.gz.drv /tmp/guix-tests/store/6zjlx0wqrpg9lw639rbphdgnazm3rvaw-dejagnu-1.6.2.tar.gz.drv /tmp/guix-tests/store/vz7vgsp307z1b2g3bi2p43kln8hprpng-mailutils-3.13.tar.xz.drv /tmp/guix-tests/store/1d7dfrxpznpz3ly4jjpxagzflmy48qpb-mailutils-3.13.tar.xz.drv /tmp/guix-tests/store/p8c0xszsgb2g8h553rkk8k824x9s69b2-rottlog-0.72.2.tar.xz.drv /tmp/guix-tests/store/n3nfzafj0z3h0vhhaknxvdkb0irxf5jv-rottlog-0.72.2.tar.gz.drv /tmp/guix-tests/store/2d2cbya67yyji8xchr1in8knxix9mcr8-mkfontdir-1.0.7.drv /tmp/guix-tests/store/k1sh37msdlm5cq4phpj9kj9gqvw7pqr2-mkfontscale-1.2.1.drv /tmp/guix-tests/store/akh1wmkmcaxhfk1s4pf9wka6bim8671l-mkfontscale-1.2.1.tar.bz2.drv /tmp/guix-tests/store/my0azai9frif7yfdr4flv0a39hd9xj52-mkfontdir-1.0.7.tar.bz2.drv /tmp/guix-tests/store/6lsh62vk0kn2h2j78ny6samgjl69jcl2-guile-avahi-0.4.0-1.6d43caf.drv /tmp/guix-tests/store/jy86h73gpmiy9m60q14nq2fixjklnnls-guile-avahi-0.4.0-1.6d43caf-checkout.drv /tmp/guix-tests/store/li355kl0hi6367fjm1m0j3dkyx715hnx-module-import-compiled.drv /tmp/guix-tests/store/6mfsxnxizis59daqirwwfijhqhbdvn7j-wget-1.21.1.drv /tmp/guix-tests/store/01avib9v6ryk2hqanbs7y4ln5k1a301v-perl-net-ssleay-1.88.drv /tmp/guix-tests/store/y2s3s7lii6lhznvsznzhq4f8mfsvwvlb-Net-SSLeay-1.88.tar.gz.drv /tmp/guix-tests/store/6k1m77xqsh752q5fa6v5nk9amfvlsxhr-perl-io-socket-ssl-2.068.drv /tmp/guix-tests/store/qmfh434pi0c69swdbjz9wlfgksqhh7m6-IO-Socket-SSL-2.068.tar.gz.drv /tmp/guix-tests/store/8hrzpc4pywrdb5098f74frg4yrkwc985-perl-http-date-6.05.drv /tmp/guix-tests/store/sqg1rxy4x3l5hpmp20ciacx0ixcy6fpg-HTTP-Date-6.05.tar.gz.drv /tmp/guix-tests/store/cpcnsdnsdrq8djdv29f53qgw98lll49r-perl-lwp-mediatypes-6.04.drv /tmp/guix-tests/store/252bgkdf5826m39sg6p5ir6lzlz1dm6w-LWP-MediaTypes-6.04.tar.gz.drv /tmp/guix-tests/store/9wsfba3n6cgwrnyd0nk7rb6p30qj7vra-perl-try-tiny-0.30.drv /tmp/guix-tests/store/7kp5adkbkzgsw1k1hfyd21m6pamr4waj-Try-Tiny-0.30.tar.gz.drv /tmp/guix-tests/store/msmy7w894jb3rbwdjmqb829l4p5jrqg4-perl-test-fatal-0.014.drv /tmp/guix-tests/store/5v0pk6x5ryq2pr9qpmmvqp2cn7vbnw0r-Test-Fatal-0.014.tar.gz.drv /tmp/guix-tests/store/fa76fa752fsm2v4ylin9rh52d2chn4mn-perl-io-html-1.00.drv /tmp/guix-tests/store/1w2ps966mwp7y09qyqwacwyhal6mr8n3-IO-HTML-1.00.tar.gz.drv /tmp/guix-tests/store/i4ysglrmbga9xbj7aiq5v0hif8dw2l1a-perl-http-daemon-6.01.drv /tmp/guix-tests/store/gg97lch2yfiqd3r65jkn00riq9hq9z5q-HTTP-Daemon-6.01.tar.gz.drv /tmp/guix-tests/store/jdaymicps378ky4drdmzw8xdln0mn481-perl-http-message-6.18.drv /tmp/guix-tests/store/pvkhl924lzyvbb5d8s10smjizipggfdf-HTTP-Message-6.18.tar.gz.drv /tmp/guix-tests/store/zrzvkl33h6gfj7m2w8v04ib39lpdz1mc-perl-encode-locale-1.05.drv /tmp/guix-tests/store/jxjn1n3s55g3i068gc7vqp2vqg6bk1pm-Encode-Locale-1.05.tar.gz.drv /tmp/guix-tests/store/q7xl9i21gpwsg5n3af4mjg7yp1wjyp50-wget-1.21.1.tar.lz.drv /tmp/guix-tests/store/7dn7yzsc72spw0lvr7f5h42nkkgq3jib-nano-6.0.drv /tmp/guix-tests/store/gzsiy44bjlzvqlikwf784ahs5ddcgda8-nano-6.0.tar.xz.drv /tmp/guix-tests/store/7qc6clvvrd2vwmrk57bgnk7c86kckv8h-guile-bytestructures-1.0.10.drv /tmp/guix-tests/store/z95qj605zqwkdjk763wby0j34kqrwzbh-guile-bytestructures-1.0.10-checkout.drv /tmp/guix-tests/store/9qjk58067ri761nrw8n58y2cb1zl5nm4-isc-dhcp-4.4.2-P1.drv /tmp/guix-tests/store/smfkla2d81jbyfgjbsmrllkn8jp39cmi-bind-9.11.36.tar.gz.drv /tmp/guix-tests/store/y8n2xdnxxhq3yx9i4gjqhm72f8jkil22-dhcp-4.4.2-P1.tar.xz.drv /tmp/guix-tests/store/68m02wgg1q5vm7x3jj3raz9fxfsmxkxl-dhcp-4.4.2-P1.tar.gz.drv /tmp/guix-tests/store/a69jixmfip1vfkv3d5qkr0zf0kh2psxf-openssh-sans-x-8.8p1.drv /tmp/guix-tests/store/2gp7mvsj30djscl02w91386270q03bfj-libedit-20191231-3.1.drv /tmp/guix-tests/store/z6wdh85r38rzzf21nbbbd79smxaknwiz-libedit-20191231-3.1.tar.gz.drv /tmp/guix-tests/store/98f8kvbarwxm9x8lk32qaq6alnl0cygg-libfido2-1.9.0.drv /tmp/guix-tests/store/n6vq15hi5fvpflxkkfc96wsffpy4pkf8-libfido2-1.9.0-checkout.drv /tmp/guix-tests/store/sagi2napp294wy3nymc9ykjqix54zwwz-libcbor-0.8.0.drv /tmp/guix-tests/store/6z3vddk8f9fkbhfy0lvn91pkingman5h-libcbor-0.8.0-checkout.drv /tmp/guix-tests/store/bs46k0fsn2w04n6qkww2s8y3dpickaqi-openssh-8.8p1.tar.xz.drv /tmp/guix-tests/store/0y6r2qb5xrk81k7p6v6842iyrgwx2dpg-openssh-8.8p1.tar.gz.drv /tmp/guix-tests/store/cnw03bpim0dmbp6kvnsqgw0rm1b2wk60-psmisc-23.4.drv /tmp/guix-tests/store/08simppg2pdjj3fa5vj5z2jr4nsshdfd-psmisc-23.4.tar.xz.drv /tmp/guix-tests/store/cz7npp4iaygyfnn0rn9nxzz48s3pac7a-iw-4.14.drv /tmp/guix-tests/store/87mnm374vq13lsyxnklhlqk3clh12w5p-libnl-3.5.0.drv /tmp/guix-tests/store/ixby5dqrz40a1kvm0hbvbiannz4fdl8f-libnl-3.5.0.tar.gz.drv /tmp/guix-tests/store/jycsgdab94fq1x9ll5lmk1jkcgd409sx-libnl-doc-3.5.0.tar.gz.drv /tmp/guix-tests/store/v9nnd7qj0ikm0jd20rwjsghz9rrnnkk9-iw-4.14.tar.xz.drv /tmp/guix-tests/store/f1jvl67m012mpcvnwmq3zcnw8ldvbsyp-mcron-1.2.1.drv /tmp/guix-tests/store/52qw4jxc97diz360jlbhqjwyrsvxxv0a-mcron-1.2.1.tar.gz.drv /tmp/guix-tests/store/f6qwlxh95h8kspn0c8rf7qlmzf1d570m-mg-20210609.drv /tmp/guix-tests/store/jlfzl42fs15znvh7bjsjkzb4j7hiy3vn-diffutils-3.8.drv /tmp/guix-tests/store/ksqy4pgivydykas6p5vr55vhm85ywlp4-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/npmm1196qbjwzi9n0kyzjd0ggv0c1lib-mg-20210609-checkout.drv /tmp/guix-tests/store/pphf5gq1nspncfvlbz04yq7b6nj4f965-mg-20210609-checkout.drv /tmp/guix-tests/store/fv1ln5rj47mlqq73180h9m08c3ia14c3-guile-git-0.5.2.drv /tmp/guix-tests/store/16bfl9b4p7flj0yydzy9gk6rqprc62p5-libgit2-1.3.0.drv /tmp/guix-tests/store/faq7i03czy6h6mm4r7lsqb66b1dd7rbl-libssh2-1.9.0.drv /tmp/guix-tests/store/sc0g4yp60knb191j626s8w8ch8izq8qr-libssh2-1.9.0.tar.xz.drv /tmp/guix-tests/store/xpzp6f37h255rhp2cv4ymcl3j94ay9v5-libssh2-1.9.0.tar.gz.drv /tmp/guix-tests/store/rwnrwvajwlphc2mszywvrbncwbjaw0kz-libgit2-1.3.0-checkout.drv /tmp/guix-tests/store/fnfhqmvxkgcmchkz8kh03n7xbs7dhdbw-libgit2-1.3.0-checkout.drv /tmp/guix-tests/store/xlndcmn1i91dlrccxxac31iaj1r2msqq-http-parser-2.9.4-1.ec8b5ee.drv /tmp/guix-tests/store/fijh42jbpl81hxbzvxnk7ffyacm457zg-http-parser-2.9.4-1.ec8b5ee-checkout.drv /tmp/guix-tests/store/cxf51006n7d0c21skq3aswfnjg7l6zg0-http-parser-2.9.4-1.ec8b5ee-checkout.drv /tmp/guix-tests/store/k8gr1hl42xfv4b36355r37yz841dw4qx-0001-url-treat-empty-port-as-default.patch.drv /tmp/guix-tests/store/bz7d9qwsmal6099r8dizwj9km37dm7xd-guile-git-0.5.2-checkout.drv /tmp/guix-tests/store/w5w120h3a0hzjahcbasg2q24q30nhag5-guile-git-0.5.2-checkout.drv /tmp/guix-tests/store/g8r5k2ws8v7ysy0j7s1bk7zhzgj2siqz-kbd-2.4.0.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/8b9skn33p8x39l70ypvpw464gm8hik82-kbd-2.4.0.tar.xz.drv /tmp/guix-tests/store/r8iwyrjc5f2pkr7xjvvxps1fi8w62bqq-kbd-2.4.0.tar.xz.drv /tmp/guix-tests/store/g98b81dhda9q4gbqbfzjd14dy37f0qan-guile-ssh-0.13.1.drv /tmp/guix-tests/store/h2g0wf0p18lwmrpm5v8ah44xgw0n4sd1-libssh-0.9.6.drv /tmp/guix-tests/store/01ymca8l0xg5149nncyc8wb64123p5f0-libssh-0.9.6.tar.xz.drv /tmp/guix-tests/store/kymj24blqlkmgvp42255kn7y526q7x0b-guile-ssh-0.13.1-checkout.drv /tmp/guix-tests/store/3h9fajz0hyjicpjcx3x6kr39w4b4jw7v-guile-ssh-0.13.1-checkout.drv /tmp/guix-tests/store/glj6vpavn6hsq4mn6mv4ljajrwphhpnd-less-590.drv /tmp/guix-tests/store/yccr1pc9hpqqk14mfasvcppqj4cl04as-less-590.tar.xz.drv /tmp/guix-tests/store/madpyki5i3q3r4sh9sdivm7db8nhydkc-less-590.tar.gz.drv /tmp/guix-tests/store/jf7imq8fj831wfmp8x89cswxq1vnp2h8-util-linux-with-udev-2.37.1.drv /tmp/guix-tests/store/jm3jb8p39zaf6dimvgdlsqbsbq5x5rb1-guile-colorized-0.1.drv /tmp/guix-tests/store/1mi82141ikz1qv34bhrsh23dga5ml303-guile-colorized-0.1-checkout.drv /tmp/guix-tests/store/k1xws21mxn355ck2jjmdvdy0wlqnwy5l-guix-icons-0.1.drv /tmp/guix-tests/store/45pic93zs22dvh7kncbl30czrqmgaqkz-module-import-compiled.drv /tmp/guix-tests/store/666b3184y9jlxm2b6b64k2q08nqc1b15-guile-rsvg-2.18.1-0.05c6a2f.drv /tmp/guix-tests/store/knz970wh9br51388mhnrfj0lfa7xfkdl-guile-cairo-1.11.2.drv /tmp/guix-tests/store/i1zcl2pd4r8agw87xa2hhzj7jzfjdp3h-guile-cairo-1.11.2.tar.xz.drv /tmp/guix-tests/store/psqszs75zic5lxkw9nf654xmajg6pq81-guile-cairo-1.11.2.tar.gz.drv /tmp/guix-tests/store/w5g9vfpwj4n5kg5ay3b3wzac34zxhria-guile-lib-0.2.7.drv /tmp/guix-tests/store/sqq1f975w3mv5mhripygm7mf8qpingcp-guile-lib-0.2.7.tar.gz.drv /tmp/guix-tests/store/sxi5wqkgj4v0w92rdfglk4fpld1dh2lr-guile-rsvg-2.18.1-0.05c6a2f.tar.xz.drv /tmp/guix-tests/store/rfy46yh6r8lza6l20qyhjkw1pd2lwm0h-guile-rsvg-2.18.1-0.05c6a2f.tar.gz.drv /tmp/guix-tests/store/rdc732dgcpdp087ycy1j9rxvp8xg8n60-guix-artwork-2f2fe74-checkout.drv /tmp/guix-tests/store/yxaka5dzh5kh3zlpjkvrziib7lv5jhxa-guile-lzlib-0.0.2.drv /tmp/guix-tests/store/258q9gcnija62sq31aqiflkvlzr1227s-guile-lzlib-0.0.2.tar.gz.drv /tmp/guix-tests/store/xgv6x1w0p18xidfkvd8skb1ksvpwln8j-lzlib-1.12.drv /tmp/guix-tests/store/6xijr98z01455mpp61fdcb6rrd7ivgfv-lzlib-1.12.tar.gz.drv /tmp/guix-tests/store/yyjr2rikcc16qvb2anc60jfv7f8k3f82-guile-sqlite3-0.1.2.drv /tmp/guix-tests/store/i9vlr1isl4chnqcyqr031bvzcv2vzw83-guile-sqlite3-0.1.2-checkout.drv /tmp/guix-tests/store/mc3gnkfpjwnglbs46ka049kl8ghnzmd4-patch-2.7.6.drv /tmp/guix-tests/store/pksym19g14alxabzbvkvdvbhdbmii5rf-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/nhbr7xzlz6hai88brw7klrhn0jhkbvjj-sudo-1.9.8p2.drv /tmp/guix-tests/store/w5csmfhyia8irry3sx36kyfly8bdardw-sudo-1.9.8p2.tar.xz.drv /tmp/guix-tests/store/1wx1ypdnq8nh1c6p5ys9m9pl1k8dzzd5-sudo-1.9.8p2.tar.gz.drv /tmp/guix-tests/store/rkkpd7b5xklw29fxsxnfb3ajdv8yfzj4-man-db-2.9.4.drv /tmp/guix-tests/store/3qvn6zj3apw6vnprlj7akinpwzz1ky5x-man-db-2.9.4.tar.xz.drv /tmp/guix-tests/store/f1w548d30n4p6zjd573aw5vlvxzkflwz-libpipeline-1.5.3.drv /tmp/guix-tests/store/mhpl6hr81nh5hc3nz8fmszf44aq2s52d-libpipeline-1.5.3.tar.gz.drv /tmp/guix-tests/store/gy4ky336kyffswp0864rnzm12j7lbcgx-groff-minimal-1.22.4.drv /tmp/guix-tests/store/rmcpxjv7lz78alzgsa3nspqqggjkxy02-info-reader-6.7.drv /tmp/guix-tests/store/rszwyvn10fsx28m5yvf3vyfsk0vkday7-screen-4.8.0.drv /tmp/guix-tests/store/7276si8g9hd4lk26fikp0343yb9r0ism-screen-4.8.0.tar.xz.drv /tmp/guix-tests/store/i6i9skxd1glamnr729acbvxc1jb1y9jg-screen-4.8.0.tar.gz.drv /tmp/guix-tests/store/vsjakghydi7drfic19zf183zr36qahyd-module-import-compiled.drv /tmp/guix-tests/store/y3b6ydmh2hdj6nqh227fpj8888d2c3xc-guix-1.3.0-16.10ceb3e.drv /tmp/guix-tests/store/63ckcgkk5ijfa36g3dyhmlmnrk7abgmc-po4a-0.63.drv /tmp/guix-tests/store/6nj6iyr7sz14c5f2k7msc6ndjiy1qrhf-perl-yaml-tiny-1.73.drv /tmp/guix-tests/store/45874z6j6ciq0icn8948ddgdmy1694ix-perl-module-build-tiny-0.039.drv /tmp/guix-tests/store/4im5a7k6i44w2bljzgqn2ghnkxwwsdfy-perl-extutils-config-0.008.drv /tmp/guix-tests/store/vb8848zak89z3nx252zaz0y0sjgdbpvg-ExtUtils-Config-0.008.tar.gz.drv /tmp/guix-tests/store/6n18xi6c762cp844w1agg5idgmrfg421-perl-extutils-helpers-0.026.drv /tmp/guix-tests/store/z0kd4sn8br12bvkb35ylx5rybc8gklrj-ExtUtils-Helpers-0.026.tar.gz.drv /tmp/guix-tests/store/qmp6jql1j4kka5yrgga5swpqq6926afn-perl-test-harness-3.42.drv /tmp/guix-tests/store/fnlqg74kjfkr0gihaiwshlj65xg66cj8-Test-Harness-3.42.tar.gz.drv /tmp/guix-tests/store/v7ihwlr46p6wwl5gl0b3pnqrpjch161i-Module-Build-Tiny-0.039.tar.gz.drv /tmp/guix-tests/store/zsgdjw0wr9cha4pdg2wa713ks6hnw5rg-perl-extutils-installpaths-0.012.drv /tmp/guix-tests/store/mzydy96wv31ywvmkfhhp751c4a3rhzf4-ExtUtils-InstallPaths-0.012.tar.gz.drv /tmp/guix-tests/store/5y526jl2bqx3clzmhbd57v02fxm6g360-perl-json-maybexs-1.004003.drv /tmp/guix-tests/store/2xz243rz372nfklmxnf0j24b6ap4bl1i-perl-common-sense-3.75.drv /tmp/guix-tests/store/98aglcvvvzp84x4d0p668zcqz5slpzzx-common-sense-3.75.tar.gz.drv /tmp/guix-tests/store/52qybi82wbbzywxl3i7yv8m9qvjmlsln-perl-cpanel-json-xs-4.26.drv /tmp/guix-tests/store/dhnkqxymyvz07mql9iad6vz8lghd8i47-Cpanel-JSON-XS-4.26.tar.gz.drv /tmp/guix-tests/store/hhzqy622w8cbmf4y8jbsrab46z54i0rj-JSON-MaybeXS-1.004003.tar.gz.drv /tmp/guix-tests/store/anmgahzgf5l9kvvbfnmlnz4paw2k1r8v-YAML-Tiny-1.73.tar.gz.drv /tmp/guix-tests/store/cdn7gdddp9y786zflmxn81w5pbhplhdv-texlive-tiny-59745.drv /tmp/guix-tests/store/cgg0kzlydxngwl9l67y40phnqac1canj-po4a-0.63.tar.gz.drv /tmp/guix-tests/store/82pm5vc49x4r60d1di2z9a907lc75xgz-disarchive-0.4.0.drv /tmp/guix-tests/store/iss4xrhwpd6bfwpfnympa1f77av2ic3h-disarchive-0.4.0.tar.gz.drv /tmp/guix-tests/store/kf64bmmfykhkpsrgl20kskilfdkwk86i-guile-quickcheck-0.1.0.drv /tmp/guix-tests/store/7vbd1f8krir5jqccz3mxq0044bwc7ihd-guile-quickcheck-0.1.0.tar.gz.drv /tmp/guix-tests/store/lpy7vlz5wd3rih2as1xb41lkf9mmq329-guile-lzma-0.1.0.drv /tmp/guix-tests/store/xfb2vf4yh9s94j9ipc54riak27qh1d92-guile-lzma-0.1.0.tar.gz.drv /tmp/guix-tests/store/i8lwzllyh801gnyig9qg2ssrxp4w04qm-guix-1.3.0-16.10ceb3e-checkout.drv /tmp/guix-tests/store/7w5akmhcxgj5kwk8i34l4ar0347fwxas-module-import-compiled.drv /tmp/guix-tests/store/gs1yf3z7qns4md3i0xd09l1fhsks3lf1-guile-gdbm-ffi-20120209.fa1d5b6.drv /tmp/guix-tests/store/ixizak8jmhxlx20a6mfhjyfpyvfymk31-guile-gdbm-ffi-20120209.fa1d5b6-checkout.drv /tmp/guix-tests/store/3mkzj099x06c836655r5m1dwk8nnwi2f-guile-gdbm-ffi-20120209.fa1d5b6-checkout.drv /tmp/guix-tests/store/jn061ljmq78h8q0d8hkhz7hc82nb4s0y-module-import-compiled.drv /tmp/guix-tests/store/cld8755d816g44s676k5qjlbk1l8b8g8-etc.drv /tmp/guix-tests/store/2m1ql8hihw0jqbl1npn9wnyziz8g1n5w-pam.d.drv /tmp/guix-tests/store/1801p42rgy9mkkpdf9bmzrgk41fna0bc-groupadd.drv /tmp/guix-tests/store/5jybgg7awqw792vb8gk74i1kny6f087i-groupdel.drv /tmp/guix-tests/store/63zwpr2yb02fg2fjyzfmyl7sby5wpcg9-userdel.drv /tmp/guix-tests/store/9v5ds3f9pa7na20wmfrg0l2qsjxdpzi7-passwd.drv /tmp/guix-tests/store/c1i43n1ip1s8ppmc13igxgzj61c2bffl-other.drv /tmp/guix-tests/store/fsbvj9x1yz3pvvgy5xq70c91cfmy2brq-useradd.drv /tmp/guix-tests/store/jx9xjzd42063rhjap04wrgwrnn1qivsc-su.drv /tmp/guix-tests/store/kiir5fzsm7806lpi2ybimd0g42amy8ai-sshd.drv /tmp/guix-tests/store/n3nc4rvccdncrsycb0lwavd83fabk81w-login.drv /tmp/guix-tests/store/nwy8z7fv1dw5y94p3icw7mw749pk4nj6-sudo.drv /tmp/guix-tests/store/wzlh1j5xv051jxjxj4mn002lz969xsx8-usermod.drv /tmp/guix-tests/store/zx1d38g65ycdx57c6jk9yabk82yfzlvr-groupmod.drv /tmp/guix-tests/store/3dppzrmjipl215357m62qp0rxxqcigkl-skel.drv /tmp/guix-tests/store/6cf0y7mj0v5xnr1ffmjcjcpvsn1w7w9a-environment.drv /tmp/guix-tests/store/7qv90bcv227gavlbhlp0yx7j58h8zs3k-shells.drv /tmp/guix-tests/store/gibpg9bbb294maqsf1nh5nd5hy8zs9xf-profile.drv /tmp/guix-tests/store/jbfzgwqm2x8lwj1l0rawqv9dz2cmbjkq-sudoers.drv /tmp/guix-tests/store/lbhq0w2q30ahgxldp37gqczyknn4rhvb-rottlog.drv /tmp/guix-tests/store/njg93x7nvmxyqhyvdd4lgg9m2qc1yqzj-rottlog.weekly.drv /tmp/guix-tests/store/fz21mf3w5scnc69n1cdxxnc9yswc1822-rottlog-post-rotate.scm.drv /tmp/guix-tests/store/gqljhg0j9dp4nb5fcv9awlc9sq0bh9d7-raw-initrd.drv /tmp/guix-tests/store/4wzg2f1zv056ywpd9mpfrv9d4hkq2axq-guile-static-stripped-3.0.7.drv /tmp/guix-tests/store/1xq5rs4pscsgszmlc5izml9nrjhbifs2-gcc-7.5.0.drv /tmp/guix-tests/store/4572swx6ia9g2dqq8b5hcrazzv8v3w1n-glibc-2.33.drv /tmp/guix-tests/store/gq5b77lk64cqf8mhkd32jxp1i741cpdz-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/smsrnlbqgsjzl9n9sggv6dv7y7m9azpg-gcc-7.5.0.drv /tmp/guix-tests/store/7dl30lqn8x1ripjzbgpkfz9xmlm707zy-gcc-7.5.0.tar.xz.drv /tmp/guix-tests/store/4s95n8zhs5b2m4sj0q1kgkgy48vncpas-gcc-7.5.0.tar.xz.drv /tmp/guix-tests/store/21i644r94x8gswgmc5iss8wa62h0ncy4-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/ciyddip3x717k9g3i8f3a2gx14r5mi86-libunistring-0.9.10.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/d1mj63gqs8izim6ky57bk41xg6yzgdvj-pkg-config-0.29.2.drv /tmp/guix-tests/store/jbg2790c8haz1gl5k3lyr1s1z6wyiw4g-bash-minimal-5.1.8.drv /tmp/guix-tests/store/m2nrfckb4ff4r12m0mx77rlffdqql13c-libgc-8.0.4.drv /tmp/guix-tests/store/rg94n3mpkxblliwvg12mbvc0kzpdcn9s-libffi-3.3.drv /tmp/guix-tests/store/v1rvwqa4brbhfafr01i17vwsg0z5aprk-guile-static-3.0.7.drv /tmp/guix-tests/store/wwml7vs28raxr0mdyc9kb423n8j12gh9-init.drv /tmp/guix-tests/store/0f7a6d6qc2jc6mgirglfr023m74iji8f-linux-modules.drv /tmp/guix-tests/store/b9qd33i2s5jxl3cs7sgkwibdivbhrh19-module-import-compiled.drv /tmp/guix-tests/store/s26lr7s069dwydznixz07bn0qmpcbigp-linux-libre-5.15.10.drv /tmp/guix-tests/store/g525wv7c3dya1ccwbp1p1b62whyn9dqc-linux-libre-5.15.10-guix.tar.xz.drv /tmp/guix-tests/store/c3s808k5xvc9lxy2ckdj8ryw15n8klni-linux-libre-5.15.10-guix.tar.xz.drv /tmp/guix-tests/store/4l57v4b3a4s1r0kfj2pvcln9m1pykbw9-linux-5.15.10.tar.xz.drv /tmp/guix-tests/store/wyirxncav87mpxzd77izq2lqwbzfhdxx-linux-libre-deblob-5.15.10-gnu.drv /tmp/guix-tests/store/ypxrlkgmmakhdma2k2b0s36bsna711hn-linux-libre-deblob-check-5.15.10-gnu.drv /tmp/guix-tests/store/rq0dwsih9817phny6kz3h9g9bk44gxs7-100gnu+freedo.patch.drv /tmp/guix-tests/store/zf7a8fgkq4w3cc44lsv934vmq47i85i5-linux-libre-arm-export-__sync_icache_dcache.patch.drv /tmp/guix-tests/store/a738f8asyhsl0frsgnrsqsanm1s8b4wc-e2fsck-static-1.46.4.drv /tmp/guix-tests/store/n8zb309g24wq727f3p4vlblkxxpsrqvf-e2fsprogs-1.46.4.drv /tmp/guix-tests/store/wzknjvhwrxp782k4kqqvs8mjmb1vcr03-module-import-compiled.drv /tmp/guix-tests/store/yf3l8m0wqkd1wc1r4zns4bzgsj78fis8-module-import-compiled.drv /tmp/guix-tests/store/kbavs71sb6q68bdlkslvgq1haqyijc20-boot.drv /tmp/guix-tests/store/lbh5yx6zav9hazggph2ipb4mj7skrn74-activate.scm.drv /tmp/guix-tests/store/1qynvw49rnrf8gbdfmql9wr0qnxs3z6z-activate-service.scm.drv /tmp/guix-tests/store/9v8f9qlfdkr0p0gh4hca2k1qqbij9m1a-activate-service.scm.drv /tmp/guix-tests/store/lfl2z97yr6r6iva1v2y4c851mcy84xhn-module-import-compiled.drv /tmp/guix-tests/store/dagrabysflq2f1lqp1z7hcr3i71gyfca-activate-service.scm.drv /tmp/guix-tests/store/4qvvh9dz4v6zyzr2kbqmhl2ssip5iy07-firmware.drv /tmp/guix-tests/store/kdqkirpml4xd4zich6i035lbxwkxdkff-ath9k-htc-firmware-1.4.0.drv /tmp/guix-tests/store/2vamx6irh3ynkmv05c430c73f2lsr0gj-ath9k-htc-firmware-1.4.0-checkout.drv /tmp/guix-tests/store/jipfzcdv5yj6jx7ld7j1s6r0r28xk1aa-ath9k-htc-firmware-1.4.0-checkout.drv /tmp/guix-tests/store/n0cw1a60ypwh557mjwg12h9mzyg4sdad-binutils-cross-xtensa-elf-2.33.1.drv /tmp/guix-tests/store/c7xkbfszmjr7mg5pgs4k6f25wa98arfp-binutils-2.33.1.tar.xz.drv /tmp/guix-tests/store/7mdbc0654zq1wjaprrfnj2w7nq1zkljz-binutils-2.33.1.tar.bz2.drv /tmp/guix-tests/store/x49j6ldvjf5f5zpac42c9fbrjlaq3s06-gcc-cross-sans-libc-xtensa-elf-10.3.0.drv /tmp/guix-tests/store/3nvq0gkam8k20l0gc48hfjslcmgshixk-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/d8l1jxzqd20ma3d5nl3mchwgkm713w1y-module-import-compiled.drv /tmp/guix-tests/store/x20glm8arvb8v6pdhmnrzhc14k2hvbmw-ld-wrapper-xtensa-elf-0.drv /tmp/guix-tests/store/ncmzhy0y3xzg06mdwczx58c6nvy7n1hc-openfwwf-firmware-5.2.drv /tmp/guix-tests/store/l94sp53jfs13h8a3k23n49ygs1r3brwz-openfwwf-5.2.tar.gz.drv /tmp/guix-tests/store/n8545gsxsna2wkav1yd20m56dz2c8yiz-b43-tools-0.0.0-1.27892ef.drv /tmp/guix-tests/store/8si0b4bx61imy7p8k6md8ijb7ndxwh0s-b43-tools-0.0.0-1.27892ef-checkout.drv /tmp/guix-tests/store/g1cqpg3fg2znbxk90bvfagvnz7imwicn-activate-service.scm.drv /tmp/guix-tests/store/3hpca7axi08bvdy48v06w93l7i656dyf-module-import-compiled.drv /tmp/guix-tests/store/g9ws9av5p2sbb2adax0pq102bsv2xnj5-activate-service.scm.drv /tmp/guix-tests/store/a36ahix369ycji7lmdrjb2291ly1r537-openssh-authorized-keys.drv /tmp/guix-tests/store/w8wl3kwvpi52iihxa2nsmb1dnwj25fli-module-import-compiled.drv /tmp/guix-tests/store/h5is9jxkjwvqb9107bfzmwy5h04wcl1x-activate-service.scm.drv /tmp/guix-tests/store/hxnjyfvkybzwxqknil19wflaqad64jxp-module-import-compiled.drv /tmp/guix-tests/store/jv51zjsr89bn1qq2mi0x7kwly2z6fdfs-activate-service.scm.drv /tmp/guix-tests/store/m8h9xj59lg60wiy28j1zma3ijv1x3rhp-activate-service.scm.drv /tmp/guix-tests/store/nnxl09npxwmswwkl6kwa3jzqwf7hh376-modprobe.drv /tmp/guix-tests/store/p7ls8mpcjih57blfqpwq4imfgz7q1j7c-activate-service.scm.drv /tmp/guix-tests/store/s1j1919p16apd1cpxz1ibmj4shc5i18p-acl.drv /tmp/guix-tests/store/7igz808sygf9kiwhj7fjw71s5g0imsx2-module-import-compiled.drv /tmp/guix-tests/store/inki0769jxfpvzbk8jm3sky0mfgj2bk0-module-import.drv /tmp/guix-tests/store/nvdsinzzwlmp3vzpgnmjk6kxg91n45k3-shepherd.conf.drv /tmp/guix-tests/store/05ir128ki8dr8az3x8cx9mi8q64kwjkz-shepherd-file-system--dev-shm.go.drv /tmp/guix-tests/store/rmb5kxipybpdm48wdc208vvyqn78mdma-shepherd-file-system--dev-shm.scm.drv /tmp/guix-tests/store/hnzl0dlchng6cm4fznzxfl3pyjnfl5f7-module-import-compiled.drv /tmp/guix-tests/store/s3w6qpdrf58sqh37nz0wl21r5rharc7k-module-import-compiled.drv /tmp/guix-tests/store/0ca6ykz8b0rpij105amxqs8zcbra70ab-shepherd-file-system--sys-firmware-efi-efivars.go.drv /tmp/guix-tests/store/m60pqqzv507p7i4waffysnpv1pas8xsn-shepherd-file-system--sys-firmware-efi-efivars.scm.drv /tmp/guix-tests/store/3vwj5gh0ly4k54d79lnas10lhpsh1h8n-shepherd-ssh-daemon-ssh-sshd.go.drv /tmp/guix-tests/store/qhz8rmibl18fz0gp182lh82m6jqkiliv-shepherd-ssh-daemon-ssh-sshd.scm.drv /tmp/guix-tests/store/9zlxc9kgswhccf9192kd9xrk5l9dsi0s-module-import-compiled.drv /tmp/guix-tests/store/cjvr37h88p5d4l8kxgq0a1g0d24h2iqz-sshd_config.drv /tmp/guix-tests/store/wjvppjq14hm9vyymkmd5qsswyy7i17c0-module-import-compiled.drv /tmp/guix-tests/store/3wxv95j50h8xrn3q433rp99271va36cp-shepherd-root-file-system.go.drv /tmp/guix-tests/store/q4nbrgc4fcngi45pv3bsg443zxwdgs8v-shepherd-root-file-system.scm.drv /tmp/guix-tests/store/43n8rf46bh4171js8fz0ixqcrjlyfj7p-shepherd-networking.go.drv /tmp/guix-tests/store/l60b8wx684a63s19r1cfdqd3zgbrm8gf-shepherd-networking.scm.drv /tmp/guix-tests/store/4vhn8mvz80advyy97b73grrr3xa3vilx-shepherd-nscd.go.drv /tmp/guix-tests/store/gnmakai7cxbzdkr5sww1wvpwjgqiz02r-shepherd-nscd.scm.drv /tmp/guix-tests/store/527fsfhxc1a9ryn5a8lrdbxs7fy83l64-shepherd-term-tty6.go.drv /tmp/guix-tests/store/h4k92vm8jjx4lsr66mzc65mirip3j4bw-shepherd-term-tty6.scm.drv /tmp/guix-tests/store/4dsmds0m1lirgl0nzdl57n5siwm2mz6d-mingetty-1.08.drv /tmp/guix-tests/store/14ixg3cp2fpdijzbk4d8qn9s9w4g88yy-mingetty-1.08.tar.gz.drv /tmp/guix-tests/store/547904qqk8m4gwqcmq1l48qy65fn7m22-shepherd-console-font-tty5.go.drv /tmp/guix-tests/store/kay6v2f8rhvj72w9m0ya88l519l1nxrd-shepherd-console-font-tty5.scm.drv /tmp/guix-tests/store/5vqc6xw2jpgqjxdm139ymzsayahh85s6-shepherd-host-name.go.drv /tmp/guix-tests/store/biazzd70mz67kq1kmwkqr857gqhhha0x-shepherd-host-name.scm.drv /tmp/guix-tests/store/9k8abzivz7v3x5m063cs9bnbsgbc0v0g-shepherd-syslogd.go.drv /tmp/guix-tests/store/rl8jfgwli3pfma3clksfld2hl2jrzp67-shepherd-syslogd.scm.drv /tmp/guix-tests/store/apjyy2r0k8s2ki9brz7l6092hdjsiggj-shepherd-urandom-seed.go.drv /tmp/guix-tests/store/024h3c4zjgslinr3nvh41wg6chz9c1ld-shepherd-urandom-seed.scm.drv /tmp/guix-tests/store/arczysi6hsqpawaa2kvsrqzkhhvymmh1-shepherd-guix-daemon.go.drv /tmp/guix-tests/store/m1p951xfjd1nwwlx8b5589f3jz8qqvdz-shepherd-guix-daemon.scm.drv /tmp/guix-tests/store/mwd8vj7h4rslp4qkri4dk8hnrfrj1ql1-module-import.drv /tmp/guix-tests/store/n3rn9ipfychllr8dar2rxcxx43kmxhbg-module-import.drv /tmp/guix-tests/store/ncd2b6k55azqmrzyllsjzdry93l77qn4-module-import-compiled.drv /tmp/guix-tests/store/qa6rw3g1mi42p1nycs51vgcgdaq7yk3d-module-import-compiled.drv /tmp/guix-tests/store/az7ixhj5r4raaww4cyx7w14qhd5r2n6v-shepherd-user-homes.go.drv /tmp/guix-tests/store/b9c4glp7wd8gsi12qzhzrgy9jzkc28fn-shepherd-user-homes.scm.drv /tmp/guix-tests/store/awzwm1qisdwgnnk1g39nf7i7dj0d91pz-module-import-compiled.drv /tmp/guix-tests/store/byib2n10y4vamwnc2mcjdll09sbw6z6a-shepherd-console-font-tty6.go.drv /tmp/guix-tests/store/9vhvzlzhz3pdi68rrhhs3kd444gvinzx-shepherd-console-font-tty6.scm.drv /tmp/guix-tests/store/d4llci3g9kqg8flzyiwy09ipkpcc14nm-shepherd-user-processes.go.drv /tmp/guix-tests/store/7kp78i7w8aj42n1d16bmnkbyxqz0f8h5-shepherd-user-processes.scm.drv /tmp/guix-tests/store/fa2ivfg3wxaw1bdq92jgl7hccbhr97c7-shepherd-console-font-tty2.go.drv /tmp/guix-tests/store/9snwb94i9ki1d18cf334ag9h4l3k3kc6-shepherd-console-font-tty2.scm.drv /tmp/guix-tests/store/fk7g2kb2sl9vwx52hyh5p19l9ksssgby-shepherd-loopback.go.drv /tmp/guix-tests/store/fx8kksvnkmalymxdy5q6al4lypygg656-shepherd-loopback.scm.drv /tmp/guix-tests/store/wdqm8d00abcy2f42bd4xl2wgvzp9nwmx-tear-down-network.drv /tmp/guix-tests/store/70212b113v6pbzc9n1avcvv9574bcdw3-guile-netlink-1.1.1.drv /tmp/guix-tests/store/38ajypya8gkjcz69h2ykiz4vvyac60qq-guile-netlink-1.1.1-checkout.drv /tmp/guix-tests/store/rrgm2mnmwsvnk596zmczk01v8fjkmvw8-module-import-compiled.drv /tmp/guix-tests/store/zjdznqsi1w8zwx2zslr7k6064ss1cqk9-set-up-network.drv /tmp/guix-tests/store/fpmxhh6ga5nlz0prh1kf2qc4f8qfpnsw-shepherd-console-font-tty3.go.drv /tmp/guix-tests/store/1hl7s95cnqvbnxlm543c7l33dkhflzgq-shepherd-console-font-tty3.scm.drv /tmp/guix-tests/store/h73ms04dmx1p014idk4k91bpairnil0l-shepherd-term-tty5.go.drv /tmp/guix-tests/store/vx60047x7pmyc4hm8vjdd4jcq70bqk9d-shepherd-term-tty5.scm.drv /tmp/guix-tests/store/hqch2hp1m5llqm0acfasi1xajb6wknvk-shepherd-mcron.go.drv /tmp/guix-tests/store/ijaisd847p10ccmkv04g64vgy72465b0-shepherd-mcron.scm.drv /tmp/guix-tests/store/b43n0fg0fmrn27znbq52mcj88s3mj2ri-mcron-job.drv /tmp/guix-tests/store/hgrp4wgiv8idb9rb0r3568r5nxpqxjxv-mcron-job.drv /tmp/guix-tests/store/if9ayb04iq839vzv37m306y6fifaf7l6-shepherd-console-font-tty1.go.drv /tmp/guix-tests/store/yrcchip5rj5w5fiyz01qcg2p1scd66a5-shepherd-console-font-tty1.scm.drv /tmp/guix-tests/store/jr0mbbpnsg45gjksxppchpkz497qqdsa-shepherd-file-systems.go.drv /tmp/guix-tests/store/i52rzjn72c2cdg9fk3ah922by5pnaynk-shepherd-file-systems.scm.drv /tmp/guix-tests/store/jy1zmy6w6n2b73ccz9fzqfqj718ahz95-shepherd-user-file-systems.go.drv /tmp/guix-tests/store/ysmdg2lv1lfsi3a9dfbj7jmz5xfq6a32-shepherd-user-file-systems.scm.drv /tmp/guix-tests/store/mi34xy94z2idqnbqss3lsrlywv56sc7j-shepherd-file-system--tmp-guix-tests-store.go.drv /tmp/guix-tests/store/5j4ys8qlg5hpgkwfiik0zg95f7iq5px5-shepherd-file-system--tmp-guix-tests-store.scm.drv /tmp/guix-tests/store/nhjsrkydg2j1p54nqy5h2a5azizvd4zg-shepherd-udev.go.drv /tmp/guix-tests/store/v843clfqz2gpjl147fns238qmh75jglw-shepherd-udev.scm.drv /tmp/guix-tests/store/gz0wkf28v9ss6d1m1ahmldss9v7v9nr7-module-import-compiled.drv /tmp/guix-tests/store/kvr4avidix1mdgbcsmszc7yra91fhs6m-udev.conf.drv /tmp/guix-tests/store/yhlcwiwmvy6as110708n8pw02sgpn6sy-udev-rules.drv /tmp/guix-tests/store/5iq94vsvj9g5ylvnsxjk0vhrnjlvyldx-alsa-utils-1.2.4.drv /tmp/guix-tests/store/k9nqv6vwwgl0n8gyz8nvb1zgmi6rbvff-libsamplerate-0.1.9.drv /tmp/guix-tests/store/zg3djdgc9s0ybi3blbzwdkz8dbqpgnfq-libsamplerate-0.1.9.tar.gz.drv /tmp/guix-tests/store/pcblm0sf6g0dyx84plphsfrd57wbyhhs-alsa-utils-1.2.4.tar.bz2.drv /tmp/guix-tests/store/lylq6cmrlfgivgqw07lpk3x36r083biy-crda-3.18.drv /tmp/guix-tests/store/0iy3553svn6qaxsqi34sqmqvspxy380m-crda-3.18.tar.xz.drv /tmp/guix-tests/store/z76fdjjwhsyjfp13g6ybycbg5nnfdggn-crda-3.18.tar.xz.drv /tmp/guix-tests/store/8vaqpglndqjj0lkgjndsg0hdp916jhjr-wireless-regdb-2020.11.20.drv /tmp/guix-tests/store/g1nfrbbdvddf9b4l5xbkgvpfhcdmnbmd-wireless-regdb-2020.11.20.tar.xz.drv /tmp/guix-tests/store/v4xazqky7750pc2qqf65nxhy8hzan2hv-wireless-regdb-2020.11.20.tar.xz.drv /tmp/guix-tests/store/wkkacc1g5x79gmxzisrm1hiwvyd64z4k-90-kvm.rules.drv /tmp/guix-tests/store/x9hvp3w74msfmhs3xi75rkf66chaw3si-module-import-compiled.drv /tmp/guix-tests/store/q22xja91xjgrjpaqvin3m3dla49b21hy-module-import-compiled.drv /tmp/guix-tests/store/pad8kcbkbs2mfgq8i1p4jxmr7c0vybfy-shepherd-file-system--sys-kernel-debug.go.drv /tmp/guix-tests/store/x772778v7ymnbmf6nff5kpvr13hbbxjj-shepherd-file-system--sys-kernel-debug.scm.drv /tmp/guix-tests/store/pas05i4iawcrzw3350h9r98fhj1m25nf-shepherd-file-system--dev-pts.go.drv /tmp/guix-tests/store/5rzi4ah3nah2ll3cc929fd4pdin9kifs-shepherd-file-system--dev-pts.scm.drv /tmp/guix-tests/store/pq15nn0yafddgpjy1dji5xxisinwwa8f-shepherd-virtual-terminal.go.drv /tmp/guix-tests/store/9fd06g155i7qp3aylnahdydypqsj2pfc-shepherd-virtual-terminal.scm.drv /tmp/guix-tests/store/pr1dapi4sz132sn79d256w48cxmfb4wx-shepherd-sysctl.go.drv /tmp/guix-tests/store/jvafzs09sf1rcj3a4prlagx6axbg84s0-shepherd-sysctl.scm.drv /tmp/guix-tests/store/52xsdyhmp3a5bkgj7jv734lrav9rbdnb-sysctl.conf.drv /tmp/guix-tests/store/r7vc685nkwa2v69889231bkchs3kbvry-shepherd-term-tty4.go.drv /tmp/guix-tests/store/3n75qdjnjgrkgcyqf324fq2lzxrzwld0-shepherd-term-tty4.scm.drv /tmp/guix-tests/store/s6lf90dgc1yjrvk78qiiw8bwf26q2i5a-shepherd-term-tty1.go.drv /tmp/guix-tests/store/9820wvllafyjjwki5nq1iqwm0kvv96d3-shepherd-term-tty1.scm.drv /tmp/guix-tests/store/wimi96my5cykp1vc5kixbyixfn2kkkf1-shepherd-term-tty3.go.drv /tmp/guix-tests/store/k5lvc8dasymviiakx0czajyxi0wkb4rv-shepherd-term-tty3.scm.drv /tmp/guix-tests/store/zd9fiqilx60yn7czrili99f5mwvikmx6-shepherd-console-font-tty4.go.drv /tmp/guix-tests/store/4y1w31irbp5ffc9zgajqr4hhm9fv4qf0-shepherd-console-font-tty4.scm.drv /tmp/guix-tests/store/zdsljy9svpkrdgqahcp79dfvi71jywa3-shepherd-term-tty2.go.drv /tmp/guix-tests/store/2cwsmqjlknkgc63dpvm5v2q0ikzgdvl4-shepherd-term-tty2.scm.drv /tmp/guix-tests/store/zy7dc1pjjii1vz875wcm83aywz0g0nl4-shepherd-term-auto.go.drv /tmp/guix-tests/store/agay8h16f1nnvhp4l1fni967l3z0fc3g-shepherd-term-auto.scm.drv /tmp/guix-tests/store/wqjfykadv11c1876h8sr0ahfbwafb326-profile.drv /tmp/guix-tests/store/yvjn13x12nsi8ngaa87jp953jglzvnv2-parameters.drv /tmp/guix-tests/store/pnpm7w5kx9l3hi2n8xmv5mj9a4gwy8h9-grub.cfg.drv /tmp/guix-tests/store/mxfwy05ifpzrvhn6k7gnr6p3m7qrqpyx-grub-image.png.drv /tmp/guix-tests/store/rc9hicqj729h2243jzhicph6r2za64y9-module-import-compiled.drv /tmp/guix-tests/store/v44f8if1iqdqg3lq8yyq67wf66cv7z9x-grub-locales.drv /tmp/guix-tests/store/xbz63n46c8wc3kn1qsxylnsph9w6nr9r-grub-2.06.drv /tmp/guix-tests/store/v8k63mzx9dvxq2afyv4pjpq8b8dj0165-fakeroot-1.26.drv /tmp/guix-tests/store/8xk6fb9bwny377v0mb2qhlqznfaj56pa-autoconf-2.71.drv /tmp/guix-tests/store/ccv9fgnxwxiz328h7a0p78d6lvi8y0jc-autoconf-2.71.tar.xz.drv /tmp/guix-tests/store/mp6vvksgvkd6qq5h907crxr8xdgkx0vy-fakeroot-1.26.tar.xz.drv /tmp/guix-tests/store/ixb5l7ybyn4ilwjy2nvhmirs40f4nqnl-fakeroot-1.26.tar.gz.drv /tmp/guix-tests/store/zwqg6wjkj8a2hgi3w88fgglfj4rk83r3-module-import-compiled.drv /tmp/guix-tests/store/rz0a6hrnhfwn0x3q5g84x2n6ahvn2jmc-partition.img.drv + for example in gnu/system/examples/*.tmpl + echo gnu/system/examples/bare-hurd.tmpl + grep hurd gnu/system/examples/bare-hurd.tmpl + target=--target=i586-pc-gnu + guix system -n disk-image --target=i586-pc-gnu gnu/system/examples/bare-hurd.tmpl accepted connection from pid 13472, user nixbld guix system: warning: 'disk-image' is deprecated: use 'image' instead spurious SIGPOLL substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable substitute: guix substitute: warning: authentication and authorization of substitutes disabled! The following derivations would be built: /tmp/guix-tests/store/8dymgkyp0ddligzwx3xyhsii4c0gd85c-disk-image.drv /tmp/guix-tests/store/23k5bd2sk1mlimyvv2hvihbki4i8j8cl-guile-gcrypt-0.3.0.drv /tmp/guix-tests/store/21pmnj5l8wwv9j6565ami62ql6rdbivp-gzip-1.10.drv /tmp/guix-tests/store/5rffkc4lx8d86gj4fa4rvg0spps1p4v0-file-boot0-5.39.drv /tmp/guix-tests/store/3drxkc76igrw1fi4hblngm7lmwzvhbfg-gcc-bootstrap-0.drv /tmp/guix-tests/store/d6f0fa8x4if8asg5sf69aqma7nm265a0-glibc-bootstrap-0.drv /tmp/guix-tests/store/jvxnnz4bmgqfh6m8cgmmlv94pi68gwxl-glibc-2.25.tar.xz.drv /tmp/guix-tests/store/hcvxcl1hwj875z5f1h35f32khxafr9lc-gcc-5.4.0.tar.xz.drv /tmp/guix-tests/store/5h5z1far1zz5lb9z2aqj8w711z3qisnx-module-import-compiled.drv /tmp/guix-tests/store/6lwnac3ga3qs598j99n3vfc96fqi554h-file-5.39.tar.gz.drv /tmp/guix-tests/store/8j2q9fv5azb6sclr1b6ypjybpjybwb84-make-boot0-4.3.drv /tmp/guix-tests/store/irmyrsqw0m0mk8swb00ryf3ic6pqw2jf-bootstrap-binaries-0.drv /tmp/guix-tests/store/4x2n9xjb3qqm34vc9k2c1w9b9xm46agx-static-binaries.tar.xz.drv /tmp/guix-tests/store/msy4c035ih8ss7w3mazn0y6cvrwrmazj-binutils-bootstrap-0.drv /tmp/guix-tests/store/zr43wy48bl6lhld21ajilvj895q7jsqa-binutils-2.27.tar.xz.drv /tmp/guix-tests/store/vdg7a9kpy8rs12abqjyxr7d5idcwci68-make-4.3.tar.xz.drv /tmp/guix-tests/store/wy7isgmjyiwbzsyx1f3bmhw4kdi65l7i-make-4.3.tar.gz.drv /tmp/guix-tests/store/5rx3i7c94a787lns10xwgim1hq84m7v1-binutils-cross-boot0-2.37.drv /tmp/guix-tests/store/gp2iyp8vzj2904mha81vsx3a5l9ndkcq-binutils-2.37.tar.xz.drv /tmp/guix-tests/store/vj5dqqhka5p7qi20kh32396bd1y127al-binutils-2.37.tar.bz2.drv /tmp/guix-tests/store/p677ngbz80k4ld9dn87s65ni32v6lmjn-diffutils-boot0-3.8.drv /tmp/guix-tests/store/cpsrirfv2871swvx7slsdabnyma4h781-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/xsmnf0jmi7p4n60i8p1mkvpm05sp6a6w-findutils-boot0-4.8.0.drv /tmp/guix-tests/store/xl0b647qzhamil3s0w46970xp4lqzc09-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/m0hxwnqk3j0v7333n3ii2jqix1da025s-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/5w71j1ahwqsicxm3kvwcfak690fsdwm3-guile-3.0.7.drv /tmp/guix-tests/store/00rl26bz9iy645lfvjz3wz8zv2813cjj-pkg-config-0.29.2.drv /tmp/guix-tests/store/bhan5y2nxnwnz9bcxdy76h9rfq20wml2-pkg-config-0.29.2.tar.gz.drv /tmp/guix-tests/store/dp1ja89a8vkxgf1p4jc6r5ymaf3zf8qc-linux-libre-headers-5.10.35.drv /tmp/guix-tests/store/0nqx5jlmc5mk9nrfvab8sn3g33fssycs-m4-boot0-1.4.18.drv /tmp/guix-tests/store/6d9fq4zyksi8my2avvmf4ccca6x353am-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/wfv4vwpw1xv13b7yff3siichmhifi8j3-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/cxfvgfda8b95ld7yb98472bzr487akfl-bison-boot0-3.7.6.drv /tmp/guix-tests/store/dsmw8wfsxlq3nk1vrc8ni7a6387k0695-perl-boot0-5.34.0.drv /tmp/guix-tests/store/q45vcwi1vdnl1ivwaxk6v2xcd8xa4ang-perl-5.34.0.tar.xz.drv /tmp/guix-tests/store/aaqnz7s3w73pb173krlx673qpmism8f5-perl-5.34.0.tar.gz.drv /tmp/guix-tests/store/mzllf2r2i5rzjqy79fs13ny8vgn86qpr-bison-3.7.6.tar.xz.drv /tmp/guix-tests/store/k8iplw0kw2dmly8v5lamgplx04ggn15j-linux-libre-5.10.35-gnu.tar.xz.drv /tmp/guix-tests/store/s9pg6r6jza7r5f3m94k7sgwpynwpxwcd-flex-2.6.4.drv /tmp/guix-tests/store/d1zzhllih6bhzvnc80jsm43r9kmflr9z-flex-2.6.4.tar.gz.drv /tmp/guix-tests/store/ffc5rg7wnrjrpzrmbg22h351280xijm6-ld-wrapper-boot0-0.drv /tmp/guix-tests/store/fm6ink06dpxk87bqc6lgxx8ky74ia62x-gcc-10.3.0.drv /tmp/guix-tests/store/7khqqxqxi03q8abfi49crphk30wm65i8-mpc-1.2.1.tar.gz.drv /tmp/guix-tests/store/97d6m61x48g8n8fnrn0pqrhx2209110m-gcc-cross-boot0-wrapped-10.3.0.drv /tmp/guix-tests/store/ah3g5mnihalpr1sccip82sxfrr0vr1pz-gcc-cross-boot0-10.3.0.drv /tmp/guix-tests/store/a4v61rcb2masds25m6i38bk66xn7zgbg-gmp-6.0.0a.tar.xz.drv /tmp/guix-tests/store/xmsm1kzrmrari5chwcil4dgmrq8xjcqf-gmp-6.0.0a.tar.xz.drv /tmp/guix-tests/store/flzxa3z4k5qv55km5gwn4w4b5ncnsmwm-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/ix1j66481xr2xy267qj0b8c36a9yd7g7-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/vasq2n0j43fxvhr1gz3r8h7gfasq8j5r-libstdc++-boot0-4.9.4.drv /tmp/guix-tests/store/4pn6afwyavhi2fwggq250b9dkf4j9lj8-gcc-4.9.4.tar.xz.drv /tmp/guix-tests/store/ciw3b48qvhb5fx35hllb74czfcjp2zn0-gcc-4.9.4.tar.bz2.drv /tmp/guix-tests/store/z4vfg9vv6w1ak3j942b50z7a86f37qn3-mpfr-4.1.0.tar.xz.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/gm3v790gmxrcssw929w1dhinzph12gdy-gettext-boot0-0.19.8.1.drv /tmp/guix-tests/store/lvp6i19y0xxszb921nckl5hy0jwp3dlh-gettext-0.19.8.1.tar.gz.drv /tmp/guix-tests/store/gx0cfkdlx8ani5v80y7rcn25wcsak11j-texinfo-6.7.drv /tmp/guix-tests/store/v1diq15pcscjp1g1nba5difq7i5a8444-texinfo-6.7.tar.xz.drv /tmp/guix-tests/store/hnr0xg3bd3ba4qzrc71br1pywls01z9r-python-minimal-3.5.9.drv /tmp/guix-tests/store/dl06g703krs6wsjh13cil554baifr5v2-expat-2.4.1.drv /tmp/guix-tests/store/gckzpnh0im4a98l1c5r44g3442b20f13-expat-2.4.1.tar.xz.drv /tmp/guix-tests/store/ma9dns8jdkkvy3kvbiv0h6wbac88pi8a-Python-3.5.9.tar.xz.drv /tmp/guix-tests/store/qy27syldpl7c5amch4fx70b79pmxh0fi-Python-3.5.9.tar.xz.drv /tmp/guix-tests/store/j8bhbikxlay3j3q41qw0yl0gay5yrs6w-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/1yl394nf5ndwikn9c48d17fmbxfvcbgk-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/lrl0dhhb4072c0hrs81jl5sgks7a5nh4-bash-static-5.1.8.drv /tmp/guix-tests/store/0s1f5gk80rgqpvjbxf4ayf7vnjw71mxr-bash-5.1.tar.xz.drv /tmp/guix-tests/store/0614ryjqzr489495nq6d99jajmhqjiab-bash51-003.drv /tmp/guix-tests/store/2agrqh7i0sywnfv7f7b9m7mmgvmn8skw-bash51-007.drv /tmp/guix-tests/store/2rs4l6v390s5ybkypvpdikk34bfsb2wi-bash51-008.drv /tmp/guix-tests/store/8cd3hyh9h1dj3cndzrjwg82ry3k9fywr-bash51-004.drv /tmp/guix-tests/store/8cjan671yq08m76d7l0qrfjg5kg0i0f4-bash51-006.drv /tmp/guix-tests/store/90is400r9i58rv532wj0cm1yxyhfsw1k-bash51-002.drv /tmp/guix-tests/store/agfndag1jx1rlxnjzxm3ab4ncyk0ihb9-bash51-001.drv /tmp/guix-tests/store/hain1z6c9v2zgkxm57vabb8qiasgc44r-bash51-005.drv /tmp/guix-tests/store/vpym9p0qg5brhi62jqzjhggar0ika4zc-bash-5.1.tar.gz.drv /tmp/guix-tests/store/36i906s7ib2nj0gzzvw0hfyirrbx5lp7-glibc-intermediate-2.33.drv /tmp/guix-tests/store/7ky23iywrg5winwlpbgj5hl129qx13jw-gcc-cross-boot0-wrapped-10.3.0.drv /tmp/guix-tests/store/36i906s7ib2nj0gzzvw0hfyirrbx5lp7-glibc-intermediate-2.33.drv /tmp/guix-tests/store/d1b92fz4y431r62xsvkqbdd13i93lzfh-zlib-1.2.11.drv /tmp/guix-tests/store/ji48bhh10nv6djiz16a1cljnq08fdck7-zlib-1.2.11.tar.gz.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/fbn7qarm6adak53jg4dz1gy4p064gy9y-binutils-2.37.drv /tmp/guix-tests/store/lrc73gzhggn1l16dlsdj1lv34qsjfan7-libstdc++-10.3.0.drv /tmp/guix-tests/store/r94pzhn6yx0knmnlbn49134yrvwbs29b-ld-wrapper-boot3-0.drv /tmp/guix-tests/store/gkl3anjfh20qqp73mq0hmdknjsqp1zfa-bash-minimal-5.1.8.drv /tmp/guix-tests/store/4lxlikg47slp0mrcd25rlcm6qcii6kqj-libunistring-0.9.10.drv /tmp/guix-tests/store/w9zlnd1lsfx9i24f59im4zfrgr86qyif-libunistring-0.9.10.tar.xz.drv /tmp/guix-tests/store/gc355jps6lvgnhny001hs7zf7k6rbn3m-libffi-3.3.drv /tmp/guix-tests/store/40qj4rc7c1rjhbh4yl21z5qi8md2ialv-libffi-3.3.tar.xz.drv /tmp/guix-tests/store/1km3h7zb41pjrldqgq6gjny5f0aissi0-libffi-3.3.tar.gz.drv /tmp/guix-tests/store/nrn3byjrdgf1c0icybmisrkcn28ypjyx-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/7gnpyf9a1i789jvz9j8cr69jaj0x5p28-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/rcp4r9nkzi1jhb4z8bgmhq0cmqlmgqxa-libgc-8.0.4.drv /tmp/guix-tests/store/ifxf227928p46a44kadh3qwc3xgi7kll-gc-8.0.4.tar.gz.drv /tmp/guix-tests/store/91z5zk9cv2bryzxa94zqpbph3i5x0v0d-gzip-1.10.tar.xz.drv /tmp/guix-tests/store/bmzp76q0a1ihpd044dfjj160wb8fqgs8-grep-3.6.drv /tmp/guix-tests/store/2bxdmf4galrb85yv3gkdhkrcw8jxyidg-grep-3.6.tar.xz.drv /tmp/guix-tests/store/1zk1y70l49d03g9czi6w1pzngc43g212-grep-3.6.tar.xz.drv /tmp/guix-tests/store/dyvkgvsbx1iz19ad4vmjp8f25k70bziw-module-import-compiled.drv /tmp/guix-tests/store/rj6lyl5dpik9kp20q04lbpr1aq6jx466-glibc-utf8-locales-2.33.drv /tmp/guix-tests/store/3xx3dcm5zyfgjkvyal7azvkr13981w4j-module-import-compiled.drv /tmp/guix-tests/store/6623qs8y2ddd3fbgy4fhagkphx28pdq6-gzip-1.10.drv /tmp/guix-tests/store/m0xiw3dznzaaxw8izp2ywc1hc5hd3blj-coreutils-8.32.drv /tmp/guix-tests/store/afbnqhzv3bam6n593027krw63kjlppd0-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/bik73j39d1bb6ksn3x2xdc9h133kiigf-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/2pqyydqw0z0zf2vhdw6xs3wfnbhza0qd-guile-3.0.7.drv /tmp/guix-tests/store/3w6zpyvj10b7yj0zjskixwkxaf49q48w-libunistring-0.9.10.drv /tmp/guix-tests/store/50h57gnjb225z2qzh580zcpqniiz07jb-diffutils-3.8.drv /tmp/guix-tests/store/55n6pa2bks7fk13p12bchw8lpi2sy88m-perl-5.34.0.drv /tmp/guix-tests/store/p0p0ab2zq1p1332h5x07wixh0r7am998-coreutils-minimal-8.32.drv /tmp/guix-tests/store/z2x6zgpv6gzyp12b4a5ikr6n75yws86b-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/6ank9bknb1f95kcvir5v0jnpzxa07ir3-tar-1.34.drv /tmp/guix-tests/store/vgkjb9gr1mc39k5c46arbjbks15b35cj-tar-1.34.tar.xz.drv /tmp/guix-tests/store/bnnng57rswby8xhvzy9vjwmwh1xc80m1-tar-1.34.tar.xz.drv /tmp/guix-tests/store/cj7y0ngqdj3r2yx6grcqb1ppkgpyb8b8-bzip2-1.0.8.drv /tmp/guix-tests/store/5dpcig3kzm5vrskw80977ifgblkcffwr-bzip2-1.0.8.tar.gz.drv /tmp/guix-tests/store/dpgm59v7m8p8hi1ci2jv43a84l67qlqa-file-5.39.drv /tmp/guix-tests/store/g3vzcjpysp0hcl7wnwjykpi3ps1fgjyk-make-4.3.drv /tmp/guix-tests/store/9mk3x98kxqdz034rj1rmilij0grz3kc7-pkg-config-0.29.2.drv /tmp/guix-tests/store/g6hrlky5sy7nz3kg0whxq44xfpc6r8z8-patch-2.7.6.drv /tmp/guix-tests/store/600hnwvm1w09da6mrjfdvqkl0ld96gg7-ed-1.17.drv /tmp/guix-tests/store/5z89n7v0b8mnswpaiw3j9anva591lbva-ed-1.17.tar.lz.drv /tmp/guix-tests/store/6zfa9zfpig9kxc1ciaxhxlif7rj96h6k-lzip-1.22.drv /tmp/guix-tests/store/i2a9klhfkfyfrqfsqbmyy60mdgbxjb34-lzip-1.22.tar.gz.drv /tmp/guix-tests/store/a7b5882ma5bii2isrc81wad9qig922m9-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/h9837470b7xbdc5045rfq4q8p50pnayr-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/jqlmsrpnnww1qq08n9dm8wnk4y2jcl8f-findutils-4.8.0.drv /tmp/guix-tests/store/p62d7v83mfzh9q2gr238iw1iwzaa54bb-gawk-5.1.0.drv /tmp/guix-tests/store/jnl5s25mlvhhx7513mf7wxnjf9k12bwb-gawk-5.1.0.tar.xz.drv /tmp/guix-tests/store/lddc2s21apl8jzayr0qh8z4jv37qzgk6-libsigsegv-2.13.drv /tmp/guix-tests/store/p7ch1zpda76ng44lcylkmvkqj9p6rrbj-libsigsegv-2.13.tar.gz.drv /tmp/guix-tests/store/xdjpbx97b8xwxv0y5f3vbj269512m5za-sed-4.8.drv /tmp/guix-tests/store/a8fn7nd882wxpcxmfmlhdy9nn3hxq3h5-sed-4.8.tar.xz.drv /tmp/guix-tests/store/6a35xdllgbxwfk369rmz03qqh76m1i83-sed-4.8.tar.gz.drv /tmp/guix-tests/store/zirq8ypbjch79fc9xrkpm0d6lbb9im9q-ld-wrapper-0.drv /tmp/guix-tests/store/zvam0j9fwpnd11c43lawwamw1fxhdq8z-xz-5.2.5.drv /tmp/guix-tests/store/c2p3ba4bkm2ddllr61lf83ksy2ji326g-xz-5.2.5.tar.gz.drv /tmp/guix-tests/store/8k44mfp0hsvy3q4yxfrb0m6495zjf7dp-pkg-config-0.29.2.drv /tmp/guix-tests/store/azrmgrz2mshmic3hmiwmbl81x6v719d0-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/c7dmh3kaihk8n1ya0b4bqdmgmjjzyham-libgc-8.0.4.drv /tmp/guix-tests/store/k9jkyk4qwbcwh9nd9yvhghgkmpz8wrg5-libffi-3.3.drv /tmp/guix-tests/store/94iz0h14l7wvg9m7kwv9sycs0bq1khnb-libffi-3.3.tar.xz.drv /tmp/guix-tests/store/pgvp468v34dplcwzcw4km0j03wj73lz6-bash-minimal-5.1.8.drv /tmp/guix-tests/store/fshyvm6adcq7hw62v89zisypdl5ilxd9-bash-5.1.tar.xz.drv /tmp/guix-tests/store/8l20rv7jrwmb0lbrljj1q16dlqr5gsb0-libgpg-error-1.42.drv /tmp/guix-tests/store/k1wvwaxbn0zxdkn42ipghkjk3ralg5db-libgpg-error-1.42.tar.bz2.drv /tmp/guix-tests/store/lyb9a6nkfl8g0bgyjnn239w8ikrjjgib-gettext-minimal-0.21.drv /tmp/guix-tests/store/3hdq83yb29ijw91bqijzx896y06a11m5-gettext-0.21.tar.gz.drv /tmp/guix-tests/store/8jiqwcn2fxs6zjp71pr4iz0l7kq62jgi-zlib-1.2.11.drv /tmp/guix-tests/store/hizh2pv4afqhci3fspmnwkl24qvz7mmf-libxml2-2.9.12.drv /tmp/guix-tests/store/20icgpa30z6rlkbqwn141p9pbi14n37m-libxml2-2.9.12.tar.xz.drv /tmp/guix-tests/store/7rpjscyfv3gwj8fwc39xhymq0qxrngrh-libxml2-2.9.12.tar.gz.drv /tmp/guix-tests/store/fy16mi1xm2vmbhj017ggfxg4a0h77nim-xz-5.2.5.drv /tmp/guix-tests/store/hwppn7f1mws18zsk2n53klrwlpmlr124-perl-5.34.0.drv /tmp/guix-tests/store/gqx7l2gzp88gif0az3dqg0r3wl0yij3w-coreutils-minimal-8.32.drv /tmp/guix-tests/store/jcn6z8hnhyls6g48hk8y5x5kzhliv6d5-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/wb6kx05hi2a99pbcac0i6yd176sll04i-perl-5.34.0.tar.xz.drv /tmp/guix-tests/store/wc435c6jb85m8f3xmcz5avwnqza1id91-ncurses-6.2.20210619.drv /tmp/guix-tests/store/3dgf4kwi1nvcy95nn020di0klkjg9s19-ncurses-6.2.tar.gz.drv /tmp/guix-tests/store/rzh9fakqivjd02wpx26wis4dh5mhmjjr-ncurses-6.2-20210619-patch.sh.bz2.drv /tmp/guix-tests/store/bha2smigk61y51cl0brvr1ds6wiscrik-texinfo-6.7.drv /tmp/guix-tests/store/kjfzhznvhq6ygrqn76zwxpnyq746n3az-libgcrypt-1.8.8.drv /tmp/guix-tests/store/0272fnn9cjcp9lkv586jsim8qq7aq8if-libgcrypt-1.8.8.tar.bz2.drv /tmp/guix-tests/store/lcfbv652p20b6rcm3w61z1dg3bi4z94q-guile-gcrypt-0.3.0-checkout.drv /tmp/guix-tests/store/11jcipdfmlnygkksr489gq0420lsnq7p-guile-zlib-0.1.0.drv /tmp/guix-tests/store/pnhz6swwip33aa2pzp16jqjb6p1nvcaa-automake-1.16.3.drv /tmp/guix-tests/store/pwnhk4lmjcb626qj1d9l4zhi87gfns5p-autoconf-wrapper-2.69.drv /tmp/guix-tests/store/dwpdx1cxzk3yxxlxzpxl7ykj3hsqx6ky-autoconf-2.69.tar.xz.drv /tmp/guix-tests/store/pl3xwmvlg60isx6aq8gn52h7jamq0c07-m4-1.4.18.drv /tmp/guix-tests/store/xjsp9pbxvr0hwpi5ykzlz1kinkjcxybb-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/ry30lchbhfr56ddqxblgdy37ab7irxnj-autoconf-2.69.drv /tmp/guix-tests/store/qry2r79hhzyl31nr6ry1pqs4b86ykv09-automake-1.16.3.tar.xz.drv /tmp/guix-tests/store/9mhn9vqx0x9smnqkgd609mrh9r3m8w38-automake-1.16.3.tar.xz.drv /tmp/guix-tests/store/xhx26v8vkr3arnw630z4hjrsf2hzymq3-guile-zlib-0.1.0.tar.gz.drv /tmp/guix-tests/store/1nxdsds0mhd1lbgiar5qrd1yf2fpz4an-gnutls-3.7.2.drv /tmp/guix-tests/store/23j6x323q3rc4nqvapmw41h5p22vcxrk-which-2.21.drv /tmp/guix-tests/store/1nvf74rjkzjxp59kcck0wgjbdfn0vfs3-which-2.21.tar.gz.drv /tmp/guix-tests/store/3wrg5lcgzysjr5srqdfsl61svva1k3ks-gnutls-3.7.2.tar.xz.drv /tmp/guix-tests/store/rn6k3anl07fkgpsqgz9r478vw5dmdy81-gnutls-3.7.2.tar.xz.drv /tmp/guix-tests/store/bwdfif6x0805bv262gcg26yj0i8pmahc-libidn2-2.3.1.drv /tmp/guix-tests/store/g1gf7w2l8jqi2fvakfla7wsi30idhs1x-libidn2-2.3.1.tar.gz.drv /tmp/guix-tests/store/hnilzisybg688ddgizx3w5d63w8qs05g-gmp-6.2.1.drv /tmp/guix-tests/store/wwlwl85r9hg1cknaw9wjagp2qgqy62mm-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/y5m24mds14ncjlrwldfng8xkmmjhjj3h-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/k3sxxnpd3rpxb6c2idc1k4wj3ll1cyq8-nettle-3.7.3.drv /tmp/guix-tests/store/ash166sr7hzjjfh3kc8qrg8j9zd3bxac-nettle-3.7.3.tar.gz.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/3y8z12v0g2ai2hr9rfwlrvm25dxz3bm4-util-linux-2.37.1.tar.xz.drv /tmp/guix-tests/store/ksjqykwy7gykgdpjyc01bdh2fg3mmblr-util-linux-2.37.1.tar.xz.drv /tmp/guix-tests/store/h8828pl50ix2h5p87vykbqak1v9zq4rm-file-5.39.drv /tmp/guix-tests/store/z131mia9hl1qclyhsfyhh9jxm04c9gcf-net-base-5.3.drv /tmp/guix-tests/store/1b9jlbrqhjl1f6lmhb24h7v88jrsr0xi-netbase_5.3.tar.xz.drv /tmp/guix-tests/store/bd7scd6k3x51i3y9r7gbajqhd4a8jq7y-tar-1.34.drv /tmp/guix-tests/store/3hbcvhf4yl83hy918rv05rfq0yg16grv-tar-1.34.tar.xz.drv /tmp/guix-tests/store/nljx6lmvcpmvhysmykn7p34gbsisri10-socat-1.7.4.1.drv /tmp/guix-tests/store/npdcrdnmz4xc181ndn4lz5qy36ai2l5v-openssl-1.1.1l.drv /tmp/guix-tests/store/w49g2dpvf7ryrifm52gyv43mjm9gmadq-openssl-1.1.1l.tar.xz.drv /tmp/guix-tests/store/9cyf1qifhj2h699r562q4lflx66bqvws-openssl-1.1.1l.tar.gz.drv /tmp/guix-tests/store/rkfa70mbh893zvvgzkw7fxjskj27n5cm-socat-1.7.4.1.tar.bz2.drv /tmp/guix-tests/store/rhd80g918d5ig6z136wn6r809s4qp5wk-datefudge-1.23.drv /tmp/guix-tests/store/0yzp4sn3iddyjjszlxffd9n227yvms7z-datefudge_1.23.tar.xz.drv /tmp/guix-tests/store/dwcd2jc7jfnyl8kg4k0hs9722pilczjw-datefudge_1.23.tar.xz.drv /tmp/guix-tests/store/s4gbsg874c932hy6kvxzpv0khfc9ih5p-p11-kit-0.23.22.drv /tmp/guix-tests/store/8jmsds3s0j33mkr6wjni6ywzr0cribzd-p11-kit-0.23.22.tar.xz.drv /tmp/guix-tests/store/sxxpsj6q99zhxxzabqhc4nrk8ri05z55-libtasn1-4.17.0.drv /tmp/guix-tests/store/rbf07kjifkgxbs2dyns6k9qp00i9mm84-libtasn1-4.17.0.tar.gz.drv /tmp/guix-tests/store/vcyfmww6m86bh1hbbkf9c1s1mfcbdbl6-net-tools-1.60-0.479bb4a.drv /tmp/guix-tests/store/09k8xbs5m1d5b5i4xbr5xv4833ps0yyf-net-tools-1.60-0.479bb4a.zip.drv /tmp/guix-tests/store/amyqdn43835z8n4nr7mnm2v8438bfkrg-unzip-6.0.drv /tmp/guix-tests/store/5sfchzcg8c9jdly24h3hspbddfcxrgmv-unzip60.tar.xz.drv /tmp/guix-tests/store/g1laxgrn8h1zyrjy9gd9901sjzx69b33-unzip60.tar.gz.drv /tmp/guix-tests/store/hplrcllrlfjklmp6wi4pxq482gnvbqmi-bzip2-1.0.8.drv /tmp/guix-tests/store/wdmrfjybsq9nb2v1zagr9nc0gc2amxwf-iproute2-5.15.0.drv /tmp/guix-tests/store/3gzp4wxrxblp5z27kmknjqccg9zwvcan-iptables-1.8.7.drv /tmp/guix-tests/store/3dr5pwp604s695mx7zyzyygm5nfj3kl3-libnftnl-1.2.0.drv /tmp/guix-tests/store/hqadr2qrs8aj4w2cb8bhg49zgndw4vpa-libmnl-1.0.4.drv /tmp/guix-tests/store/zcxykwwyg4hd3a6g18g5hh27gsjmivkx-libmnl-1.0.4.tar.bz2.drv /tmp/guix-tests/store/y46dhypls1ygjnsskm9xm9gz1n6k9y4r-libnftnl-1.2.0.tar.bz2.drv /tmp/guix-tests/store/7vpjgw85wsraa2a7bp7ln5ilcdk3sbvx-bison-3.7.6.drv /tmp/guix-tests/store/90an45ybmxxdk2j5j9fv0ji8q7iyyiav-flex-2.6.4.drv /tmp/guix-tests/store/g6msfm26i8b5h396504c8110yibnh7l8-help2man-1.48.3.drv /tmp/guix-tests/store/0d6iv542mz1li1lai6v0dc6pzikq5b8r-help2man-1.48.3.tar.xz.drv /tmp/guix-tests/store/7xam65p8mwva5k7xf7fi931600x5qi93-perl-gettext-1.07.drv /tmp/guix-tests/store/468lblrdf3cv2w8a3j3r48blb7vb1ymk-gettext-1.07.tar.gz.drv /tmp/guix-tests/store/5bb0bvrqz67ijc9ihw938dlb0rrh0srw-module-import-compiled.drv /tmp/guix-tests/store/yzyjm7g0zaa5gzfqyyg2r4nqib0nj27f-bison-3.7.6.drv /tmp/guix-tests/store/znp4jcsv6rjw93am0db8c2smkaywj1ni-iptables-1.8.7.tar.bz2.drv /tmp/guix-tests/store/idxr9ffaks89mrbx1yjly4ibwhif0i0x-iproute2-5.15.0.tar.xz.drv /tmp/guix-tests/store/r754ad1aprcp89353a6qjakps2walryc-bdb-6.2.32.drv /tmp/guix-tests/store/h1wymwl4qwbcapsidm5zzglkhyq0cfpr-db-6.2.32.tar.gz.drv /tmp/guix-tests/store/f6lajahpqi1dd9crj60g1mbkik0yaamz-git-minimal-2.34.0.drv /tmp/guix-tests/store/14ri30vi1hxr0rsjv8pypbgvc4fvkvya-curl-7.79.1.drv /tmp/guix-tests/store/1nxdsds0mhd1lbgiar5qrd1yf2fpz4an-gnutls-3.7.2.drv /tmp/guix-tests/store/6va9q19n8h6j6h1cn9pkb8dwm9f0wvrk-mit-krb5-1.19.2.drv /tmp/guix-tests/store/ji5s8y4cw4nbf83h85h9lzs1fz1ljb0y-krb5-1.19.2.tar.xz.drv /tmp/guix-tests/store/mzyfxingdk4xvk4z37fsbk1192sdmf4w-krb5-1.19.2.tar.gz.drv /tmp/guix-tests/store/v7y9lvr7ca443v56c3rxvgm1rgwp81ci-tcl-8.6.11.drv /tmp/guix-tests/store/s1g0w4mmh61sjiwhby8xc5hd8jnx46xy-tcl8.6.11-src.tar.gz.drv /tmp/guix-tests/store/8hkyk814a2042g5cbmaz8d37kg6158bf-curl-7.79.1.tar.xz.drv /tmp/guix-tests/store/rr2517yxgyayknjyfv70j79m9k4gfn7d-curl-7.79.1.tar.xz.drv /tmp/guix-tests/store/8ngxgsybz3sfw773wj43v9hfdi8gk1m6-python-minimal-3.9.6.drv /tmp/guix-tests/store/19cjj4qn5nplk3x2sfammqpg9hlf9sbr-Python-3.9.6.tar.xz.drv /tmp/guix-tests/store/iria8q3qidpz2bjm49v2winn3vjxypp8-Python-3.9.6.tar.xz.drv /tmp/guix-tests/store/c9lcckp47bak9j8ksxjc6lac7fhlqi8r-zip-3.0.drv /tmp/guix-tests/store/ywkmbnkp6n7jpqx1j1q80lha47ivmr3a-zip30.tar.gz.drv /tmp/guix-tests/store/kkly0bjdn3vckm8daniz6y9jrs42idz0-expat-2.4.1.drv /tmp/guix-tests/store/lxp25j1rqh9g4akh9ya7ck8vhaiz0q8k-tzdata-2021e.drv /tmp/guix-tests/store/g6ssndxfwf9f2584zdyvd85hkxxhgs02-tzdata2021e.tar.gz.drv /tmp/guix-tests/store/yyajwl02cfrwaprvxxbn96wy6nzzgv6j-tzcode2021e.tar.gz.drv /tmp/guix-tests/store/jjzdbgvha4lxmxgihvm0iyj8hmkr9cap-nghttp2-1.44.0.drv /tmp/guix-tests/store/3qchlvj4csg1nd06ya59lxj5r5qq7bda-nghttp2-1.44.0.tar.xz.drv /tmp/guix-tests/store/4y27gha09kld75zshnmyia57xmq9mjjs-cunit-2.1-3.drv /tmp/guix-tests/store/fks2jq3fqflm3n0fvyrkcr3g4r1kb56z-libtool-2.4.6.drv /tmp/guix-tests/store/bphi7f415ca2fksfcjnixy661321llxb-libltdl-2.4.6.drv /tmp/guix-tests/store/r6d7n4ilf0f7cfaxyyikjcpmvjmcir5r-libtool-2.4.6.tar.xz.drv /tmp/guix-tests/store/r4rjin6gzz0bcaiwmsb2hvgcjq7hmag8-libtool-2.4.6.tar.xz.drv /tmp/guix-tests/store/s98b1fzvmhdziamv2858fz9k6g69xgzb-CUnit-2.1-3.tar.bz2.drv /tmp/guix-tests/store/60z6gh840cqa4lrnzfwx0iw2xnrqghph-jansson-2.13.1.drv /tmp/guix-tests/store/36fdhi8is3d52wcqpjk7sr7xh79xvb10-jansson-2.13.1.tar.bz2.drv /tmp/guix-tests/store/bwd5pzh2j9xqi7k5nndj52a78y0sq61a-python-3.9.6.drv /tmp/guix-tests/store/12ai3gxrj1m3ij8gv22sb5dgcpv3ng20-util-macros-1.19.3.drv /tmp/guix-tests/store/z4z0ha93rk5m4x9grynk62p7j054kry1-util-macros-1.19.3.tar.bz2.drv /tmp/guix-tests/store/1s6xwrs17i1nl62vabiz3gbgf3ljld88-readline-8.1.1.drv /tmp/guix-tests/store/ckb9nzpjh8qcrxi0izalc673a372zxsj-readline-8.1.tar.xz.drv /tmp/guix-tests/store/4zjjf1h3imnzd43nzbr29ws926chi6gy-readline-8.1.tar.gz.drv /tmp/guix-tests/store/pgz10hw4hia626xbjlyhzir277nw2934-readline81-001.drv /tmp/guix-tests/store/6d8ybzkz8rm5vcl79664443pqpa2hf2x-libxdmcp-1.1.3.drv /tmp/guix-tests/store/fkm1lq1yjjyi0g04qpp94c2g9z6zfq6v-xorgproto-2021.5.drv /tmp/guix-tests/store/gfn93s2dy2z4rqrbpmj3pz8gwfaf4wkd-xorgproto-2021.5.tar.bz2.drv /tmp/guix-tests/store/j63dxva124aj5n41h0g0g3h62wwdl04q-libbsd-0.10.0.drv /tmp/guix-tests/store/4qamifn14izjih5n74kaym42g0gbh1x3-libbsd-0.10.0.tar.xz.drv /tmp/guix-tests/store/jqgv2x635lvd45lkgizn8ww88mm38pkl-libXdmcp-1.1.3.tar.bz2.drv /tmp/guix-tests/store/b2axffmpy7xpra7ad1q05j47nvr1wvk4-libx11-1.7.2.drv /tmp/guix-tests/store/8kr3mbm12vs5h453w43mbv24qh2i369z-libX11-1.7.2.tar.bz2.drv /tmp/guix-tests/store/l1vjnxwvn0n2pj717i8ankxgqr37qjaq-libxcb-1.14.drv /tmp/guix-tests/store/1sv0g93b0fpbsqm91qrd8rzsi4ghprg1-libxcb-1.14.tar.xz.drv /tmp/guix-tests/store/ggdnn1b7zfnixx3y8p7pa5f7rrslgil0-xcb-proto-1.14.drv /tmp/guix-tests/store/4g0ciqbdh73xkcx6iyzvxx458fy72vj6-xcb-proto-1.14.tar.xz.drv /tmp/guix-tests/store/nicc7434l857m6pn1nldrl1iycvfa6z2-xcb-proto-1.14.tar.xz.drv /tmp/guix-tests/store/w0q72700i2v48ik05jaak38g4n1340pk-python-minimal-wrapper-3.9.6.drv /tmp/guix-tests/store/xdk1lfrcd51g7i2i7lkmbyjpyzipc2zm-bash-5.1.8.drv /tmp/guix-tests/store/vkixsak7qv5jsim76sa7zkq0sjm8ffv0-libpthread-stubs-0.4.drv /tmp/guix-tests/store/hwdxl7fny9sh7034hfkcxjma8pcy107n-libpthread-stubs-0.4.tar.bz2.drv /tmp/guix-tests/store/w0dwmy34rs10n7rh100j3c1v7fdk1q95-libxau-1.0.9.drv /tmp/guix-tests/store/5fdjjbsmgaf73lmfbwp1syzi9dpfj4ki-libXau-1.0.9.tar.bz2.drv /tmp/guix-tests/store/z4scfly9fws2q3k097x2fiyml2xjms6q-libxslt-1.1.34.drv /tmp/guix-tests/store/0fgn8iqagrz9d8hzakkjbcfyh95l7mm7-libxslt-1.1.34.tar.xz.drv /tmp/guix-tests/store/1da1kh5yvmxq3kspiqgsfdnrnqrh17qi-libxslt-1.1.34.tar.gz.drv /tmp/guix-tests/store/m79hnhjw3i1y99xwf7rg771xhf99hdvy-xtrans-1.4.0.drv /tmp/guix-tests/store/8jwhbqwafy7haqjkk15bmx8cg1ybyhp7-xtrans-1.4.0.tar.bz2.drv /tmp/guix-tests/store/di8hlsnfacip72sxzhi8k8fd0pzrv7zk-gdbm-1.20.drv /tmp/guix-tests/store/7yjcgjpgnh7szk10rdki8wqpnvnzhs8b-gdbm-1.20.tar.gz.drv /tmp/guix-tests/store/psxi5c3yvv4xm3mif8ddaswmjp0wbk28-sqlite-3.36.0.drv /tmp/guix-tests/store/zf5y36j726cfri6m6c7951hw0i499rrz-sqlite-autoconf-3360000.tar.xz.drv /tmp/guix-tests/store/a84rbsxnyx15jdg82xdn164qa96dnn9k-sqlite-autoconf-3360000.tar.gz.drv /tmp/guix-tests/store/pxrv528rakvqw4sjjlb0wmnvjyia39w9-libxext-1.3.4.drv /tmp/guix-tests/store/73whp8srb8nr5c5zn11xrrq0nl0sa1wh-libXext-1.3.4.tar.bz2.drv /tmp/guix-tests/store/xmb8zw25ydf9qncq91waj3c4hpdnbsjh-tk-8.6.11.1.drv /tmp/guix-tests/store/1kk2vqp36s9d5594hbd40f2pbzls7xnz-tk8.6.11.1-src.tar.xz.drv /tmp/guix-tests/store/8dnfigpzdy1hdhfa46gix97zfnvn2lv7-tk8.6.11.1-src.tar.gz.drv /tmp/guix-tests/store/2lbg1pwja5lnn0jd69pr7rqc1wf73mn4-libxft-2.3.3.drv /tmp/guix-tests/store/a42jslaiw3n7pbr73f9nqx5jga5lny9b-libXft-2.3.3.tar.bz2.drv /tmp/guix-tests/store/g1cg0xh5ii9mc9zwxf0ahlfj74zr9r5x-fontconfig-minimal-2.13.94.drv /tmp/guix-tests/store/b081xw509nqg9jchl062lllxsp3gixwf-font-dejavu-2.37.drv /tmp/guix-tests/store/0dm5a4akpbvz5adfck7z5n71k3grnq6h-dejavu-fonts-ttf-2.37.tar.bz2.drv /tmp/guix-tests/store/bw6h4j46crzwmw15xq1mj4fg2hwym9xi-module-import-compiled.drv /tmp/guix-tests/store/kwcb79jcnimag8dsp16p0xyivpz4yf9c-gzip-1.10.drv /tmp/guix-tests/store/gnn656w5ai6h3y71lzq6aflc69p5b8si-freetype-2.10.4.drv /tmp/guix-tests/store/913xvnkyjyr9wpy5yyq4ald01vynvxj2-freetype-2.10.4.tar.xz.drv /tmp/guix-tests/store/p218ymga1ixpjhqvkkwx5jr74ln7qcy7-libpng-1.6.37.drv /tmp/guix-tests/store/ds8l06mgv1llghrqqydj8v244ck0gss0-libpng-1.6.37.tar.xz.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/nh1kzsk0kaip51ys6yigh7za0b4n0abc-fontconfig-2.13.94.tar.xz.drv /tmp/guix-tests/store/3hzm9r3k2gzfinka6m0vfn3ny7fk734i-fontconfig-2.13.94.tar.xz.drv /tmp/guix-tests/store/w537jrzzh9517wcnq8dg4hkcf31yfri6-gperf-3.1.drv /tmp/guix-tests/store/avqyx04y2by5q8sh0bn658dm8l2gbf3i-gperf-3.1.tar.gz.drv /tmp/guix-tests/store/y567js4v5n504frabyip2lfbs3d8c9s9-libxrender-0.9.10.drv /tmp/guix-tests/store/aajf4cc26g4y84h7kzgmsxqz8pkvyica-libXrender-0.9.10.tar.bz2.drv /tmp/guix-tests/store/hmz6j0m3l356zwf5qhii500fgbxsl0vd-c-ares-1.17.2.drv /tmp/guix-tests/store/95p5v1wqiih9i1jwnrsc8vzvhjdxl8lk-c-ares-1.17.2.tar.gz.drv /tmp/guix-tests/store/irmq4qan6pd9irm70xalv20ygb1n7vqm-jemalloc-5.2.1.drv /tmp/guix-tests/store/b90sxmfg5bn0qmb6kz9vs2lxy12pq4f6-jemalloc-5.2.1.tar.bz2.drv /tmp/guix-tests/store/kgvidm7g4c95ayvyb9hidjqbrlwq2210-libev-4.33.drv /tmp/guix-tests/store/j9hk17nyqdv3pj81nsa77njxl3pr9jjj-libev-4.33.tar.gz.drv /tmp/guix-tests/store/kyc7hx0zj21kry7mxj8ks6sid1apvl6x-libidn-1.37.drv /tmp/guix-tests/store/6jcak9dw49dz4dl84206wzgr4n09vnk0-libidn-1.37.tar.gz.drv /tmp/guix-tests/store/gnj35c1cx3d65n0nffwb0vjskp8znxj1-git-2.34.0.tar.xz.drv /tmp/guix-tests/store/w3al8qd0l6y6h5ji67ampfck8qf25biy-guile-json-4.5.2.drv /tmp/guix-tests/store/2jsvq6g3mm0zd2bfysm3d5x0l9qignqh-guile-json-4.5.2.tar.gz.drv /tmp/guix-tests/store/zczss9jzfvg6w3218pyxf9rp3rc5p53k-module-import-compiled.drv /tmp/guix-tests/store/2q0vizlrfigfym166gjsxcm2v6zmjpzg-module-import.drv /tmp/guix-tests/store/8x5s2m9sqdk6sppr4382b93ygsbaijbw-config.scm.drv /tmp/guix-tests/store/40mp2k0naxpiapiq8dz8pzkhxcvvzx65-findutils-4.8.0.drv /tmp/guix-tests/store/kwlld6yi8abb567a1s52z11ravaiz3yn-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/4izc9ais5v47193prqsznpsdnib5xy8p-genimage.cfg.drv /tmp/guix-tests/store/w99knwylxcwmgr5namsrmhqynlk0dl0w-partition.img.drv /tmp/guix-tests/store/2gvqyn8k7ywbkc3fqhwkzqjgvfcn6bds-e2fsprogs-1.46.4.drv /tmp/guix-tests/store/1i9rb17bz35zswpdics7q5pnk8hd6m66-procps-3.3.16.drv /tmp/guix-tests/store/xwdwvpgbkqk0afqnmn8vyivgr137305i-procps-ng-3.3.16.tar.xz.drv /tmp/guix-tests/store/60ajy8fhp2pfznlx5ippk3y5lh05rqgg-e2fsprogs-1.46.4.tar.xz.drv /tmp/guix-tests/store/6vm4apwi19sbnh1qhxjz5ndjyhzx1dlj-dosfstools-4.2.drv /tmp/guix-tests/store/vmx7m2m8ckk2ih8z0jvsgnvfxf6yrqw8-xxd-8.2.3487.drv /tmp/guix-tests/store/ib6pk0mhk8vnppzbiz1iv5y2bbxhwvp5-vim-8.2.3487-checkout.drv /tmp/guix-tests/store/yqcbbbanifkf14prmpgzk3212sh1jhbc-dosfstools-4.2-checkout.drv /tmp/guix-tests/store/75dv7y5mai18p8v50ya05zglbz83m4h0-grub-minimal-2.06.drv /tmp/guix-tests/store/1vbgi0a26rnyvws37v5afqmzfs29l585-grub-2.06.tar.xz.drv /tmp/guix-tests/store/7k5daaqrmca44w4lgdgc3gbf3bngn5sj-grub-2.06.tar.xz.drv /tmp/guix-tests/store/zpv61y3la0frkx599ls4jywkgvdd5mr8-unifont-7.0.06.bdf.gz.drv /tmp/guix-tests/store/dskvmzxj8js5bgliqb0y55v1bplzy78p-glibc-utf8-locales-2.33.drv /tmp/guix-tests/store/k7xjyqm9krkbv9qvw87z7dcwnc828lgn-glibc-2.33.drv /tmp/guix-tests/store/4978fq5br4v48dk27vk71yllddnn3kzm-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/kbwm91cmwawdj4cr3cwfkwxpfpjgg0ml-bash-static-5.1.8.drv /tmp/guix-tests/store/zjsnvvk557wmb5w2i962mq60fynrk6jz-linux-libre-headers-5.10.35.drv /tmp/guix-tests/store/kimlpizfi29aqd00b5w3i3b3g9ymbs4z-system.drv /tmp/guix-tests/store/177l7kx62zihapy4x3wfvnwcmmhwxbvk-profile.drv /tmp/guix-tests/store/06arlsh4s988jyh45584gw68vg3myx4z-guile-gcrypt-0.3.0.drv /tmp/guix-tests/store/9cgs78xkhl5bvick0b2skbwsp3gb95ir-libunistring-0.9.10.drv /tmp/guix-tests/store/h1g67c292fl88qp3nagvfyf5r7gby80a-gcc-cross-i586-pc-gnu-10.3.0.drv /tmp/guix-tests/store/1x5dx260g6h28n6az37hclpq9cdcgdfj-libstdc++-headers-10.3.0.drv /tmp/guix-tests/store/4bjmwzhm6q4fkfzr86bpckmmbjjxwr5n-libstdc++-10.3.0.drv /tmp/guix-tests/store/gxp7fnmlmcif375r9bwdj1r3ndcjqgaf-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/2r6rbqbvgqi0msmajqz1ylv3hgv18p2r-libelf-0.8.13.drv /tmp/guix-tests/store/jxrg02rgaymp91llhihyygvj2mnar895-libelf-0.8.13.tar.gz.drv /tmp/guix-tests/store/4dmmxbxr1s3mgw9xlqh256fv38p9jh1s-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/9jnsjis5r35yinyyawlc41hwb590gai6-isl-0.23.drv /tmp/guix-tests/store/wa4yvjq1svk7767z9c84pqpzs79ix10b-isl-0.23.tar.bz2.drv /tmp/guix-tests/store/d8l1jxzqd20ma3d5nl3mchwgkm713w1y-module-import-compiled.drv /tmp/guix-tests/store/fdx1lj479fbqnc0vfgb351gb0km6jkg8-mpc-1.2.1.drv /tmp/guix-tests/store/fxmpyib9fp1bzlf7rprrp5b7y1shck6w-mpfr-4.1.0.drv /tmp/guix-tests/store/hw6a1x6l7if3bh0977nv6df7cl0pk9wd-glibc-cross-i586-pc-gnu-2.33.drv /tmp/guix-tests/store/2y8gkmwq841j1vslwivd6rw4n7wpq20q-mig-cross-1.8.drv /tmp/guix-tests/store/0khrcxw401n0w0gxwb14qwmg85c7yvpa-gnumach-headers-1.8-1.097f9cf.drv /tmp/guix-tests/store/1m4y2skndpaffpckaqa84z1vjrmcdg0r-texinfo-4.13a.drv /tmp/guix-tests/store/1a904pfkggpb07jfnzqbkixq3f1vi9w5-texinfo-4.13a.tar.lzma.drv /tmp/guix-tests/store/khslfjjnncrg45s0fxr1d8nvklvpsr9a-gnumach-1.8-1.097f9cf-checkout.drv /tmp/guix-tests/store/6ni6j15rmy48cy4y7pkdrvsd6bra3qlb-gcc-cross-sans-libc-i586-pc-gnu-10.3.0.drv /tmp/guix-tests/store/jgayrfgcf83h4gqd65ckx8sjjn53i2sw-binutils-cross-i586-pc-gnu-2.37.drv /tmp/guix-tests/store/crs3pvci2zd1dcgn3q42x4s7phz5pxf9-binutils-2.37.tar.xz.drv /tmp/guix-tests/store/jlrscl4kh3ah1zimh1v5xkr9ypvi7i9x-ld-wrapper-i586-pc-gnu-0.drv /tmp/guix-tests/store/6r59bay59wlpndy9x7xqgfbn75gljvjc-gnumach-headers-cross-i586-pc-gnu-1.8-1.097f9cf.drv /tmp/guix-tests/store/krikqqcpb0q84mkzh6wq4bb62pp6vqp4-mig-1.8.tar.gz.drv /tmp/guix-tests/store/l430hpf9lzdja928ggnqynnyjbgph1r9-hurd-core-headers-cross-i586-pc-gnu-0.9-1.91a5167.drv /tmp/guix-tests/store/6fmzmcykqhphhspjs4v4bvyymx2afia7-hurd-headers-cross-i586-pc-gnu-0.9-1.91a5167.drv /tmp/guix-tests/store/3qrbjcscgdkfsr64an1n8p0ip6pa7wqs-hurd-headers-0.9-1.91a5167-checkout.drv /tmp/guix-tests/store/rh0z0b8gwryj2m25wr00wimxrrckynzk-module-import-compiled.drv /tmp/guix-tests/store/x1mzj7kh6s4vjphb4hv4di0vanpwlygy-hurd-minimal-cross-i586-pc-gnu-0.9-1.91a5167.drv /tmp/guix-tests/store/0h7s9qgplakfwr3jnasnlccfcav840w8-glibc-hurd-headers-cross-i586-pc-gnu-2.33.drv /tmp/guix-tests/store/f6pfcdb3lxgwxdggffrr71sva84qy6z5-guile-3.0.7.drv /tmp/guix-tests/store/6b11x92d9v2fhpqqaccjq5cvpyranhf7-bash-minimal-5.1.8.drv /tmp/guix-tests/store/ghf6rrjqbd72v31lsbj83llw9qqvr8kf-libgc-8.0.4.drv /tmp/guix-tests/store/klm2np061x1pq653s7dv7pzc4miahnwz-pkg-config-i586-pc-gnu-0.29.2.drv /tmp/guix-tests/store/qz6xb1mcicxsbb7x4d1gfzci03msvbkw-libatomic-ops-7.6.10.drv /tmp/guix-tests/store/ip5gqip6bch5g87mf20052ana94c4rhi-libatomic_ops-7.6.10.tar.gz.drv /tmp/guix-tests/store/yd3rcvkq1h0skvjjpcr3m561672k5db7-libffi-3.3.drv /tmp/guix-tests/store/pbh6xzam0s6w0nrwi8f5l6a9c0p64j66-libgcrypt-1.8.8.drv /tmp/guix-tests/store/r6n10y1fn2vyn2dw3gz47p5jjcndw134-libgpg-error-1.42.drv /tmp/guix-tests/store/28w5q7li7y59si5zm4zwph13ql7m6ji9-file-5.39.drv /tmp/guix-tests/store/2lk7fhfsjdnaish302bppad148q8cpgl-findutils-4.8.0.drv /tmp/guix-tests/store/2rypm9mpixqbvi4nxc6m6zsdb5bxpw1z-nettle-3.7.3.drv /tmp/guix-tests/store/9fijz6x8n9gpiwcmir2sahky4w1nwqm9-gmp-6.2.1.drv /tmp/guix-tests/store/42v1fixmqal54akvc2kck5si29g4vg2p-shadow-4.8.1.drv /tmp/guix-tests/store/m6dams3882kszqiwy4v4m4kkc1jybj8i-shadow-4.8.1.tar.xz.drv /tmp/guix-tests/store/jnmwcp0li2jbz9dp3bkmz9q91waqn1rb-shadow-4.8.1.tar.xz.drv /tmp/guix-tests/store/4b97yd1rdgc8mvws6ygd541jqa1z7nkg-openssh-sans-x-8.8p1.drv /tmp/guix-tests/store/775j0mib45nvnmknqz4c4irv47y0w1qn-mit-krb5-1.19.2.drv /tmp/guix-tests/store/dzznmw5dn0y05mhyyh5c87rvljsy0mfk-openssl-1.1.1l.drv /tmp/guix-tests/store/bs46k0fsn2w04n6qkww2s8y3dpickaqi-openssh-8.8p1.tar.xz.drv /tmp/guix-tests/store/0y6r2qb5xrk81k7p6v6842iyrgwx2dpg-openssh-8.8p1.tar.gz.drv /tmp/guix-tests/store/klv1afhfswfdcby1par9nhi74yp3s5ra-zlib-1.2.11.drv /tmp/guix-tests/store/kpfrf61vyqww9q444w7pb4xy49156pxk-libedit-20191231-3.1.drv /tmp/guix-tests/store/iy87lgnnq08ylwasyby5ncp71wj3jdby-ncurses-6.2.20210619.drv /tmp/guix-tests/store/z6wdh85r38rzzf21nbbbd79smxaknwiz-libedit-20191231-3.1.tar.gz.drv /tmp/guix-tests/store/vrmjmliigr4cjjdg7rbadj4hzivasg62-groff-1.22.4.drv /tmp/guix-tests/store/l07rpf0f1yvxzgn8yji1zc5ya2g2zqx2-ghostscript-9.54.0.drv /tmp/guix-tests/store/5rh6x6j9gfl82193sxlvb474pb3nkrwc-ghostscript-9.54.0.tar.xz.drv /tmp/guix-tests/store/xx5hnbs01aba5dk246zqmvl9qwh9j460-ghostscript-9.54.0.tar.xz.drv /tmp/guix-tests/store/5vnml2rg59fipa1r0akrdw6fdnjfy46c-font-ghostscript-8.11.drv /tmp/guix-tests/store/azlxx6qzgwjm6yyy0z05jbdxrpm02crq-ghostscript-fonts-std-8.11.tar.gz.drv /tmp/guix-tests/store/9vvj3igk13pfxfq47yamfw5vm7kvaz3l-libjpeg-turbo-2.0.5.drv /tmp/guix-tests/store/6rbfyfard7972xp7gdlai8hsv2hsq4zn-module-import-compiled.drv /tmp/guix-tests/store/9300n7xf7nakazm93nkz4s2lmjznfw65-nasm-2.15.05.drv /tmp/guix-tests/store/0402pfph3s15mnib10rkxc3qx8wk1r7j-nasm-2.15.05.tar.xz.drv /tmp/guix-tests/store/vrn18j4438yk8x266hxm9yj1h338ij5w-cmake-bootstrap-3.21.3.drv /tmp/guix-tests/store/1mwnr87746w4yw62b7jxbbmd8dbc9rsv-libuv-1.41.1.drv /tmp/guix-tests/store/jljx74ak5ql238hg9hxipa17wmchmq04-libuv-v1.41.1.tar.gz.drv /tmp/guix-tests/store/adzkdxigm9w7v6w26nrwpjzy50dzrhyb-libarchive-3.5.1.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/hiaa99jhg9xibrw26a4gx07ncb1vp42m-zstd-1.5.0.tar.gz.drv /tmp/guix-tests/store/3j5idg9r07m0bj5d3kr157y4h63z296l-libarchive-3.5.1.tar.xz.drv /tmp/guix-tests/store/sjk59gnkp4vmkp60rq02pb2z5c0nik9d-lzo-2.10.drv /tmp/guix-tests/store/n01vi6wwqgrcgfwblyj944g4wk3z1b76-lzo-2.10.tar.gz.drv /tmp/guix-tests/store/mapkpngb78vc71h6hidaq1y1haimy9r5-rhash-1.4.2.drv /tmp/guix-tests/store/0c7n3q8x5ayj5ll7m16b9cl8yiwzdrcm-rhash-1.4.2.tar.gz.drv /tmp/guix-tests/store/mxdsa1lnahn5hah35dkwpvlhdidrb5b9-cmake-3.21.3.tar.xz.drv /tmp/guix-tests/store/q6wx3cw7cynrx74l67dyqcdvlrvsqf5k-cmake-3.21.3.tar.gz.drv /tmp/guix-tests/store/zhvkblzv4r36kqi3dp5mizra85384a21-libjpeg-turbo-2.0.5.tar.gz.drv /tmp/guix-tests/store/jmliaf57fyx77wq1rk5ja0h05mn11sc9-jbig2dec-0.19.drv /tmp/guix-tests/store/xkis6w40kr8l1n91y8xhdyn3q0ngrggr-jbig2dec-0.19.tar.gz.drv /tmp/guix-tests/store/mnyf11gpi02b1j6b30282cksn6p29iw1-libpaper-1.1.24.drv /tmp/guix-tests/store/j2kvglmqz8k2lwkfc09l230fkrf825k9-libpaper_1.1.24.tar.gz.drv /tmp/guix-tests/store/rgr3isbphrcg13zwzc2xycg49604knf1-libtiff-4.3.0.drv /tmp/guix-tests/store/c28gr8dky7a1pv83rznvc7zc7xa63852-tiff-4.3.0.tar.gz.drv /tmp/guix-tests/store/p8lbfpyyqyx0qvx3pbhy84gzsc5yykhn-groff-1.22.4.tar.gz.drv /tmp/guix-tests/store/vrv2lnpjyh1hcrxjf66rr9a4zqz3x60i-psutils-17.drv /tmp/guix-tests/store/p8lxnszfcd4db52k2jgjgma6z261ccpn-psutils.tar.gz.drv /tmp/guix-tests/store/53r50mn7g8gwpw0d4hkrpd82672giw9q-guile-git-0.5.2.drv /tmp/guix-tests/store/7qc6clvvrd2vwmrk57bgnk7c86kckv8h-guile-bytestructures-1.0.10.drv /tmp/guix-tests/store/z95qj605zqwkdjk763wby0j34kqrwzbh-guile-bytestructures-1.0.10-checkout.drv /tmp/guix-tests/store/bshxm6amnf028yfxljfkhvp51la2lagh-pcre2-10.37.drv /tmp/guix-tests/store/19qkl32ja8ib1a7lsh4gwrj37drcrp4j-pcre2-10.37.tar.bz2.drv /tmp/guix-tests/store/d990qs8v6rzw3jwf6mxqm8q4h34zmnm5-readline-8.1.1.drv /tmp/guix-tests/store/xq38fplqx9n2nd40jbf8v477fanl89ca-bzip2-1.0.8.drv /tmp/guix-tests/store/bz7d9qwsmal6099r8dizwj9km37dm7xd-guile-git-0.5.2-checkout.drv /tmp/guix-tests/store/w5w120h3a0hzjahcbasg2q24q30nhag5-guile-git-0.5.2-checkout.drv /tmp/guix-tests/store/i4lhfh2ksiza9jdzndvzlzbryii013c7-libgit2-1.3.0.drv /tmp/guix-tests/store/2jz6lbnbkrqdaxzx2ny84rnz8hgqdymq-libssh2-1.9.0.drv /tmp/guix-tests/store/sc0g4yp60knb191j626s8w8ch8izq8qr-libssh2-1.9.0.tar.xz.drv /tmp/guix-tests/store/xpzp6f37h255rhp2cv4ymcl3j94ay9v5-libssh2-1.9.0.tar.gz.drv /tmp/guix-tests/store/ggz27kgwk2wmjc5yasfmmfr9v7pvnyb8-cmake-minimal-cross-3.21.3.drv /tmp/guix-tests/store/59qygq2wky37iyjq9jl39b9zgbaj6yd7-cmake-3.21.3.tar.xz.drv /tmp/guix-tests/store/pg9qr99nqpl4ibhih23dvsly9srcrird-jsoncpp-1.9.4.drv /tmp/guix-tests/store/9ksb8j9yl8y3mw76c02isd5c1zi7kgbi-jsoncpp-1.9.4-checkout.drv /tmp/guix-tests/store/4mdija5vd7149a9v9mwdmznw1pjgdfvp-jsoncpp-1.9.4-checkout.drv /tmp/guix-tests/store/rwnrwvajwlphc2mszywvrbncwbjaw0kz-libgit2-1.3.0-checkout.drv /tmp/guix-tests/store/fnfhqmvxkgcmchkz8kh03n7xbs7dhdbw-libgit2-1.3.0-checkout.drv /tmp/guix-tests/store/s578x7k72dampvv8wvrnhc9sxivlh3bi-http-parser-2.9.4-1.ec8b5ee.drv /tmp/guix-tests/store/fijh42jbpl81hxbzvxnk7ffyacm457zg-http-parser-2.9.4-1.ec8b5ee-checkout.drv /tmp/guix-tests/store/cxf51006n7d0c21skq3aswfnjg7l6zg0-http-parser-2.9.4-1.ec8b5ee-checkout.drv /tmp/guix-tests/store/k8gr1hl42xfv4b36355r37yz841dw4qx-0001-url-treat-empty-port-as-default.patch.drv /tmp/guix-tests/store/r9y2gfpxklfssp6xmzabmdv5hjhg4mmr-guile-bytestructures-1.0.10.drv /tmp/guix-tests/store/7w5akmhcxgj5kwk8i34l4ar0347fwxas-module-import-compiled.drv /tmp/guix-tests/store/7ydq4rbn6clgpynfsy9vsq7p2j42qlkg-which-2.21.drv /tmp/guix-tests/store/9b22aa16bw3bfr92crwa21lpdbag3xa0-p11-kit-0.23.22.drv /tmp/guix-tests/store/ca3xrwi48320b4rssp5wganig6jam7n4-libtasn1-4.17.0.drv /tmp/guix-tests/store/z25gvnz900mj8d6h549w24k9ii41xj21-libbsd-0.10.0.drv /tmp/guix-tests/store/9i5hzd3pvf7xcixbxscnbv0q89zzw2wm-info-reader-6.7.drv /tmp/guix-tests/store/3lddrp6vi9incq34grrdx9nz2fnmka6f-perl-5.34.0.drv /tmp/guix-tests/store/044180a0q000axxsvj9ccyyz6i7x0xhn-perl-cross-1.3.6-checkout.drv /tmp/guix-tests/store/ms0qy4226glxn63xg1asrd64zhq4fiwr-coreutils-minimal-8.32.drv /tmp/guix-tests/store/a1a5bdj9l572n8z5j44r8yydd5qjsw5x-xz-5.2.5.drv /tmp/guix-tests/store/ffm0xvdxjjvajjac2slnhbxjfmzlcnl6-guile-sqlite3-0.1.2.drv /tmp/guix-tests/store/19lvcalijqn50apmd2sa933rjanflpr6-sqlite-3.36.0.drv /tmp/guix-tests/store/i9vlr1isl4chnqcyqr031bvzcv2vzw83-guile-sqlite3-0.1.2-checkout.drv /tmp/guix-tests/store/fj5njg4xsrhcqlbwg8cpha7w24zrm4m4-gzip-1.10.drv /tmp/guix-tests/store/g4kskfb98qaadq4i8a9wg7h15aadr9a5-guile-ssh-0.13.1.drv /tmp/guix-tests/store/kymj24blqlkmgvp42255kn7y526q7x0b-guile-ssh-0.13.1-checkout.drv /tmp/guix-tests/store/3h9fajz0hyjicpjcx3x6kr39w4b4jw7v-guile-ssh-0.13.1-checkout.drv /tmp/guix-tests/store/pp6dd85fbcfys5nl6953yw2a1mnz335w-libssh-0.9.6.drv /tmp/guix-tests/store/01ymca8l0xg5149nncyc8wb64123p5f0-libssh-0.9.6.tar.xz.drv /tmp/guix-tests/store/giwn572qyprnsn5kvhy0f7lf9svz75ak-libidn2-2.3.1.drv /tmp/guix-tests/store/hvidd8iclsbm162pj2p4z4qxm30dp1vx-lzip-1.22.drv /tmp/guix-tests/store/i7vj03ia9cvn4fvsl4d9mammnbn2580x-guile-json-4.5.2.drv /tmp/guix-tests/store/j9328vm05vv65imqw516img783gf9if4-guile-zstd-0.1.1.drv /tmp/guix-tests/store/ghmy8vjyc8r3yjkz4daczs351s4635ml-guile-zstd-0.1.1-checkout.drv /tmp/guix-tests/store/kn6hnx0lwl8xsawyg7k974gz7488nwib-zstd-1.5.0.drv /tmp/guix-tests/store/jj8nksms8wqjmlyv9zfsyjbkwhcn21hi-grep-3.6.drv /tmp/guix-tests/store/2jxmgi346m6cwcajgpvag6ny1mx8sn2j-pcre-8.45.drv /tmp/guix-tests/store/hvih1zpzxk0mj9qpfwh02cxn0cn9zwj9-pcre-8.45.tar.bz2.drv /tmp/guix-tests/store/h15q26zy0r6f9jskz77bybi08myqliv0-grep-3.6.tar.xz.drv /tmp/guix-tests/store/jqf381jbn2vi3l82sz94vlqqj32rbw4r-coreutils-8.32.drv /tmp/guix-tests/store/pxjyqzyxgh49k348fww2gv3siymrn6kk-attr-2.5.1.drv /tmp/guix-tests/store/2pn4vdkzbg5gwjqskby89v8nrn84b66y-attr-2.5.1.tar.gz.drv /tmp/guix-tests/store/rryfhhz4c12kggf7nxvkc7s8wdlwa540-acl-2.3.1.drv /tmp/guix-tests/store/fdrp2n3bzzjzdb8im056pgcp98ccscna-acl-2.3.1.tar.gz.drv /tmp/guix-tests/store/jyjw2rfa47qgrkpy04zxh3kx030yg4lf-gnutls-3.7.2.drv /tmp/guix-tests/store/kkd32mp8i680x3sqpk9brx99q7mmwr1s-guile-zlib-0.1.0.drv /tmp/guix-tests/store/krkp4n1826zdp9dwivgx2ry55rmqsakx-hurd-0.9-1.91a5167.drv /tmp/guix-tests/store/1jw5qxy31ps872raclilpk9aj414yib5-libpciaccess-0.16.drv /tmp/guix-tests/store/0b4r9kah1h837bq93ljbjzdnnjnwhpga-pciutils-3.7.0.drv /tmp/guix-tests/store/p8bzhrqn88y4v6sysrkpld645vnv3mf1-pciutils-3.7.0.tar.xz.drv /tmp/guix-tests/store/7zj0chwvkz7bgkhvji1q7khz6538z2gv-pciutils-3.7.0.tar.xz.drv /tmp/guix-tests/store/1633zavvypdlxn33xscws5dixkxk2xvj-libpciaccess-0.16.tar.bz2.drv /tmp/guix-tests/store/293lfdcrfrkzixafdakzh3wcndnj2bm7-hurd-headers-0.9-1.91a5167-checkout.drv /tmp/guix-tests/store/2lrry23g1hz70gv59hvhgm1213vajd83-util-linux-2.37.1.drv /tmp/guix-tests/store/b9wyy30f3p62mfw6hgnljmmwsibhvl50-libdaemon-0.14.drv /tmp/guix-tests/store/cizg1dvmf4l2n1vyr2p9rdi1hc0g8m1f-libdaemon-0.14.tar.gz.drv /tmp/guix-tests/store/cbfiyxck2y3hprzmpf9ank7ywx1lydsw-mig-1.8.drv /tmp/guix-tests/store/0fsmr41xwrapl7gf8yx1n74yq8pni36d-file-5.39.drv /tmp/guix-tests/store/039wqyn82hvpk0a6bp6njjvj499cwfs1-tar-boot0-1.34.drv /tmp/guix-tests/store/0jni4apc7ddb04rpndk5wi3fp6i28gvp-make-mesboot-3.82.drv /tmp/guix-tests/store/0lj2rsvy4ildxbxgfslzmrfpm995n354-make-mesboot0-3.80.drv /tmp/guix-tests/store/5bdz7b78cnmb5rxp8wnsq9rxs60zd2yn-gash-boot-0.2.0.drv /tmp/guix-tests/store/0g6rvil8bybk1mdrzyybg0f6zzvxpvn6-module-import-compiled.drv /tmp/guix-tests/store/6j290hdl1y9an7mx7f70hi34x5zdbp2b-guile-bootstrap-2.0.drv /tmp/guix-tests/store/97ar6vglh8z69p0shv73401gq3ff3xf3-mkdir.drv /tmp/guix-tests/store/hq86yd1cs811xm7b1c4fqsl9zp3mcwh7-guile-2.0.9.tar.xz.drv /tmp/guix-tests/store/q0v5gi9rzgaimird6z2jyd109mp6r1y9-bash.drv /tmp/guix-tests/store/q4bnld89anw7xsg3yq6mzg44bzk72081-tar.drv /tmp/guix-tests/store/s6hz301xgmc5k76cf44csgfhrr1x7khx-xz.drv /tmp/guix-tests/store/lg0kl1mm66m73md0g44l6hk4iidbhjsc-bootar-1a.drv /tmp/guix-tests/store/imgp2sj88nww7ahiq1syqmz77qchpwdn-bootar-1a.ses.drv /tmp/guix-tests/store/llbamxpf4gn1yr9jc39x289kn6wjmwxv-gash-0.2.0.tar.gz.drv /tmp/guix-tests/store/i48g7w8l3dlg95sj1h6zphrdqci5rk3z-tcc-boot0-0.9.26-1103-g6e62e0e.drv /tmp/guix-tests/store/35m7vryfn6lcpq4r3fpk26n4pw3ql382-mes-boot-0.22.drv /tmp/guix-tests/store/3yhji309kb1dljpyv5zlb1ky40jp3ic6-bootstrap-mes-rewired-0.19.drv /tmp/guix-tests/store/2d7d5c27lhw1amq108w7mk2m7i359ihm-bootstrap-mes-0.drv /tmp/guix-tests/store/akb8ix91n7ma9bihzxkj1d67nm3v7knf-mes-minimal-stripped-0.19-i686-linux.tar.xz.drv /tmp/guix-tests/store/hx1a6qksvdscmjygjk3m5dl171sfl9s6-module-import-compiled.drv /tmp/guix-tests/store/d3sybgnmbm3gcilvld35znslxrgq2n2d-mes-0.22.tar.gz.drv /tmp/guix-tests/store/igijr9hvqdppr35h0d6v0nas17n7b0xp-bootstrap-mescc-tools-0.5.2.drv /tmp/guix-tests/store/ivk4xq76sgss31jc804sgcayx6wvccgn-mescc-tools-static-stripped-0.5.2-i686-linux.tar.xz.drv /tmp/guix-tests/store/n3394g4csd1fcglv7fsq9ywa28zrgmzy-nyacc-0.99.0.tar.gz.drv /tmp/guix-tests/store/pl6w70kxi9zz6hxjik5p1f3nqj9j6z1q-gash-utils-boot-0.1.0.drv /tmp/guix-tests/store/4k5cqcrbj4rb8bj457sl8rlkr96kl19l-gash-utils-0.1.0.tar.gz.drv /tmp/guix-tests/store/ss34jyawk0r5j1wjs0f0j3irxrgx2amb-module-import-compiled.drv /tmp/guix-tests/store/qaqnip7j8jm9lxkwzqc78cs19w295lrd-tcc-0.9.26-1103-g6e62e0e.tar.gz.drv /tmp/guix-tests/store/j4shmnwiyplv5v6liqlk9xgr094gkmfr-make-3.80.tar.gz.drv /tmp/guix-tests/store/8pmpj4n9wfnrdcrjnz7999xin698whab-gzip-mesboot-1.2.4.drv /tmp/guix-tests/store/l3mgjga3c1a6j7lpywbgi86bavzr8sm1-gzip-1.2.4.tar.drv /tmp/guix-tests/store/91wi9a6cwaxbs605zz0y6pjfqiip89q9-glibc-mesboot0-2.2.5.drv /tmp/guix-tests/store/a53a7ihb75vblr5q13rhkkkhaah9z5pc-gawk-mesboot0-3.0.0.drv /tmp/guix-tests/store/9fvv1dk70n2bxw39fdyidqw9zlmzja4y-gawk-3.0.0.tar.gz.drv /tmp/guix-tests/store/i8fn319p1gqgmdczg3zbgbrl3pbjg30p-patch-mesboot-2.5.9.drv /tmp/guix-tests/store/ffi5rql9wq4yw29f7pv0wxi0c93n8kv6-patch-2.5.9.tar.gz.drv /tmp/guix-tests/store/ldk9ryrhhrbc6cn1scab1r4k82bq1qm4-bzip2-mesboot-1.0.8.drv /tmp/guix-tests/store/c5y3qrjvj5vygsp7qrqb1qjc4l8ccg16-bzip2-1.0.8.tar.gz.drv /tmp/guix-tests/store/lhddqdx0jf2zrrgkma15i2m4vglwxvbm-bash-mesboot0-2.05b.drv /tmp/guix-tests/store/qs72375rrg3w23282lzxvr3ws1f600js-bash-2.05b.tar.gz.drv /tmp/guix-tests/store/wc2l9kfdhpm22lm1xhzvx04zs19zn8pf-tcc-boot-0.9.27.drv /tmp/guix-tests/store/9l13h23nrfy4znmsa34aai049s2x6n7m-tcc-0.9.27.tar.bz2.drv /tmp/guix-tests/store/z0ciymydphfvl1lv6qjyw97gq9r8qjdz-sed-mesboot0-1.18.drv /tmp/guix-tests/store/chs2lsb6mfdz0xzr2krwdag6ywsdrv56-sed-1.18.tar.gz.drv /tmp/guix-tests/store/h441a81mmqgvy4f7s99dgf2hqa4z18gx-binutils-mesboot0-2.14.drv /tmp/guix-tests/store/y70njn8bld8mq5rd9p77mliwasf0d94n-binutils-2.14.tar.gz.drv /tmp/guix-tests/store/n3clnkfkfxci7v1znkmzs9ndksax7rsz-gcc-core-mesboot0-2.95.3.drv /tmp/guix-tests/store/5vpvr1nfr9iv16vgia708inh5sxc75q6-gcc-core-2.95.3.tar.gz.drv /tmp/guix-tests/store/qr0gqsrng63rclwkp2bdx4bq6b8hhfc2-glibc-2.2.5.tar.gz.drv /tmp/guix-tests/store/zdz9r31kmw9lqx4i19s8k3bpsflyw3iy-mesboot-headers-0.22.drv /tmp/guix-tests/store/c1wvyvdj177cvdgp2iyh60fn427sb46d-linux-libre-headers-bootstrap-0.drv /tmp/guix-tests/store/0nhnbc1gqafylgjx2b5rakyj0vy1s57x-linux-libre-headers-stripped-4.14.67-i686-linux.tar.xz.drv /tmp/guix-tests/store/bi4mhjnh6dkizx0i34bk98hj27b3d421-make-3.82.tar.gz.drv /tmp/guix-tests/store/rihywyqqn4i016bgfpq5hhz1426zxcly-gcc-mesboot0-2.95.3.drv /tmp/guix-tests/store/1zl5i1n3hg7gia50r3b04r4vw3wchcja-glibc-mesboot-2.16.0.drv /tmp/guix-tests/store/2xh0bm2xmazx5d3x18fpiyl77w3g3n9k-xz-mesboot-5.0.0.drv /tmp/guix-tests/store/4cn7ysq7l1zlpvwgvfc51x067winw780-gcc-mesboot1-4.6.4.drv /tmp/guix-tests/store/0hi6bga0xkcxmaifwjldd5dzlzbqhxf9-mpfr-2.4.2.tar.gz.drv /tmp/guix-tests/store/55d3zbk838d80g7n7zfdm28h7s14hmy2-sed-mesboot-4.0.6.drv /tmp/guix-tests/store/81fdvqggcv0ik54w670g2yag9ydqwi0s-sed-4.0.6.tar.gz.drv /tmp/guix-tests/store/dn10021nix3mhs19nyaf9gscn4fzszcy-coreutils-mesboot0-5.0.drv /tmp/guix-tests/store/lni5k7mfmr9dg7axyv3rrwfjkcv0bxys-coreutils-5.0.tar.gz.drv /tmp/guix-tests/store/k0fa3biz6lyj7qxb3pxgswazzqj4p3j0-gmp-4.3.2.tar.gz.drv /tmp/guix-tests/store/kj5y21h87xjzqh4sigd2h32slyqd4d2p-grep-mesboot-2.0.drv /tmp/guix-tests/store/zq4mbn8nrj92c6phlqwxqrb5j5bncmkx-grep-2.0.tar.gz.drv /tmp/guix-tests/store/mkmjrdg1h606jpv0hcnc7a5kflkx3yzv-bash-mesboot-4.4.drv /tmp/guix-tests/store/8scdszzv420hcf7jldj9fx5dsrf94bzp-bash-4.4.tar.gz.drv /tmp/guix-tests/store/rfc1143mn90b6wn7a753awa098lgviz3-gcc-core-4.6.4.tar.gz.drv /tmp/guix-tests/store/rnid6xviydpmh4awapnp7fad04f7mdjq-binutils-mesboot1-2.14.drv /tmp/guix-tests/store/v3mgdygmfs9gzpf315iiwghsqgww51fh-tar-mesboot-1.22.drv /tmp/guix-tests/store/waavywziad58awxml53l1xxl02bhyp44-tar-1.22.tar.gz.drv /tmp/guix-tests/store/whp2l6791c5cg1l2x76z0wj1628qas63-gcc-g++-4.6.4.tar.gz.drv /tmp/guix-tests/store/zal6b3d2icdy4rrrgjja4aq1jddf3zgf-gawk-mesboot-3.1.8.drv /tmp/guix-tests/store/ffbpb07yy97rpj5llpfcs4mx6sz1dsl0-gawk-3.1.8.tar.gz.drv /tmp/guix-tests/store/zcb54l3c2fj176j30a31vb8g237bhncz-mpc-1.0.3.tar.gz.drv /tmp/guix-tests/store/zlwyzbvm2ybg9s12ygfkr272f03an4ck-xz-5.0.0.tar.gz.drv /tmp/guix-tests/store/7jb2808il23jwv0s5alvxgbfjarh4hp1-glibc-2.16.0.tar.xz.drv /tmp/guix-tests/store/3b1057lj17ix5i3k0040pmbsx4p91db9-bootstrap-binaries-0.drv /tmp/guix-tests/store/5ifvsqk9al8g3vxpyx4mk1a68qlarg05-static-binaries.tar.xz.drv /tmp/guix-tests/store/9mm8pwp70rmfm4f1abiivybyk48mj2j5-glibc-2.16.0.tar.gz.drv /tmp/guix-tests/store/fzlyznn7pbryaqv4jqphjfx4ylvk48h8-glibc-headers-mesboot-2.16.0.drv /tmp/guix-tests/store/xhdz0pnfwc6xmljylz1bff9n67sv36mk-binutils-mesboot-2.20.1a.drv /tmp/guix-tests/store/50qxgm5bmc09pw70khxzb405zl54ix5x-binutils-2.20.1a.tar.xz.drv /tmp/guix-tests/store/7iw9yjag2snqyybdsz9cdjjd2mdm2b1g-binutils-2.20.1a.tar.bz2.drv /tmp/guix-tests/store/69nj0aliy3xqfapjcsncp3yjynwqaxrc-tar-1.34.tar.xz.drv /tmp/guix-tests/store/nmixrdidxkdaaz4bryg6y2irpg4kqygp-tar-1.34.tar.xz.drv /tmp/guix-tests/store/920677ig6x809ppqd2q0d1x9rvk9grjc-gcc-mesboot-4.9.4.drv /tmp/guix-tests/store/im5gl24v8mklyxr82385jmy4z81rvmy1-gcc-4.9.4.tar.xz.drv /tmp/guix-tests/store/mq0vk5c7i6bdqvnqcx63s7gbypmrig0x-gcc-4.9.4.tar.bz2.drv /tmp/guix-tests/store/xyzk3hw921ffzvppb81py9n5wglsv4v4-gcc-mesboot1-wrapper-4.6.4.drv /tmp/guix-tests/store/b8ad2r8afcd2vdn7fhz0nj3p0sccwfwx-gcc-mesboot-wrapper-4.9.4.drv /tmp/guix-tests/store/f3jwskmf67sygjwlzihfqg8c7ing5v2h-coreutils-mesboot-8.32.drv /tmp/guix-tests/store/jhxcm09ixcxflzj7pps2p2919xr84k1d-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/6z5mvhisanwrfysx1xycls9lxi981pnl-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/ga42pr5ql96zfffq1k2n1y41wi0dnynk-make-boot0-4.3.drv /tmp/guix-tests/store/wsl6y1qxqicyzyp6mf6x77nldq2z4mgw-make-4.3.tar.xz.drv /tmp/guix-tests/store/fbdb338895z1pxxvj7fw5ds0qjlw85wi-make-4.3.tar.gz.drv /tmp/guix-tests/store/1r5alsldvcm0pcyhz8j02408kwc9h8w4-coreutils-8.32.drv /tmp/guix-tests/store/28srzg1d29ib1irxbzi9fk7rrk0f97x7-glibc-utf8-locales-2.33.drv /tmp/guix-tests/store/31ynb1v33jwhdjxabyj1hld4z4cqfw10-gzip-1.10.drv /tmp/guix-tests/store/2xn4kldrp61hfckbg0avipblbj2i4zh1-binutils-cross-boot0-2.37.drv /tmp/guix-tests/store/5463l4gfs49z8l8fl5x498wc4vljb9ks-bzip2-boot0-1.0.8.drv /tmp/guix-tests/store/g78sycrm5khz8zsmwr74vvzi6s31ilb7-diffutils-boot0-3.8.drv /tmp/guix-tests/store/bxd2p2f8lj97vgf37whqdarcn1d6gaxa-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/b0wf6jj900mq8jr1hvnz0m7r013mwq1b-binutils-2.37.tar.xz.drv /tmp/guix-tests/store/rnf2sdkbcvzgmh9q0yw73nxa6dj610qd-binutils-2.37.tar.bz2.drv /tmp/guix-tests/store/fjmsf6vy5k9nl3mhv1icz9zhh079hvgy-coreutils-boot0-8.32.drv /tmp/guix-tests/store/m49masb33y42pagqn4632v3178la5x6v-patch-boot0-2.7.6.drv /tmp/guix-tests/store/3n6sjkgk5w9r85c98vasrpz6k2j1yvp7-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/cr1bxmjrzwp08d24xhy813lk12xjgnrz-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/q7mfng9qycyw02r33jsd192y7vws4sv1-findutils-boot0-4.8.0.drv /tmp/guix-tests/store/nza6k7vfjasggv9d84x9a4y83xzrpidx-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/cwv7q6hndy1x0bq75982y1y6cvj97xm5-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/r451nrnvjgq11g12n02dh2hyb0in129y-gawk-boot0-5.1.0.drv /tmp/guix-tests/store/h7pl4l9d7glwwzwq9j52r1w2qagm8vj8-gawk-5.1.0.tar.xz.drv /tmp/guix-tests/store/s06clpb7wvgcdfw30b42gng76wqkkrjq-sed-boot0-4.8.drv /tmp/guix-tests/store/vxsgc5i8h97h1cd02g396q1nwpzm5xkp-sed-4.8.tar.xz.drv /tmp/guix-tests/store/gp60lbidd6w1wx2c6y5jqvkwl0x4y3bd-sed-4.8.tar.gz.drv /tmp/guix-tests/store/wbpbqgz2c03cr49ycmcl0irk1y47i5dk-file-boot0-5.39.drv /tmp/guix-tests/store/x06bazrlprvpcbc58a05kz1z2csiqxjd-file-5.39.tar.gz.drv /tmp/guix-tests/store/3yx971rsypz08f6qk39160656hpm94za-ld-wrapper-boot3-0.drv /tmp/guix-tests/store/6ij77q3z8ls23by5vjs27nd6jhaznahq-binutils-2.37.drv /tmp/guix-tests/store/64qrbix8fxbjb2hd4rm0c631hgqwjnk4-ld-wrapper-boot0-0.drv /tmp/guix-tests/store/8nqm9c1ifvkf2bhndcr05zcdisx1pph8-linux-libre-headers-5.10.35.drv /tmp/guix-tests/store/6kcg61laka4xdgslj6imfh554i98nh98-bison-boot0-3.7.6.drv /tmp/guix-tests/store/7gqd926jmxp0khnvgq2pv2zl69dn6h7l-m4-boot0-1.4.18.drv /tmp/guix-tests/store/d239cynjpqs5y8s96j15c63r9qqip0pn-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/0gz3gg3pkp4h1fzjvd05q3hjn5qdqf3l-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/msvanrx4pw48m51f80gz4di3lsc47wdq-perl-boot0-5.34.0.drv /tmp/guix-tests/store/l6svcs2m1n2gf3wkmz9aa8sf5zsj2cv5-perl-5.34.0.tar.xz.drv /tmp/guix-tests/store/996m74z5nwxznn7bmnciizz55m7nilg9-perl-5.34.0.tar.gz.drv /tmp/guix-tests/store/wic5rircv0j175rkxl09602j6p469dma-bison-3.7.6.tar.xz.drv /tmp/guix-tests/store/mwh86hg6bngysnm67f1xdsda7ri82sq2-flex-2.6.4.drv /tmp/guix-tests/store/spxzhxlf6l3x4qq4g5v61cj9387msq39-flex-2.6.4.tar.gz.drv /tmp/guix-tests/store/sihkrdis0xzy9irbd8dw63x0mmxkcl17-linux-libre-5.10.35-gnu.tar.xz.drv /tmp/guix-tests/store/nn0qhvnaxdmpqy7a6n7qrh96dh6lbadq-glibc-2.33.drv /tmp/guix-tests/store/2bxqsc39ars6rp32jf2i9sx873zq1k14-gettext-boot0-0.19.8.1.drv /tmp/guix-tests/store/kqdqmkib75axbnx46c1kh4gflaaiawy5-gcc-cross-boot0-10.3.0.drv /tmp/guix-tests/store/764aa4ikh7xga4425q8fbngzw6m8nbf5-gmp-6.0.0a.tar.xz.drv /tmp/guix-tests/store/n58bgs6rw253ksjmgp94424wc6p2l9kr-gmp-6.0.0a.tar.xz.drv /tmp/guix-tests/store/7kr0a4hn9p29jmxlzb3nsdfp5h928aza-mpfr-4.1.0.tar.xz.drv /tmp/guix-tests/store/8skvzb6yi12rcf7ydxpih2lld4xipq0n-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/zwz13mny5rfi7r82m6v9xwr0f0bni317-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/dgpqhbsilasssq9lx2nys0b1gz2a1fj0-mpc-1.2.1.tar.gz.drv /tmp/guix-tests/store/fkrjzgb9agzywqhasdmxnxsxc0j397mf-libstdc++-boot0-4.9.4.drv /tmp/guix-tests/store/nz5wbmkwbji6wanrni6rghbxxln7q8h6-gettext-0.19.8.1.tar.gz.drv /tmp/guix-tests/store/63yxjgapw3ax9h0v4hdpsfn6a5w2n625-texinfo-6.7.drv /tmp/guix-tests/store/z55fvjavx7m05canxf9wxjnybxc18cpg-texinfo-6.7.tar.xz.drv /tmp/guix-tests/store/abkazal8wkhcny5hhym32zk758h906aq-python-minimal-3.5.9.drv /tmp/guix-tests/store/8iaf3qyl4iq7m0v7vl7z758nyyzjia5s-Python-3.5.9.tar.xz.drv /tmp/guix-tests/store/z2k3xwyx78szxi84n92kvyq8icg8bghv-Python-3.5.9.tar.xz.drv /tmp/guix-tests/store/avks1qdlfxslrlwscqpfb84d48r7296b-expat-2.4.1.drv /tmp/guix-tests/store/xpfbn20zx2glkhw6lvxq9crh9bpxrgc7-expat-2.4.1.tar.xz.drv /tmp/guix-tests/store/fsd50q8b88v7qkr4npmg978jg1mjk3xn-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/bdm4zw5c5rdd6s6im6f0kah2p723v6rl-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/kp5sknsj1454y6zqd1hxsnqrzwwfwyl2-bash-static-5.1.8.drv /tmp/guix-tests/store/1r858j26w7n3q22y0w5bwji1yv33v2mx-bash-5.1.tar.xz.drv /tmp/guix-tests/store/1pqf7xa3zw5jirxps365jh71l5w5di1p-bash51-002.drv /tmp/guix-tests/store/42llqz5s00hk42n8lvqc6j7pj16d9c3j-bash51-003.drv /tmp/guix-tests/store/gqa661q2d7gj2fj1c0s3gpyl95qz5mhp-bash51-008.drv /tmp/guix-tests/store/h08lc9s667p2akhrc8r2ka7rlsvf205g-bash51-007.drv /tmp/guix-tests/store/lx5r32zxsvjjxpf087yq6dsykj0hl77n-bash51-006.drv /tmp/guix-tests/store/p7d6p04cdhyv9z8ynm3rndmyc4pnj251-bash51-004.drv /tmp/guix-tests/store/r557karcdn38zkjnicj1pfz2hbxffg54-bash51-005.drv /tmp/guix-tests/store/x1yh82gllm2gb7rr9ih09k7pkr2ir1h4-bash-5.1.tar.gz.drv /tmp/guix-tests/store/xfimxxhin100m007x8zrkqwrncwi322m-bash51-001.drv /tmp/guix-tests/store/55kj3wb197x8386mfjp2wxm2vig21399-glibc-intermediate-2.33.drv /tmp/guix-tests/store/myafqgc4phzbgjjddyc0agpxwfgiv2pq-gcc-cross-boot0-wrapped-10.3.0.drv /tmp/guix-tests/store/55kj3wb197x8386mfjp2wxm2vig21399-glibc-intermediate-2.33.drv /tmp/guix-tests/store/zvg5sxnhajqni7wzy5l4h7x27j7h88yl-gcc-cross-boot0-wrapped-10.3.0.drv /tmp/guix-tests/store/nn0qhvnaxdmpqy7a6n7qrh96dh6lbadq-glibc-2.33.drv /tmp/guix-tests/store/8kxahkk6q5lfm1gygdnl9wnbmsylskh5-gcc-10.3.0.drv /tmp/guix-tests/store/pawv19rd2pzcr73ppdff6d2a53vz7cal-libstdc++-10.3.0.drv /tmp/guix-tests/store/sxiwhsz5n3fra2csamrl2yx09nv6ljsz-zlib-1.2.11.drv /tmp/guix-tests/store/2dwangmzsam0fgd3rs9wbyqb92wcmq69-zlib-1.2.11.tar.gz.drv /tmp/guix-tests/store/rmvxrzsya87n7220q0c8z2mg188c00rs-bash-minimal-5.1.8.drv /tmp/guix-tests/store/yd4409s7idr3casyamizdswxm2mgx9ib-gzip-1.10.tar.xz.drv /tmp/guix-tests/store/4g8qm7lzfvnc4bc2aj64g43hydzzvhd7-module-import-compiled.drv /tmp/guix-tests/store/84z0kxmh8v40jgmvyf66f8p8v2fprxwi-guile-3.0.7.drv /tmp/guix-tests/store/3kd1pynnnmc73bjsg691jcsjb659n4kg-libffi-3.3.drv /tmp/guix-tests/store/s9s21b5jmv991y0lnqm768hzhdmv8xq0-libffi-3.3.tar.xz.drv /tmp/guix-tests/store/kj9yqyccmd53s4wwawm0zrfx8yqpslh1-libffi-3.3.tar.gz.drv /tmp/guix-tests/store/4q7308mqiw0yr8r0913nk78pg5fqcn25-libunistring-0.9.10.drv /tmp/guix-tests/store/qsp3n4v40g59yjqiv0rqk3j7i5r54j8v-libunistring-0.9.10.tar.xz.drv /tmp/guix-tests/store/7xih6z0gmhfh9nmwkwm5h7k0yaxsinvn-libgc-8.0.4.drv /tmp/guix-tests/store/gfg35ln1y7nscnqx8q3z9gxhmprn0vxz-gc-8.0.4.tar.gz.drv /tmp/guix-tests/store/mp4wk7xz07rh97bm45h66sxdywnar0ip-pkg-config-0.29.2.drv /tmp/guix-tests/store/nxihpq3vybz0x90zzia6l1yczyck6ssz-pkg-config-0.29.2.tar.gz.drv /tmp/guix-tests/store/f42y4jmg9rzd5jlbn3yqkv505spa1v29-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/cjpi9gx7d09p0x7qq52p5pnwjf82pw7f-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/rbywvq6xyv568ssg9qbgcyvx28fb6z2l-module-import-compiled.drv /tmp/guix-tests/store/nv66mr84piwhc34sk6wxzna179sbsnp1-grep-3.6.drv /tmp/guix-tests/store/45s03v4qk5wbf8fnw99gx01f9c1i1cji-grep-3.6.tar.xz.drv /tmp/guix-tests/store/95svf6iqafs302fxyb2s5igywcs3b9h2-grep-3.6.tar.xz.drv /tmp/guix-tests/store/0x0nn9xha55sfwmyi3qp0dxkjbr4xksm-flex-2.6.4.drv /tmp/guix-tests/store/318j171zf85x2r0inlrdjzlw9s4j5jxf-gawk-5.1.0.drv /tmp/guix-tests/store/r4wxjqckq3qk7n4grlarxzrrz5bwzwar-libsigsegv-2.13.drv /tmp/guix-tests/store/ln2rk124y5h0wjwznjavnpkjcgd3cmlm-libsigsegv-2.13.tar.gz.drv /tmp/guix-tests/store/alp126wy4pssnw3rhj50vkwl21j6cm6k-m4-1.4.18.drv /tmp/guix-tests/store/6m9ql8gavn97x0y6l8hc952z40kqk1dv-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/cw67varbp424prlapj2n12x3gbsnkxri-patch-2.7.6.drv /tmp/guix-tests/store/7hiq9q6pdrzhxzxlzkbv7y1d2mndsada-ed-1.17.drv /tmp/guix-tests/store/8zwq9dq748n2wh075mkka3pdp91d3ra8-lzip-1.22.drv /tmp/guix-tests/store/ry04wwhrrmm82gy33hkc6l4mwh593k2r-lzip-1.22.tar.gz.drv /tmp/guix-tests/store/hlrr0wgywdcnc46cdw7nsw440ppz3hjy-ed-1.17.tar.lz.drv /tmp/guix-tests/store/d7c5psvcfg3zxdrqnlg4cgd8n40vzzrp-xz-5.2.5.drv /tmp/guix-tests/store/3zbxv7sx9r45vvmp626l4fckd2j1b7i3-xz-5.2.5.tar.gz.drv /tmp/guix-tests/store/f31bn2iplkycig3zii817s0qs006s83d-tar-1.34.drv /tmp/guix-tests/store/bb4cqy5kr3336fibsnly2nfikyh3ck02-sed-4.8.drv /tmp/guix-tests/store/f14mp5ay63q9glswj3qx59780in9s6pv-findutils-4.8.0.drv /tmp/guix-tests/store/hn91y4c75km5l8fpvq6dr9zrsp0ajh0g-make-4.3.drv /tmp/guix-tests/store/x87qrjk71i4d70axfpx8naaxgdk2p2zf-pkg-config-0.29.2.drv /tmp/guix-tests/store/jy63f3w8adlmq0k5ifw74y83km0h8867-gzip-1.10.drv /tmp/guix-tests/store/rmlgn82111iaqs6nrn9mzwc7qmwbwpbq-bzip2-1.0.8.drv /tmp/guix-tests/store/vf7misgy9n3qv2k6q951p81d03p07m55-diffutils-3.8.drv /tmp/guix-tests/store/zd4531k8g4nvlkw7kmbanys2442nrcw7-perl-5.34.0.drv /tmp/guix-tests/store/aiqy58f95rvgdhcjfv5j171b3vz5703h-coreutils-minimal-8.32.drv /tmp/guix-tests/store/ziw0bb4kkg26h3qqxs569dvvhsjgha0p-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/w5qslmsqgnaklak5cwq5dj6b31i6i75w-ld-wrapper-0.drv /tmp/guix-tests/store/ns9vjq1zfpig5nkx4w3ak0paqaar17q0-help2man-1.48.3.drv /tmp/guix-tests/store/7z862sbf317y0bb60pzyzxh6vazbajmp-perl-gettext-1.07.drv /tmp/guix-tests/store/7y6kvxbvjzbxy9qg1yswwgd3a8yk5c8i-gettext-1.07.tar.gz.drv /tmp/guix-tests/store/anzhkpa9hwjb5lkphghk3758amkiv1fd-perl-5.34.0.drv /tmp/guix-tests/store/64mxfl2hx8l13a4x36k4bxdf6vg89axf-perl-5.34.0.tar.xz.drv /tmp/guix-tests/store/lz6prbny660gnzdzrixpjw5rk6ha3f7y-coreutils-minimal-8.32.drv /tmp/guix-tests/store/wvg4dnn3xjhmafm97gaxlm32zkh0cs8h-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/qiwcizzk5mcn5al5k2zrpjr7alhrfb7z-module-import-compiled.drv /tmp/guix-tests/store/9ih08mn0qwz8g4qm6sqakkj5fmjc2834-gettext-minimal-0.21.drv /tmp/guix-tests/store/7j0048c5dja0z4h8pw3hcxy7am73i44b-gettext-0.21.tar.gz.drv /tmp/guix-tests/store/bl1di42yx9rffkigj107fgxkhg8grgby-libunistring-0.9.10.drv /tmp/guix-tests/store/gas0pv0scxgfk02wy3dq9sx11ws03qq1-zlib-1.2.11.drv /tmp/guix-tests/store/jdshxc72sgxcp7zclyap3f055rjr6k32-ncurses-6.2.20210619.drv /tmp/guix-tests/store/3qbcpqcjq599s8gifclynsmwr4p03mvr-ncurses-6.2.tar.gz.drv /tmp/guix-tests/store/jink7f853xckfg6k1ff7plvvglxapdnx-pkg-config-0.29.2.drv /tmp/guix-tests/store/y4pyk345jdd744skqzhm6bpm5bwdqz8h-ncurses-6.2-20210619-patch.sh.bz2.drv /tmp/guix-tests/store/sg961ns7yhwd24vv6ayk6i1yr4nlx75l-libxml2-2.9.12.drv /tmp/guix-tests/store/1wd62gi5bx7ng6g9fs6l4xnqbqmfa0qf-libxml2-2.9.12.tar.xz.drv /tmp/guix-tests/store/2idkp353bl323xdw0z57q303aqrfqy1p-libxml2-2.9.12.tar.gz.drv /tmp/guix-tests/store/rk4a5rac7cw817f8p0f0nc1a151cj729-xz-5.2.5.drv /tmp/guix-tests/store/s5pqg2q4306h1lw7axzfh5zd887pz7hm-help2man-1.48.3.tar.xz.drv /tmp/guix-tests/store/wp8yhrsnrrrl8q0hcs57iir9s7zgfs8z-bison-3.7.6.drv /tmp/guix-tests/store/20xz1m34vfj1mwd6p7c4cwn7l4pcn3lx-mig-1.8.tar.gz.drv /tmp/guix-tests/store/mlxzxk31rlxby0mk7a9xlh4yr5n5h531-bison-3.7.6.drv /tmp/guix-tests/store/wk4y5fw46lpiks3nhyavdy62jrwl8vf4-gnumach-headers-1.8-1.097f9cf.drv /tmp/guix-tests/store/0i4mbqy6d3l3dvmwfj74jvj8kbdr3i77-gnumach-1.8-1.097f9cf-checkout.drv /tmp/guix-tests/store/gbwd6y5vk6b03x2bdc2pva69awypaxab-tar-1.34.drv /tmp/guix-tests/store/n8dvvg1hril6jhabdbdzjy8rzifl8d82-tar-1.34.tar.xz.drv /tmp/guix-tests/store/h9p5mgh4k40zzvpwdkibivan9rhv6112-guile-json-4.5.2.drv /tmp/guix-tests/store/3ayr7n6kmdacnqc9ixwxiv4ljx41p0qj-libgc-8.0.4.drv /tmp/guix-tests/store/hc2si93786dhmf8rkcjc9849d3jkr2n9-guile-json-4.5.2.tar.gz.drv /tmp/guix-tests/store/qrxbnaalml4zjq4zriyxgagvc80i4n2j-guile-3.0.7.drv /tmp/guix-tests/store/8yy259nxkbdmxg4s333zibj348pmvnj6-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/cwhnsc6zgmib5f0ibglb1x19sjvlsnfl-bash-minimal-5.1.8.drv /tmp/guix-tests/store/70qwbjjzddp2p3gb0hyglvrmmrzbpyfl-bash-5.1.tar.xz.drv /tmp/guix-tests/store/kdh69530857ckvkg6zbrz58w074mf94d-libffi-3.3.drv /tmp/guix-tests/store/4iv7xccsyv7d4bf8h3ibskr9h38g0m6s-libffi-3.3.tar.xz.drv /tmp/guix-tests/store/jnvzvx33v9vnd4lycaj6vnnk4nl1mxj6-gzip-1.10.drv /tmp/guix-tests/store/kiz3kla1krvp2bq0s3bbv0dk20myjqks-git-minimal-2.34.0.drv /tmp/guix-tests/store/58gjb6h5a3v6i0q6xn68xarndrx8x8d8-git-2.34.0.tar.xz.drv /tmp/guix-tests/store/750k5r60ammbl7lp8z822vaxziwas4r1-openssl-1.1.1l.drv /tmp/guix-tests/store/7bs6c33kxpkckmwxp6qc2xhm905yi1rx-openssl-1.1.1l.tar.xz.drv /tmp/guix-tests/store/26dfcnik0r6j8jx9vgzlfxf4hgzh703j-openssl-1.1.1l.tar.gz.drv /tmp/guix-tests/store/a4xa1s93pdh06fnxrs65lgwcjvcc2qrh-bash-5.1.8.drv /tmp/guix-tests/store/7rv6pfnk8jsflzfk9da37zarwhdqvhlx-readline-8.1.1.drv /tmp/guix-tests/store/ql417a64ihsydrs7mhvbbqqlsb36z5fw-readline-8.1.tar.xz.drv /tmp/guix-tests/store/5i4p6227zbffm31ilwdslkf8hp7na6ij-readline81-001.drv /tmp/guix-tests/store/6pf18jjqziyg99bawbm9ml3rway9jwgr-readline-8.1.tar.gz.drv /tmp/guix-tests/store/svimmzm5lidn7aiwznpwpss97xh3cy26-expat-2.4.1.drv /tmp/guix-tests/store/v0l8mhkn2iyhwrfiszkrmj7ibk5zx9lg-curl-7.79.1.drv /tmp/guix-tests/store/271y08k3lbygwrik0hrgapw0ckk1m0gw-curl-7.79.1.tar.xz.drv /tmp/guix-tests/store/9hq57p3ad1ic2j39384kga7r5cswrl5g-curl-7.79.1.tar.xz.drv /tmp/guix-tests/store/2fc7max83k9ffnn9smr88wjsbls0dk95-libtasn1-4.17.0.drv /tmp/guix-tests/store/cpqyb4yqqr23r80z7zwqfbar5a5zljbd-libtasn1-4.17.0.tar.gz.drv /tmp/guix-tests/store/3k5x35hf9g2wnhfiiz1mjjgxrszlpvwy-python-minimal-wrapper-3.9.6.drv /tmp/guix-tests/store/1sdqx2m2s7l7s47spr580mqpq6nrxzdh-unzip-6.0.drv /tmp/guix-tests/store/3931a5290hjrb8i7ll8alxval909zj2f-bzip2-1.0.8.drv /tmp/guix-tests/store/9ci4b5dmf57v4m82xrpvrhqymppnhapi-unzip60.tar.xz.drv /tmp/guix-tests/store/r71n4nz3n8jbf3xpgiyf7bm6abijf3aa-unzip60.tar.gz.drv /tmp/guix-tests/store/61dvnyvahfqgk2ybaf8h9h3qw3sr548w-tzdata-2021e.drv /tmp/guix-tests/store/h33cs5rz7pjsihbmbr9z81mxifjim28y-tzcode2021e.tar.gz.drv /tmp/guix-tests/store/x4bzh17akymhinbivdkpvzk3jfgppkws-tzdata2021e.tar.gz.drv /tmp/guix-tests/store/8fhcdd63qchplx6cavccbbz8fd8g7hwa-zip-3.0.drv /tmp/guix-tests/store/xzf93s9a239fi87ljql9q5rxq2qxdpnh-zip30.tar.gz.drv /tmp/guix-tests/store/pxbw31zv39w6jx41b089xbcbsyv69h8n-python-minimal-3.9.6.drv /tmp/guix-tests/store/1l8s46qm3r2218gl7h5rsnldsfw3slq5-Python-3.9.6.tar.xz.drv /tmp/guix-tests/store/5rw5wan64ypb8d3b78g745ggwhqgq202-Python-3.9.6.tar.xz.drv /tmp/guix-tests/store/6ngi008q26nykjpwcgyag95yxk0nigd3-mit-krb5-1.19.2.drv /tmp/guix-tests/store/37878rp89annprp7yysxhjvzp63ffp62-krb5-1.19.2.tar.xz.drv /tmp/guix-tests/store/s87xhbnghb50rkgxn368azjjjqdaqjqb-krb5-1.19.2.tar.gz.drv /tmp/guix-tests/store/jhi2bd7r9ishvd1kgjnya8qrnklv6n6j-tcl-8.6.11.drv /tmp/guix-tests/store/f9wdlyxl5wydc318c44nq3ma7x8s9d2i-tcl8.6.11-src.tar.gz.drv /tmp/guix-tests/store/dbmfxlhqzm1i4gm4iz15dapdqzp3jxqz-libidn-1.37.drv /tmp/guix-tests/store/bgn9613c6kynjwbgyya9war0nvg9d5za-libidn-1.37.tar.gz.drv /tmp/guix-tests/store/dv50w1gbnvwdk30v3cp42jjk8r05hbys-nghttp2-1.44.0.drv /tmp/guix-tests/store/4bj2avw2hj1sfz8ng3ijparz2srcfh0i-jansson-2.13.1.drv /tmp/guix-tests/store/6391i70n7v4sc7s2vsaagmp85rr539ip-jansson-2.13.1.tar.bz2.drv /tmp/guix-tests/store/5df61b4kyk6l8w4fa2aijxq3qs760qw5-python-3.9.6.drv /tmp/guix-tests/store/2pbjflmj8bxd036acq7q2d3lr3bin7ma-util-macros-1.19.3.drv /tmp/guix-tests/store/9qg2hy1j2wc6rkz1pd2915cs024lqgxj-util-macros-1.19.3.tar.bz2.drv /tmp/guix-tests/store/51dnwfpxd5l2v2rvxw8ib20a37l7zk3k-libxext-1.3.4.drv /tmp/guix-tests/store/6g1xvm90msv53g6sb6f7i6rykdx5qljv-libxau-1.0.9.drv /tmp/guix-tests/store/iffnlj0wva781vik5rdjygq1mchc3xpy-xorgproto-2021.5.drv /tmp/guix-tests/store/6nww2m1008c1kica3rdzlrddhm1wa3a8-xorgproto-2021.5.tar.bz2.drv /tmp/guix-tests/store/rsg9kgfkvmimcw4bslxndfkgk891a6fw-libXau-1.0.9.tar.bz2.drv /tmp/guix-tests/store/axqxcky588yq2rdgy1bbvlw36xb2jci5-libXext-1.3.4.tar.bz2.drv /tmp/guix-tests/store/d6j3w8yl89rgf9xzdwjlx2h5mviq6nad-libxdmcp-1.1.3.drv /tmp/guix-tests/store/2kz4w9cj3rqplsivbq7mglnl30m3sk2d-libbsd-0.10.0.drv /tmp/guix-tests/store/ysdx2pj9qm7sdzib8laglrb64lm0q4ga-libbsd-0.10.0.tar.xz.drv /tmp/guix-tests/store/xqn1scwbz18s8agfjmcnjmsjblsqainf-libXdmcp-1.1.3.tar.bz2.drv /tmp/guix-tests/store/q57y3zg0l75wrf45dr39xbz7jssxmbrh-libxcb-1.14.drv /tmp/guix-tests/store/dsa6ag49wpm7k0la4k8akjabr2jjmaj0-xcb-proto-1.14.drv /tmp/guix-tests/store/8j45n0xvx51khl21k5nfxz0yr2q3fh2b-xcb-proto-1.14.tar.xz.drv /tmp/guix-tests/store/6nml96as3nrmwm93b79nz27hinwhd24h-xcb-proto-1.14.tar.xz.drv /tmp/guix-tests/store/ld5mxq7i90bjfnavrfphcklyc9l2qsln-libxslt-1.1.34.drv /tmp/guix-tests/store/07rr7b99vvfnibbypy3mhm3gp8j1mjip-libxslt-1.1.34.tar.xz.drv /tmp/guix-tests/store/6261ygwa0c2k9gbvwzlwcp10ln37zypn-libxslt-1.1.34.tar.gz.drv /tmp/guix-tests/store/pv43c73yjlbdvj505qkhz72n53888rm0-libgpg-error-1.42.drv /tmp/guix-tests/store/gghrlrx4nn75xmd9475kx5js77jrk0yg-libgpg-error-1.42.tar.bz2.drv /tmp/guix-tests/store/yjml8qgkwvy4gaq3zmzmbm8lhmzl5h09-libgcrypt-1.8.8.drv /tmp/guix-tests/store/bx0vm5b2ccwycccn72jig129k1zx0rgl-libgcrypt-1.8.8.tar.bz2.drv /tmp/guix-tests/store/q439f58w5yhc8m3lfv7g70kv9pr6ir3k-libxcb-1.14.tar.xz.drv /tmp/guix-tests/store/sg5lm1gsgz6cfr1lazih69qjsvjhdlpz-libpthread-stubs-0.4.drv /tmp/guix-tests/store/drm43ciqk5nrclm0m0xx1qnf74rj0ff3-libpthread-stubs-0.4.tar.bz2.drv /tmp/guix-tests/store/vns2iiqngfw5d94q9z6q9cv7pga0y6jh-libx11-1.7.2.drv /tmp/guix-tests/store/24pvb1wiqqcs33yfh1w7k1nbf9ramjcz-libX11-1.7.2.tar.bz2.drv /tmp/guix-tests/store/xzs25q1sjgw1khz1waam6himmafm2knk-xtrans-1.4.0.drv /tmp/guix-tests/store/1126ijgbfffqrrldwsyx3v1gmk1mx7f0-xtrans-1.4.0.tar.bz2.drv /tmp/guix-tests/store/h0yk8f8lx9qdfir7ddimiyv9jvl9f0pq-sqlite-3.36.0.drv /tmp/guix-tests/store/w23brs6w9glnpqnq5ryyk5pqj2blw3di-sqlite-autoconf-3360000.tar.xz.drv /tmp/guix-tests/store/qisf3xcq22k54gfp21gy5k1ax5mbzh6k-sqlite-autoconf-3360000.tar.gz.drv /tmp/guix-tests/store/l19i732brklmdm6zqiri4nd4zbgiyjj9-tk-8.6.11.1.drv /tmp/guix-tests/store/g7r4i7b2dcb617nwmg01xpwr2ikyd6kz-freetype-2.10.4.drv /tmp/guix-tests/store/09j39fslws4iw70z6ry4gzkqlk4vvhhk-freetype-2.10.4.tar.xz.drv /tmp/guix-tests/store/ng4zs1wqs9vz9f55zzm2yy33s9gcjwcv-libpng-1.6.37.drv /tmp/guix-tests/store/kzlipz5rkgmlarc5ha2fbwxaycv5szzy-libpng-1.6.37.tar.xz.drv /tmp/guix-tests/store/l83iw7niv9jg30353lp4w9nrr94mm14y-fontconfig-minimal-2.13.94.drv /tmp/guix-tests/store/345a5i2br828d0765dz38ic48qwfpdyp-fontconfig-2.13.94.tar.xz.drv /tmp/guix-tests/store/a3i6alpja83x1xbiqsc3km576bhv7vcw-fontconfig-2.13.94.tar.xz.drv /tmp/guix-tests/store/hmx9wnavyx4rngfjy2zqfirzy2mb5nw6-font-dejavu-2.37.drv /tmp/guix-tests/store/75zk2nvxy8fq33cbab6wj3fdrx80kgxb-module-import-compiled.drv /tmp/guix-tests/store/ssb2rvpc9kk8l7qywb0310mws6hbcmgy-dejavu-fonts-ttf-2.37.tar.bz2.drv /tmp/guix-tests/store/n1dhf6236z3b04nd7iarpp86f89vigjm-util-linux-2.37.1.drv /tmp/guix-tests/store/ccbbmbqbpla0vihq3lkd6d0gj61jw6bx-util-linux-2.37.1.tar.xz.drv /tmp/guix-tests/store/dhw7wnqx63fimp5gyihfc7f1zgnffx8p-util-linux-2.37.1.tar.xz.drv /tmp/guix-tests/store/fs7md06fll5pw3si0a7yp4x8690zx5iq-net-base-5.3.drv /tmp/guix-tests/store/gp6yh8frjw869jcz2wmlg2hpx95s5hkg-netbase_5.3.tar.xz.drv /tmp/guix-tests/store/i3in0r3953m47jmyywhfhbgmrkqwh0nk-file-5.39.drv /tmp/guix-tests/store/y8adhgnrc66qzyfhqvang2j9knvwnkna-gperf-3.1.drv /tmp/guix-tests/store/f0gldjpzyhx45cspak0sryq7qgkyk15g-gperf-3.1.tar.gz.drv /tmp/guix-tests/store/njv249l0jblj16cbpbns09kcvsjihc52-tk8.6.11.1-src.tar.xz.drv /tmp/guix-tests/store/hw1s5a9q7cfq354irmmqz4axrk9bfz65-tk8.6.11.1-src.tar.gz.drv /tmp/guix-tests/store/v1jyz9q73492w6a2kcsswnrk71ia7nfg-libxft-2.3.3.drv /tmp/guix-tests/store/4m2j4vq3vgjw7bwvk9qa8zj0yvycr2qb-libXft-2.3.3.tar.bz2.drv /tmp/guix-tests/store/zg074ad235byb8wa6mr8lsmwbzifhrzb-libxrender-0.9.10.drv /tmp/guix-tests/store/f6lrgv46lxqvfw0cpl328m3c4vxwhc3f-libXrender-0.9.10.tar.bz2.drv /tmp/guix-tests/store/qhkwhlm03sbiakrspcdnfjm8jnig2rb5-gdbm-1.20.drv /tmp/guix-tests/store/p2fgkynpq0cc1hsdahnyl3wsw8g03r2s-gdbm-1.20.tar.gz.drv /tmp/guix-tests/store/anrw5lk2ihfwsmn7b44aq7g92vyb0qwm-c-ares-1.17.2.drv /tmp/guix-tests/store/0ix34q4wikwjl9dyhrwj8v0zrc9scwmp-c-ares-1.17.2.tar.gz.drv /tmp/guix-tests/store/fbb763a72zcpkf40ngcnnkwrmklcaykn-libev-4.33.drv /tmp/guix-tests/store/v59nbs8hhi7y38rlrza41v599vhrg7if-libev-4.33.tar.gz.drv /tmp/guix-tests/store/hkrxaymdmvsydv80qzypdqdvwyxfzwfg-jemalloc-5.2.1.drv /tmp/guix-tests/store/xfd4jchdg070q8v5pz9dy04qsqkdvf7z-jemalloc-5.2.1.tar.bz2.drv /tmp/guix-tests/store/r45grnnq40zgb88ch4h3nagdlb1crxgw-nghttp2-1.44.0.tar.xz.drv /tmp/guix-tests/store/w9w900gizlyc8cval4ml1rs5n57jzxdq-cunit-2.1-3.drv /tmp/guix-tests/store/4w9f7zq2wcvq406mq143qrdv2kgkpmz6-CUnit-2.1-3.tar.bz2.drv /tmp/guix-tests/store/h86v5461s471avy87lk1v4rnvpxj28q2-autoconf-2.69.drv /tmp/guix-tests/store/7yzkj2aiwcv45m7v2zpvk0gay3qzfr13-autoconf-2.69.tar.xz.drv /tmp/guix-tests/store/qyc1w406j6b63ccch5kv739yzskhg5dq-automake-1.16.3.drv /tmp/guix-tests/store/7r7kv4h9kpr0wzg750v2rxh83sc70vsm-automake-1.16.3.tar.xz.drv /tmp/guix-tests/store/3qnbjsyhm0n756fyl84cdg82w7nd2i0a-automake-1.16.3.tar.xz.drv /tmp/guix-tests/store/8293lnwizh921n7rb4slx04n3fgcmkdf-autoconf-wrapper-2.69.drv /tmp/guix-tests/store/xqpgqnb4p1fv1kpvyayxbj3vagafkdrb-libtool-2.4.6.drv /tmp/guix-tests/store/grn8fjffancm8kmxyphqpkxqrkm8n5ar-libtool-2.4.6.tar.xz.drv /tmp/guix-tests/store/x0pxsqw96f6s6lzlc4lirafhqp2f6z51-libtool-2.4.6.tar.xz.drv /tmp/guix-tests/store/hdv75icgi96n4dya0c9sw1kw6ngzr1vb-libltdl-2.4.6.drv /tmp/guix-tests/store/j3wb0n8i15plzl0xdjydw9a4s934ay8y-p11-kit-0.23.22.drv /tmp/guix-tests/store/llgmwawanvydqrc45jzk8axw546ldvbs-p11-kit-0.23.22.tar.xz.drv /tmp/guix-tests/store/mp3xshhx50p17dsr5jk9c1grq9v340xr-gnutls-3.7.2.drv /tmp/guix-tests/store/5vi4q4815wnd31k8ykz4dbj5xppd8dr1-iproute2-5.15.0.drv /tmp/guix-tests/store/8xa2yywkwwwn5wbg5bvwfqk1d9b438mx-libmnl-1.0.4.drv /tmp/guix-tests/store/w50vmqn1iyyzylcpndw3x4dcchmi1gbr-libmnl-1.0.4.tar.bz2.drv /tmp/guix-tests/store/m62yylqf3v8jsaww3azizasgsqlafw21-iptables-1.8.7.drv /tmp/guix-tests/store/lq05a46wmp6jrf0i4k52g5p9pkpqdp4b-iptables-1.8.7.tar.bz2.drv /tmp/guix-tests/store/xn45wbmqg4mwzlcxaplwjgn0z5gwvcw9-libnftnl-1.2.0.drv /tmp/guix-tests/store/4ag3cv0l22vv9jj99hxfma9kigvi8wvq-libnftnl-1.2.0.tar.bz2.drv /tmp/guix-tests/store/s6sixlapcf5dxry4jdpy9jhi028m434b-bdb-6.2.32.drv /tmp/guix-tests/store/i3krc52xsg1zkp962dcz9m8ll0vxldig-db-6.2.32.tar.gz.drv /tmp/guix-tests/store/sdi4rzlwr27fjynszqnsrizm9zccq7d2-iproute2-5.15.0.tar.xz.drv /tmp/guix-tests/store/82j84747fnwdcmm724dfy04sm806krzb-texinfo-6.7.drv /tmp/guix-tests/store/ck9ljybbzy523aglhvxahpf9l4azw29z-gnutls-3.7.2.tar.xz.drv /tmp/guix-tests/store/slr8w4nqzwg16hl8ay47w0xsj9jk4pkh-gnutls-3.7.2.tar.xz.drv /tmp/guix-tests/store/mq8lqqf07acviqc019qcnf3q4mwsd8sw-nettle-3.7.3.drv /tmp/guix-tests/store/11nhd3j0pad2fl8x20d3hhrcjrfpm1dm-nettle-3.7.3.tar.gz.drv /tmp/guix-tests/store/zqzqiz8ffgfvw997ji632w9b46c23arm-gmp-6.2.1.drv /tmp/guix-tests/store/s901pzz4dqzcg9pwgznpdbzkw3g61ixs-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/nrlm703y6k8drsbf7ccv0z1iqwkx3pgq-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/n1dhf6236z3b04nd7iarpp86f89vigjm-util-linux-2.37.1.drv /tmp/guix-tests/store/p1mzyqv7h0yizb9phwm3qlid3lgv5fwg-net-tools-1.60-0.479bb4a.drv /tmp/guix-tests/store/xf2nq8aswhggrysvra20hlslxmcxkjbp-net-tools-1.60-0.479bb4a.zip.drv /tmp/guix-tests/store/sb02qg9k5d8w2vkk2x9amqrci62d7h0a-which-2.21.drv /tmp/guix-tests/store/10ry6n9y18mw9xaw0piwjl6aw1cx1hck-which-2.21.tar.gz.drv /tmp/guix-tests/store/sbrgbba9gajv9iwpsyg5vxiikxyp5pdg-libidn2-2.3.1.drv /tmp/guix-tests/store/x3m1jhwn6mj7v9nx7hivg9gcf7ml8nap-libidn2-2.3.1.tar.gz.drv /tmp/guix-tests/store/vz2izsciq3i68syj5lhqrzij6sf7g253-socat-1.7.4.1.drv /tmp/guix-tests/store/8z3wx3108rrz26yq6g979i18h8f3pf7a-socat-1.7.4.1.tar.bz2.drv /tmp/guix-tests/store/yicma5c3s17nwxawa6laj9i4svb5sy51-datefudge-1.23.drv /tmp/guix-tests/store/hl90h3rfc3x400wmn0v47k39lbi9333j-datefudge_1.23.tar.xz.drv /tmp/guix-tests/store/q2yblbhhy33li9f24bblnr8p10xzkbra-datefudge_1.23.tar.xz.drv /tmp/guix-tests/store/mp3xshhx50p17dsr5jk9c1grq9v340xr-gnutls-3.7.2.drv /tmp/guix-tests/store/myn2qgrmfr3avmwwnyx85aksx3vdbmp4-guile-zlib-0.1.0.drv /tmp/guix-tests/store/xiks15rj499cwpq9xks9wbpnr7lgq5xq-guile-zlib-0.1.0.tar.gz.drv /tmp/guix-tests/store/rn4qvs92zi8ill6l907041b9pjhfcd3r-module-import-compiled.drv /tmp/guix-tests/store/pnyamlz72zgj182x65ky6bpa7b67bjv5-texinfo-4.13a.drv /tmp/guix-tests/store/svpf80r3sgl3qhix8s7qypns8sarb9pl-texinfo-4.13a.tar.lzma.drv /tmp/guix-tests/store/cjr7s0q59krnqbb4j6f87c2sqjbmbcaz-glibc-hurd-headers-2.33.drv /tmp/guix-tests/store/arpvy8735w6sbchd3402f5nzmjyy20f3-mig-1.8.drv /tmp/guix-tests/store/fhs6y09yrzkdds3zg21h48jwbsjjz01y-hurd-headers-0.9-1.91a5167.drv /tmp/guix-tests/store/n6hcgmxygqh9f9gibfyzi20cxiip066i-mig-1.8.drv /tmp/guix-tests/store/njq3pvxs2ywq0ks9f7d23jzryrpvzai2-bash-static-5.1.8.drv /tmp/guix-tests/store/qlbfs0pnyppvqm5rpazfd3583waah5dl-gnumach-headers-1.8-1.097f9cf.drv /tmp/guix-tests/store/hdg90cviz6z5j13m1cir01na1rgf82dx-libtirpc-hurd-1.3.1.drv /tmp/guix-tests/store/qwa5wjmq5iwyxs741al8mcabip5fvvdl-libtirpc-1.3.1.tar.xz.drv /tmp/guix-tests/store/l2r03nwqxqjf1851k25vq9jddm8y9d8f-libtirpc-1.3.1.tar.bz2.drv /tmp/guix-tests/store/ynycbmfqzr4ml7nkz0r7z7i54q1bfdbp-sed-4.8.drv /tmp/guix-tests/store/bhj4c2q1732gkqrgdvw8kz663vssda4f-sed-4.8.tar.xz.drv /tmp/guix-tests/store/zgycizxnp88kmf7zgafnijsyhivsq0j4-dde-ac1c7eb7a8b24b7469bed5365be38a968d59a136-checkout.drv /tmp/guix-tests/store/m7yq02pnd7ai5r2nn0b6lblr1askdp67-guile-readline-3.0.7.drv /tmp/guix-tests/store/qgpcpl2armwf68kpz42rmh12lx10hkf8-inetutils-2.0.drv /tmp/guix-tests/store/jsajnsc9fwq36pxmgyg4f7kldx4l4wdz-inetutils-2.0.tar.gz.drv /tmp/guix-tests/store/qh53mwr5a45lprg833xwvqhax0k2ph8w-guile-lzlib-0.0.2.drv /tmp/guix-tests/store/258q9gcnija62sq31aqiflkvlzr1227s-guile-lzlib-0.0.2.tar.gz.drv /tmp/guix-tests/store/9v07fi1sa4a8sdqb5dl9m8whamwvr1s4-lzlib-1.12.drv /tmp/guix-tests/store/6xijr98z01455mpp61fdcb6rrd7ivgfv-lzlib-1.12.tar.gz.drv /tmp/guix-tests/store/qj10acayp5islalwc0azil3aij0psv14-guile-lib-0.2.7.drv /tmp/guix-tests/store/sqq1f975w3mv5mhripygm7mf8qpingcp-guile-lib-0.2.7.tar.gz.drv /tmp/guix-tests/store/rbr0d97ga7wp05ixndi01zq5f7610f44-less-590.drv /tmp/guix-tests/store/yccr1pc9hpqqk14mfasvcppqj4cl04as-less-590.tar.xz.drv /tmp/guix-tests/store/madpyki5i3q3r4sh9sdivm7db8nhydkc-less-590.tar.gz.drv /tmp/guix-tests/store/rd5v3vqbpggag964f69grqqpmyarqdms-shepherd-0.8.1.drv /tmp/guix-tests/store/gk3x735dci3qaw541pl9l90z0f5w248b-shepherd-0.8.1.tar.xz.drv /tmp/guix-tests/store/xpcy4xvdh1psxz8s6rfa26hffblgykvs-shepherd-0.8.1.tar.gz.drv /tmp/guix-tests/store/s23rcz0izdn6i28ph8086zlv5f846yhr-diffutils-3.8.drv /tmp/guix-tests/store/ksqy4pgivydykas6p5vr55vhm85ywlp4-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/v31w0liavr5q243sg8j318nd05vwsari-guix-1.3.0-16.10ceb3e.drv /tmp/guix-tests/store/0zgpdz9ygz4sli5wwd429mnkd426ac4s-graphviz-2.49.0.drv /tmp/guix-tests/store/00869marixcrqj5axm0bm3by8nxh1pd9-swig-4.0.2.drv /tmp/guix-tests/store/64vl8sv5q10x0wx5qz2yr1a966grs27k-boost-1.77.0.drv /tmp/guix-tests/store/6wf8ybg4ad5ndbsykaffzyrifh4rjxj6-boost_1_77_0.tar.bz2.drv /tmp/guix-tests/store/ahxbd7r4pwpz7plklqq9jr1rk48xv3zl-tcsh-6.22.03.drv /tmp/guix-tests/store/glxl883f74gazyldc9rjzqcnh1qgb1xk-tcsh-6.22.03.tar.xz.drv /tmp/guix-tests/store/5ggczxi2i04vd81yh42v7sg0lr0bv5fs-tcsh-6.22.03.tar.gz.drv /tmp/guix-tests/store/j4rdkmgmv5gf07mh13q2p8sizfqi0zcx-module-import-compiled.drv /tmp/guix-tests/store/mwgh318v1ma3idnj3l4vsbn71yh9rkhx-icu4c-69.1.drv /tmp/guix-tests/store/97bz00wrbbwn79skw5m5a22qz7hwrrlg-icu4c-69_1-src.tgz.drv /tmp/guix-tests/store/sdw1p14wrcjqjz0r3jmsywy0lh3nms0r-swig-4.0.2.tar.gz.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/518rx93g9y0dq7mbwhdpr0dqyzxcd0bl-libdatrie-0.2.13.drv /tmp/guix-tests/store/cqp8x0bnpjkxiy949h7c5kyivyrj8s4k-libdatrie-0.2.13.tar.xz.drv /tmp/guix-tests/store/w1df50wgkyql0b8sj1cn65qn1jn098kh-doxygen-1.9.1.drv /tmp/guix-tests/store/ln972qkvma2g6qwwcba09g1gmh1pamnh-cmake-minimal-3.21.3.drv /tmp/guix-tests/store/np2m2v8p5hv89ffc1xd8kkjmc9x6dwvx-doxygen-1.9.1.src.tar.gz.drv /tmp/guix-tests/store/5myq09qf466wka0b5fzpfmcvcikq2300-libxaw-1.0.14.drv /tmp/guix-tests/store/9ah006xxmdjr2hc9srmfnh55x0xslyn9-libxpm-3.5.13.drv /tmp/guix-tests/store/c81ixkb0abyckywhfmnp3966i2fnz40y-libxt-1.2.1.drv /tmp/guix-tests/store/h6yxfd4fm8zsvyygb3zzvna8hsys6536-libice-1.0.10.drv /tmp/guix-tests/store/l0ydvipidjilav2xkfc9d8x593scp7xh-libICE-1.0.10.tar.bz2.drv /tmp/guix-tests/store/mp66vbanf751fr8xslddhwsh9sw9jlwj-libsm-1.2.3.drv /tmp/guix-tests/store/7ir6rvz3ijm3bi7d6hyrnkpzxa3nibgg-libSM-1.2.3.tar.bz2.drv /tmp/guix-tests/store/pspndz27fi9lr0m7nafmbyy0vg44xsdf-libXt-1.2.1.tar.xz.drv /tmp/guix-tests/store/2jja5ci203vghx0g9va4wfak90rdjwfw-libXt-1.2.1.tar.bz2.drv /tmp/guix-tests/store/s97ngr3x783qxh2yk03lkjhka4vj0dqk-libXpm-3.5.13.tar.bz2.drv /tmp/guix-tests/store/gagrzik18ii9w65j4ki8zchcrx97i9dd-libXaw-1.0.14.tar.bz2.drv /tmp/guix-tests/store/wlpmac7biws74w8gfs4fd1bab65rg535-libxmu-1.1.3.drv /tmp/guix-tests/store/3qh8q3j64dfcdkscrmfspary1h0s4rk7-libXmu-1.1.3.tar.bz2.drv /tmp/guix-tests/store/6nnsb5ij49hqrb38j1xzd51mkignsygs-cairo-1.16.0.drv /tmp/guix-tests/store/1vwqa9dkwhggp5i5c6f4r5mhrm9jnr05-libpciaccess-0.16.drv /tmp/guix-tests/store/fpmwwkafs0ppcp478m82vsk4qbqb6bxl-pciutils-3.7.0.drv /tmp/guix-tests/store/41lndimrmc5h40wjqwbdbsj98fkmpwgi-kmod-29.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/64i36988f5cw6y2cmjyvs70rqxhqxkqc-kmod-29.tar.xz.drv /tmp/guix-tests/store/fplbsi54rvw8krf6rqv86p5514p5lhbk-kmod-29.tar.xz.drv /tmp/guix-tests/store/2cz4hv6dgp1l25c4jjvrq0afbrbcma0s-gobject-introspection-1.66.1.drv /tmp/guix-tests/store/22qy2xj02x5al8jxzq6i5zqcwfsx29yi-meson-0.60.0.drv /tmp/guix-tests/store/9mn0kdb31jrchnp3zzgnvmgzcm1cd7ij-ninja-1.10.2.drv /tmp/guix-tests/store/cm8zp3pqpg7c94yhpzfmkrmhhsny6ykl-python-wrapper-3.9.6.drv /tmp/guix-tests/store/lg5j257z460kqn5y2zpq9095qpyvvdx8-ninja-1.10.2-checkout.drv /tmp/guix-tests/store/gkxhhd51vbqrrv4x3bycsy2k12f5d0fm-meson-0.60.0.tar.xz.drv /tmp/guix-tests/store/jv39rkg0s8lmmag8r5x30mai1x5136r6-meson-0.60.0.tar.gz.drv /tmp/guix-tests/store/49i46bq4kmzasvkl55d2a7is0p5ygf8h-gobject-introspection-1.66.1.tar.xz.drv /tmp/guix-tests/store/wpk723agq2ywwsnrpjpfsllid19y9547-gobject-introspection-1.66.1.tar.xz.drv /tmp/guix-tests/store/akwd6b9vagad50v50plfa2j7q1mh6h0z-glib-2.70.0.drv /tmp/guix-tests/store/63wvgyi3jk3aa3vbbhx14cbqnqivxh0n-bash-completion-2.8.drv /tmp/guix-tests/store/rws4frwzrw3fwd8nk53axbxjjbwsim5j-bash-completion-2.8.tar.xz.drv /tmp/guix-tests/store/x5mynqylgv1vrs9gmf63dfdih7n63q0w-bash-completion-2.8.tar.xz.drv /tmp/guix-tests/store/lhrcf8n28hh7a70slzcjcbwv8x876k7q-dbus-1.12.20.drv /tmp/guix-tests/store/f1pv7sj0vb1f4cff2xrlyfh5yykrvdvv-itstool-2.0.6.drv /tmp/guix-tests/store/p94shj49z9m8j2wq3jmskxvi7gbpzia9-itstool-2.0.6.tar.bz2.drv /tmp/guix-tests/store/xdi5126485gsw6mvx37vc6n5wr36yhfy-python-libxml2-2.9.12.drv /tmp/guix-tests/store/ddwzrp96zh4fch63w0n81acc65dc5n1q-libxml2-2.9.12.tar.xz.drv /tmp/guix-tests/store/frv94krkjsrdy4n0h78zjhbygv6iza09-docbook-xsl-1.79.2.drv /tmp/guix-tests/store/5c1aprdmpq422i3lz6gavkirf1vz7xl9-docbook-xsl-1.79.2.tar.xz.drv /tmp/guix-tests/store/3bz1xi8mifzvvihbff8fjpp5fs4ybiib-docbook-xsl-1.79.2.tar.bz2.drv /tmp/guix-tests/store/igkmyldvyjb57jg0kwhjsm0ddksk700a-xmlto-0.0.28.drv /tmp/guix-tests/store/wppi02xzax3c4ivvbhhfpsn9j9j1l52m-xmlto-0.0.28.tar.bz2.drv /tmp/guix-tests/store/qvrk2k11sm7wfgzxlc7mh46lp2s5iybl-dbus-1.12.20.tar.xz.drv /tmp/guix-tests/store/43mj9x70809bvm0xds686lf0xn5id1n9-dbus-1.12.20.tar.gz.drv /tmp/guix-tests/store/w4s80qcss3rvlnrqaznrnc9xx2b4hzhk-yelp-tools-3.32.2.drv /tmp/guix-tests/store/h3bk6giywb5dzhmlk2y3ypgzbaif1b2h-yelp-xsl-41.0.drv /tmp/guix-tests/store/63k0rqrvvqk30d2z0xha13bwid3sh5si-intltool-0.51.0.drv /tmp/guix-tests/store/i10li6jbqagg9mg77pvh813bz1zwpa1z-intltool-0.51.0.tar.xz.drv /tmp/guix-tests/store/5d6qr6jjk5nkmgsnkj73asahwa4ync42-intltool-0.51.0.tar.gz.drv /tmp/guix-tests/store/y2ndd5cyxiwy2n48a0is6vzcnwlw60fn-perl-xml-parser-2.46.drv /tmp/guix-tests/store/rrrrxprhj5v5kdxi5yf0sljhi3gndzq6-XML-Parser-2.46.tar.gz.drv /tmp/guix-tests/store/fsfrm6cpnmjalwkygqpx95afj75w3vsb-yelp-xsl-41.0.tar.xz.drv /tmp/guix-tests/store/vdcv3rxkk4dj6n06kh25fpfpk48sa42r-mallard-ducktype-1.0.2.drv /tmp/guix-tests/store/jdq6fhxdf28djx2avfwlpppq1wp8miin-mallard-ducktype-1.0.2-checkout.drv /tmp/guix-tests/store/vwfl23gk5shi4bslm74bixm45y7lajfc-yelp-tools-3.32.2.tar.xz.drv /tmp/guix-tests/store/x6vqn652f2kkdg0wx4mckn6nspqz43dd-docbook-xml-4.4.drv /tmp/guix-tests/store/0ksyjfjvnwf0rw3xq4b43khd19dnqxsb-docbook-xml-4.4.zip.drv /tmp/guix-tests/store/lw3vp2q5gazfwjnfh9f5i9mxyrsaqjh6-glib-2.70.0.tar.xz.drv /tmp/guix-tests/store/dwqa9sp2cs7sphy7psa1sspw8zyqs0yz-glib-2.70.0.tar.xz.drv /tmp/guix-tests/store/na8q08f52nzbhfq7k420yjbpbvcws9d1-module-import-compiled.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/6f82h68g03inanl5236x60vil6j76awg-libdrm-2.4.107.drv /tmp/guix-tests/store/8sx78yf9lfd5nx3f1yl4bbb271vxilqj-libdrm-2.4.107.tar.xz.drv /tmp/guix-tests/store/950nfjl37002pjyxkzmb003mq5xlix6z-libspectre-0.2.9.drv /tmp/guix-tests/store/p3nbj46s3pa9m8jpmq570jd0dfssb8h6-libspectre-0.2.9.tar.gz.drv /tmp/guix-tests/store/a551rjad05wa1j4fa6f6ria10w7wkzqg-module-import-compiled.drv /tmp/guix-tests/store/bb84qa9qwh8qgglq969nm40kgh7l8z7g-pixman-0.40.0.drv /tmp/guix-tests/store/2kppbr9qf9m8wjr4hnfmlwww2bp85xy9-pixman-0.40.0.tar.xz.drv /tmp/guix-tests/store/ig0j6nwczg9jl5xn2bvi9bczy71z00za-pixman-0.40.0.tar.gz.drv /tmp/guix-tests/store/qwhkcj6gifhipdx0bykh8k508iv20wv0-cairo-1.16.0.tar.xz.drv /tmp/guix-tests/store/5rl93jh93l4lk72ayjkvy9pk1k9q5wvp-cairo-1.16.0.tar.xz.drv /tmp/guix-tests/store/rxws90r8xdblf9zm6v85k5gnb72sjwag-poppler-21.07.0.drv /tmp/guix-tests/store/0gdx1ggq4bdvyzbiprl8akbx0qfag00f-lcms-2.12.drv /tmp/guix-tests/store/id06kx2lmfyzwygvai01njzgdpvgxmgi-lcms2-2.12.tar.gz.drv /tmp/guix-tests/store/6lnqgvpwjxlc0mdc3wnys6zvylpzy571-cairo-1.16.0.drv /tmp/guix-tests/store/8i18wrimi8q61nrvf3ldf3fir1m5kgjc-openjpeg-2.4.0.drv /tmp/guix-tests/store/2zjfjys3k0nbwmsnwzmm1hdg4n8kg5cb-openjpeg-data-2020.11.30.drv /tmp/guix-tests/store/dhvvb83w2mlqflgvy1600sicnn4ny7gm-openjpeg-data-2020.11.30-checkout.drv /tmp/guix-tests/store/z73n3cdwj0jbw5frn2jffyai2nzb6pld-module-import-compiled.drv /tmp/guix-tests/store/54nawf3lmxbipflmpwzb0zwpkan6zpkh-openjpeg-2.4.0-checkout.drv /tmp/guix-tests/store/pjrd3y75k6s05mcvacawa1d1hjaqhiz6-poppler-21.07.0.tar.xz.drv /tmp/guix-tests/store/8i3kns3w97qgixhn4q7wb5n6yjyvy8sp-pango-1.48.10.drv /tmp/guix-tests/store/b1a1ndzgxjc5r856wqkp0m65yczvdy39-harfbuzz-2.8.2.drv /tmp/guix-tests/store/frbfs7dcw5rkrmny4iwxyv6s3whq8paa-harfbuzz-2.8.2.tar.xz.drv /tmp/guix-tests/store/wgjj3bjv2gx0xdml240cpj0ws558y29m-graphite2-1.3.13.drv /tmp/guix-tests/store/3vlz4jvai3ijrg5y196y528fkwfgzx6s-graphite2-1.3.13.tgz.drv /tmp/guix-tests/store/j02az1xlma527fwlnjq1h668q3y8vl3l-python-fonttools-4.6.0.drv /tmp/guix-tests/store/1d43ppzhvv8ss51649knyyqqiy50zl0m-python-pyparsing-2.4.7.drv /tmp/guix-tests/store/2mjimlk8rz6yb79r9qbb3v2f232m9qkc-pyparsing-2.4.7.tar.gz.drv /tmp/guix-tests/store/1h2lyrlgj97g3n16wwhc79c7ln2l024l-python-pytest-runner-5.2.drv /tmp/guix-tests/store/4im9x2mbmjl1cn21s7l9kl29kn5wmw0j-python-six-bootstrap-1.16.0.drv /tmp/guix-tests/store/fz8jx0fx1i03ax2sf3c33r9y069ixahm-six-1.16.0.tar.gz.drv /tmp/guix-tests/store/ggwznmj631clj16p3xjixh1x2yphbabg-pytest-runner-5.2.tar.gz.drv /tmp/guix-tests/store/mqg9wwykz0dmqjmm6zdh9wp5iqg9x9yw-python-setuptools-scm-6.3.2.drv /tmp/guix-tests/store/pirnb59cw9wr18ar7h2d195zhr74l3sy-setuptools_scm-6.3.2.tar.gz.drv /tmp/guix-tests/store/sklgjna5vkzr1kd9rp8czvnd3yvqlqhr-python-tomli-1.2.2.drv /tmp/guix-tests/store/72ikfq0yinwmnhiyxjwcgvzp5bwq78zn-python-flit-core-3.4.0.drv /tmp/guix-tests/store/v5qfxqkfbigl8ls0jpiki8jjzsj0fwql-flit-3.4.0.tar.gz.drv /tmp/guix-tests/store/yqplrl93igh8b2j8l3lcgkmqky2rddna-python-toml-0.10.2.drv /tmp/guix-tests/store/vgq2xxs4ami7pwd2r00f9jqzhd2a2l4r-toml-0.10.2.tar.gz.drv /tmp/guix-tests/store/c66fzdc43r5gnxm5cw2cs51swhyq3imj-python-pypa-build-0.7.0.drv /tmp/guix-tests/store/jams5qd3hs82bjqa55x7r2wqzglgcyjz-build-0.7.0.tar.gz.drv /tmp/guix-tests/store/sbn7vfhnjf0dv6vw732k2vkwf9yvjjqs-python-pep517-bootstrap-0.9.1.drv /tmp/guix-tests/store/w0cz8xk3pf2nzgibfdf3i3i3yb20hcy6-pep517-0.9.1.tar.gz.drv /tmp/guix-tests/store/w2a8nw7lpi8jv4hbp1pa0xb9gv94c56f-python-wheel-0.33.6.drv /tmp/guix-tests/store/ghnsg29srfi8xhjzq069a667zb883cfc-wheel-0.33.6.tar.gz.drv /tmp/guix-tests/store/w893c4ik91b1a8lkziqnm18i6kgbvx5d-python-packaging-bootstrap-20.0.drv /tmp/guix-tests/store/qxvrgxg6q9smn6z8nlrqrwnif93x9pww-packaging-20.0.tar.xz.drv /tmp/guix-tests/store/13xp6id4887qq28b6sc6h9wzhlkbksc8-packaging-20.0.tar.gz.drv /tmp/guix-tests/store/rla4c0kgqjcm16l79hqc54hxscai5n7k-tomli-1.2.2.tar.gz.drv /tmp/guix-tests/store/5p0bvvky448923k7fylsdzgsv8fdppww-python-py-1.10.0.drv /tmp/guix-tests/store/cvhnybips1n2cy2yaw0yfhy1ar4lqphv-py-1.10.0.tar.gz.drv /tmp/guix-tests/store/83x000x8nqk95j7xcxiswn62fzq1l8g0-python-attrs-bootstrap-21.2.0.drv /tmp/guix-tests/store/73jn0glzgd211jicb55dfp81m55k255w-attrs-21.2.0.tar.gz.drv /tmp/guix-tests/store/jknvfj1msw0c1qs0d3day2zc5244jsbq-python-more-itertools-8.2.0.drv /tmp/guix-tests/store/clv9p0c7v9l5y2v6yl9z23nl4psb6csx-more-itertools-8.2.0.tar.gz.drv /tmp/guix-tests/store/l5ghzm4xa5hp8bvrr7zk9hrmcrzk90nw-python-pytest-6.2.5.drv /tmp/guix-tests/store/2r79s4gaz7qp0310ky8ny9qzsxngl3g4-python-sortedcontainers-2.1.0.drv /tmp/guix-tests/store/4w8xkhsgjwr6xjr6jvmpcd16fxf8pfvs-python-filelock-3.0.12.drv /tmp/guix-tests/store/rmimazya2r7xxbivh7y2w5w49387abzb-filelock-3.0.12.tar.gz.drv /tmp/guix-tests/store/6wivz10hfixa5jy9788zdxcbv0l16wls-python-appdirs-1.4.3.drv /tmp/guix-tests/store/j79g0cbd6ijr44zqffdqwy4ps84wpal7-appdirs-1.4.3.tar.gz.drv /tmp/guix-tests/store/fqcnc4pm0nlpq4p9gjn23qqx8dnnns8m-python-distlib-0.3.1.drv /tmp/guix-tests/store/jv28qccm9b1byfsga3677rznvrawlgrr-distlib-0.3.1.zip.drv /tmp/guix-tests/store/ih7z1b3a6lrkrjr7zwvgq3cm0p09lhm6-sortedcontainers-2.1.0.tar.gz.drv /tmp/guix-tests/store/6hwhxayicrwk3lg9a8v2cb5nn7lvq3vv-python-mock-3.0.5.drv /tmp/guix-tests/store/acvv5nylvrrg6x6597nhybhv540gnv5m-python-six-1.16.0.drv /tmp/guix-tests/store/n6xfvp2qp1b6q8kmlxcbflgmn1vbq5ca-python-pytest-bootstrap-6.2.5.drv /tmp/guix-tests/store/6k7ji090bd9xgl89drg7mg72b38hfhmd-pytest-6.2.5.tar.gz.drv /tmp/guix-tests/store/p69x7vz4k9v8rzp07hqqznr1y7qvpi5b-python-iniconfig-1.1.1.drv /tmp/guix-tests/store/p5m9njda55z5wlahnxja3hxbd7hj1l26-iniconfig-1.1.1.tar.gz.drv /tmp/guix-tests/store/pgm55978kw09r2ymcl12wz12xaagl2ly-python-wcwidth-0.1.8.drv /tmp/guix-tests/store/w2cdb3kc9s3w00cfcir2ydlmljdb2k0r-wcwidth-0.1.8.tar.gz.drv /tmp/guix-tests/store/r8hhnw5h7n5dpyml45273ixag5vz290v-python-pluggy-0.13.1.drv /tmp/guix-tests/store/cyw49jzinnn3dysmlsff31j718p59y4s-pluggy-0.13.1.tar.gz.drv /tmp/guix-tests/store/wjdmpalck3l6df3f5ggdryhf90v4v3mj-mock-3.0.5.tar.gz.drv /tmp/guix-tests/store/9fjdiiy3rf18wgy9kw3q1n1nrs72m4s0-python-nose-1.3.7.drv /tmp/guix-tests/store/p6r6akibgmldl4rsqnm763mpsiqydmr5-nose-1.3.7.tar.gz.drv /tmp/guix-tests/store/cc907ag3kvv1qanzfzn512qxq4i5dabp-python-xmlschema-1.2.5.drv /tmp/guix-tests/store/16lzr4lakg8cdcjmif35jf0wknybf41q-python-xmlschema-1.2.5-checkout.drv /tmp/guix-tests/store/fybsdvq2d2vwm6k7jlk26k8nivbngp0n-python-elementpath-2.0.3.drv /tmp/guix-tests/store/yqynjpjmk3gndv32p4j54nx3zg3l1qdf-elementpath-2.0.3.tar.gz.drv /tmp/guix-tests/store/k841ad1fk364xn2i28457377x67aii3v-python-lxml-4.6.3.drv /tmp/guix-tests/store/kgll9h1rj15ja2k4wlikww4jnl2vh1yd-lxml-4.6.3.tar.xz.drv /tmp/guix-tests/store/rv5z8vvw51i198jfqmyn1nbmj1y9zhzz-lxml-4.6.3.tar.gz.drv /tmp/guix-tests/store/wvk1hnlgjljijvsiv7jqcn5w6kry8jpa-python-hypothesis-6.0.2.drv /tmp/guix-tests/store/g14wbkgrq2d5dxxk544s8s6qxpi00xkn-hypothesis-6.0.2.tar.gz.drv /tmp/guix-tests/store/rchdn7fkqzhkhyhc3vc16qfr8xr5lw4w-fonttools-4.6.0.zip.drv /tmp/guix-tests/store/bz0fz8qvgpd72zjnzpz5km09hdbzx2wn-libthai-0.1.28.drv /tmp/guix-tests/store/3cw20nvvzakssdrhiilwp0l0a7qwn6dz-libthai-0.1.28.tar.xz.drv /tmp/guix-tests/store/d5kih80xiplf7cmnslqgdyzcj8frn4zy-fribidi-1.0.9.drv /tmp/guix-tests/store/dd8n4rcqdlw1swx78ww2hyci13qci8lm-fribidi-1.0.9.tar.xz.drv /tmp/guix-tests/store/qb1nsf5jahi9444ng6g0navi9agsaskk-pango-1.48.10.tar.xz.drv /tmp/guix-tests/store/dy6hd89lb65wqf97wn6768pcs0yjfvvb-pango-1.48.10.tar.xz.drv /tmp/guix-tests/store/akwd6b9vagad50v50plfa2j7q1mh6h0z-glib-2.70.0.drv /tmp/guix-tests/store/kx2igpxh0yn94klc72w5q0j3iyaibfk6-gts-0.7.6.drv /tmp/guix-tests/store/7wdbwbs2lmq4ljp29kvj3n89lwlyhdbv-gts-0.7.6.tar.gz.drv /tmp/guix-tests/store/wj2wwpcgvsw0rljdwkjwgadqsrjiqqgx-graphviz-2.49.0.tar.xz.drv /tmp/guix-tests/store/xa7r2qdzcyl4mavpigr3jdf8bxpfxr27-gd-2.3.2.drv /tmp/guix-tests/store/wij1b56irx5hfbpc65l1fyyid7w4zlfx-libgd-2.3.2.tar.xz.drv /tmp/guix-tests/store/kjcf53firqwhmaah3ih1cwkkm6qk76mi-libgd-2.3.2.tar.xz.drv /tmp/guix-tests/store/3m7dfgmlw64rqsn3wghs0iz5f4353hdd-guile-zstd-0.1.1.drv /tmp/guix-tests/store/63ckcgkk5ijfa36g3dyhmlmnrk7abgmc-po4a-0.63.drv /tmp/guix-tests/store/04kg0x46kjrjhxrmwqddd0kmzg6yskfd-perl-cpan-meta-2.150010.drv /tmp/guix-tests/store/3xbblh9q03wkinhppx94lsyw4cznd9pq-CPAN-Meta-2.150010.tar.gz.drv /tmp/guix-tests/store/7cxa6x3fs3mb2hblvnzigjnzskmdx2ih-perl-parse-cpan-meta-2.150010.drv /tmp/guix-tests/store/gyxah97nb34z2l70ghyzgc0ypn86l5dx-perl-cpan-meta-yaml-0.018.drv /tmp/guix-tests/store/5ngr6g0iqi4dj8s27yrfybv38nqrzzz6-CPAN-Meta-YAML-0.018.tar.gz.drv /tmp/guix-tests/store/vca8zzap8k41maynsxbxna3ldmcn4gkd-perl-cpan-meta-requirements-2.140.drv /tmp/guix-tests/store/kd2gq3315fyp62vik956s13kbm05fsqn-CPAN-Meta-Requirements-2.140.tar.gz.drv /tmp/guix-tests/store/05sjz0rc22jvmbx96cs2dqxxs44sbhx8-texlive-fonts-latex-59745.drv /tmp/guix-tests/store/033x5fzq5q8vr6j13armc7r1ca4xwhdj-texlive-fonts-latex-59745-checkout.drv /tmp/guix-tests/store/7l5z7snlsga3fw2flfaffcxsyr6j5vvy-subversion-1.14.1.drv /tmp/guix-tests/store/501mancxh5qh5188h3paqs4pk4fq8b5y-serf-1.3.9.drv /tmp/guix-tests/store/66d050g2wvpnsc493993jdcr0aax2mvy-apr-1.7.0.drv /tmp/guix-tests/store/n4iifygzr0z00q0yanfn2ilr49dvdwxi-apr-1.7.0.tar.xz.drv /tmp/guix-tests/store/mvmxxxv9329799j8k90mspfb3bs9fcjg-apr-1.7.0.tar.bz2.drv /tmp/guix-tests/store/d54vkrhnid9ih38kj5ylcx9xdpzbzbh1-serf-1.3.9.tar.xz.drv /tmp/guix-tests/store/wqp9kx7a7zhkic9dyr8dd9ydn2h9p7sm-serf-1.3.9.tar.bz2.drv /tmp/guix-tests/store/j1x5mizgcj8d336yjyprmfj581jymyr6-module-import-compiled.drv /tmp/guix-tests/store/y1x2iw8b9kpg3i84x05nrg6g3iddg01v-scons-3.0.4.drv /tmp/guix-tests/store/azxdh47x6m9zyrhj44jqw3x7dwqs7dbs-scons-3.0.4-checkout.drv /tmp/guix-tests/store/z3f881dri1cf7vycm2pw02vc628cgjbf-apr-util-1.6.1.drv /tmp/guix-tests/store/ix7s1881lq6rhnwf5999ad8h8lnqggik-apr-util-1.6.1.tar.bz2.drv /tmp/guix-tests/store/9hjylqx90b24zc48i1rs87fn1laxcbaq-lz4-1.9.3.drv /tmp/guix-tests/store/5kyr84znk1llqw0hk0wfgq6pv94c90ys-valgrind-3.17.0.drv /tmp/guix-tests/store/s7njaa84r894m76jfq3gvv4k7iav4j5r-valgrind-3.17.0.tar.xz.drv /tmp/guix-tests/store/nkxjl1qkpnhh6wg6zklyf59qjk6cpx7d-valgrind-3.17.0.tar.bz2.drv /tmp/guix-tests/store/ncjw157s7k071ih8r48gvf5qjkq4skpk-lz4-1.9.3-checkout.drv /tmp/guix-tests/store/g8xy3126li96808909l5ybaxyw6wkisb-subversion-1.14.1.tar.bz2.drv /tmp/guix-tests/store/ws0j4ngxinicvp5fs0sdqmwswq7xbjrh-utf8proc-2.5.0.drv /tmp/guix-tests/store/1jxh04yx9h1a6xg6hnp37m015wfam52d-GraphemeBreakTest.txt.drv /tmp/guix-tests/store/4bnmlj9xn83mws5626hhv24n1zi78f63-utf8proc-2.5.0-checkout.drv /tmp/guix-tests/store/vmlk6mkr23fywyyz3gg19gah64nzbdb5-NormalizationTest.txt.drv /tmp/guix-tests/store/v9nimga3xxn0pf7qdl5xr51yi4z0bwk6-module-import-compiled.drv /tmp/guix-tests/store/1xw6j6c6w8dpalm826x3c5qbv9pwdqvr-texlive-metafont-59745.drv /tmp/guix-tests/store/bkri74603h5ivpi2n8z4nbas3ghs7f2d-texlive-metafont-59745-checkout.drv /tmp/guix-tests/store/z276lcx4zcvaf5z3lw3ziig3fmpxdb8b-texlive-bin-20210325.drv /tmp/guix-tests/store/5hschmgyxcc7gnm6p1pz0cpk70fbzb1s-ruby-2.7.4.drv /tmp/guix-tests/store/p0y6mj365xhh7g30m3z9vmxijik1i89s-ruby-2.7.4.tar.xz.drv /tmp/guix-tests/store/xn88a8ymv5ykrnxg3l6c9b5vzkmywiip-ruby-2.7.4.tar.gz.drv /tmp/guix-tests/store/67dbd2w2g0rnvvpxd7yshwb2fhj18cdm-texlive-20210325-source.tar.xz.drv /tmp/guix-tests/store/hagdw0vlzdsjlb9w560y280vacwa8z7m-texlive-20210325-source.tar.xz.drv /tmp/guix-tests/store/6nkf0a3rsj2sx3hjfwnahi3blivrwyhw-zziplib-0.13.72.drv /tmp/guix-tests/store/rrx87idvzsb2nsyd7c3pcdr23yb21l5b-zziplib-0.13.72-checkout.drv /tmp/guix-tests/store/fzgnb4xd6nflqfb6kgnxilrb6fk3n0xz-teckit-2.5.10.drv /tmp/guix-tests/store/i4zdw3m62k1dp3i24sz7f2hrya6hs05v-teckit-2.5.10.tar.gz.drv /tmp/guix-tests/store/nrkwb1sgmxi9xl5mbb6yf91v9m5iyhfq-potrace-1.16.drv /tmp/guix-tests/store/d8dp47hxx385s5h89zrw48yfbyay6rva-potrace-1.16.tar.gz.drv /tmp/guix-tests/store/qwcsql4dlchvyqgnmn2gqzwv9888fccc-fontforge-20201107.drv /tmp/guix-tests/store/0f4v143sf9hrkqmqs5ysjazlzhzi5sh0-libxfixes-6.0.0.drv /tmp/guix-tests/store/knm8n2122bxqf1dibappak4hpcc376q2-libXfixes-6.0.0.tar.bz2.drv /tmp/guix-tests/store/9qpacnnjw43zmf85adjky00rxy4aix33-libuninameslist-20200313.drv /tmp/guix-tests/store/wbxi070izyy2s6iklq7rx6hmgs44n68l-libuninameslist-dist-20200313.tar.gz.drv /tmp/guix-tests/store/ahx9v6vhrfvaq06ac394426hsczhmx30-fontforge-20201107.tar.xz.drv /tmp/guix-tests/store/n32nvwp2h8x6h8lsb3idxq72v13v2pwj-libspiro-20200505.drv /tmp/guix-tests/store/3zbl7jx0dlw41z4z60f439zhdd5169sf-libspiro-dist-20200505.tar.gz.drv /tmp/guix-tests/store/nmp0vl6aalsnqz0pbfzgb6pqgnjvi4zf-libxi-1.7.10.drv /tmp/guix-tests/store/xpwxn95cj41w1cmv4rfh1faccw57aqpi-libXi-1.7.10.tar.bz2.drv /tmp/guix-tests/store/yk929yppgq25xj9gmdks0lmqn6x8x3ph-libungif-4.1.4.drv /tmp/guix-tests/store/cgbwr56isj6jk92na66sxchm832n0x42-libungif-4.1.4.tar.bz2.drv /tmp/guix-tests/store/rsya1dr99cz50xq76f6pbrw1nx0qpzxa-texlive-scripts-59745-checkout.drv /tmp/guix-tests/store/vwk86m4ighfxaajsn4l7682xhy2ymczv-config-0.0.0-1.c8ddc84.drv /tmp/guix-tests/store/s68h2c2i3ryhydxzf2ssblpmmxk5p66z-config-0.0.0-1.c8ddc84-checkout.drv /tmp/guix-tests/store/y361fhjx3r74hwaa76mblzywrfmlx6xg-texlive-20210325-extra.tar.xz.drv /tmp/guix-tests/store/y6kyfa9xlx9rjnzcdmyw8nvngs44bis5-texlive-cm-59745.drv /tmp/guix-tests/store/ghpaza4260x6ly1h37ba5k807gc06784-texlive-cm-59745-checkout.drv /tmp/guix-tests/store/0jh1m2pa24fc4m3vp52vnkzvjhvsa077-texlive-hyphen-estonian-59745.drv /tmp/guix-tests/store/09k9vnd7dkb19hv8dhc34glkzbidg6vs-hyph-utf8-scripts-59745-checkout.drv /tmp/guix-tests/store/0dq37vis4zy2zd99bag4i0iq78mw4a1v-ruby-hydra-0.0-0.5abfa37.drv /tmp/guix-tests/store/1ysmk5fxbscxw9n4diiy3yx5adr8dnq5-ruby-byebug-11.1.3.drv /tmp/guix-tests/store/26b4mg3jqhlihsmgm978d2c8fl49i7i5-module-import-compiled.drv /tmp/guix-tests/store/2w24j95bmgdlwvayzgq1qa7f8xadqrkp-ruby-pry-0.13.1.drv /tmp/guix-tests/store/6wji78gb9pc5xii8sk5q171hmvrb7yx1-ruby-coderay-1.1.2.drv /tmp/guix-tests/store/9kawpyx5ba9fb681q3am22zjhgg1jzg5-coderay-1.1.2.gem.drv /tmp/guix-tests/store/bh98fdf928gv0q4n0ymma8xx7330bi35-ruby-method-source-1.0.0.drv /tmp/guix-tests/store/38f3hpg9nqpf1mpry9sp75gdznss019f-method_source-1.0.0.gem.drv /tmp/guix-tests/store/9dhf047aj852m27x46nmdq4b7zsd87lf-ruby-rspec-expectations-3.8.2.drv /tmp/guix-tests/store/i8wd4c75bz0i2hindg6fn7z7rwa1i5b4-ruby-diff-lcs-1.3.drv /tmp/guix-tests/store/cqxs3af7wl5s0lwn38wvy5v6273p13pm-diff-lcs-1.3.gem.drv /tmp/guix-tests/store/ky6mah67sg1gxqla03h0206z404sa0mi-rspec-expectations-3.8.2.gem.drv /tmp/guix-tests/store/rda40n9ii53nqi64c3f81vgij23d0g6l-ruby-rspec-support-3.8.0.drv /tmp/guix-tests/store/21y62wg9lhlbjdww03p446xsvnfcams7-rspec-support-3.8.0.gem.drv /tmp/guix-tests/store/bg2j2mqwggbmba2l6rs7mvcmigj3vp14-ruby-rspec-3.8.0.drv /tmp/guix-tests/store/4y4rkfii0f69xz4dr8xblfassd1z52z3-rspec-3.8.0.gem.drv /tmp/guix-tests/store/pabv5svh0fi3qakfkm193gxc60dbp9ny-ruby-rspec-core-3.8.0.drv /tmp/guix-tests/store/8l88vbzk9l56vxqllbhf0jdvd7qzsirl-rspec-core-3.8.0.gem.drv /tmp/guix-tests/store/qcvzzkfnkyzp5z95jhyyzc2ip0ia1lxn-ruby-rspec-mocks-3.8.0.drv /tmp/guix-tests/store/6d8qa6l899fp00yhhny22skia4j07lnh-rspec-mocks-3.8.0.gem.drv /tmp/guix-tests/store/wvq32r4jcin03byw74znklr0z8qvkyw3-pry-0.13.1.gem.drv /tmp/guix-tests/store/2xh580sg6g239mjzyda0d2m4x2s71jc7-ruby-netrc-0.11.0.drv /tmp/guix-tests/store/4gvgqk1mv282ds4crvlv95jbq32smk1q-ruby-minitest-5.14.4.drv /tmp/guix-tests/store/hycy6gnkzsw8my91n1zg27jpdx6mgi9j-minitest-5.14.4.gem.drv /tmp/guix-tests/store/w2p8dj5pvjb0g4sfniwdhiv265kkby4m-ruby-hoe-3.21.0.drv /tmp/guix-tests/store/hgrxcazfldahc04f9n6sc5j6pr0nlw54-hoe-3.21.0.gem.drv /tmp/guix-tests/store/97qwpdhz5x8n3ia17599q8sy4fn21avy-netrc-0.11.0.gem.drv /tmp/guix-tests/store/6h0pvl76javnv12cw88bdz21hppya526-ruby-rubocop-1.10.0.drv /tmp/guix-tests/store/07g51pfc3kqji3qsizy1f8ivfb64h33g-ruby-bump-0.7.0.drv /tmp/guix-tests/store/8kyyav29z5rx8r0lg39ndc91gd4dpxsc-bump-0.7.0.gem.drv /tmp/guix-tests/store/30z0lizhqz6r3xqhy43i5gwbp0vhvd2n-ruby-docile-1.1.5.drv /tmp/guix-tests/store/9x16xh52jrksjdgx4qp7ii1pl2l5419m-docile-1.1.5.gem.drv /tmp/guix-tests/store/5g012b5cip9yhpcj07b946q4jh43c6g6-ruby-stackprof-0.2.17.drv /tmp/guix-tests/store/1q06r0pq2nvqdpcqdqqf8s5k0d7h5bip-ruby-mocha-1.13.0.drv /tmp/guix-tests/store/02lnrd9jma1nxl1h3fczcad93h5j23k3-ruby-instantiator-0.0.7.drv /tmp/guix-tests/store/0byv9wgigil4c80hsik820afxhpgb0ax-ruby-power-assert-1.1.5.drv /tmp/guix-tests/store/514snacixlp7g53y6ialz6z5xk0ija68-power_assert-1.1.5.gem.drv /tmp/guix-tests/store/vqjmr8l2ahknl228l319p20glq46syvs-bundler-2.1.4.drv /tmp/guix-tests/store/hvnmwp7n0dvj0dahfn42ay0g2nbwz9bl-bundler-2.1.4.gem.drv /tmp/guix-tests/store/5ac160n1w9zmk0iyn3vrhqprk3j5v03n-ruby-blankslate-3.1.3.drv /tmp/guix-tests/store/n5wa6k3fjxlqkwssyb3vcvgchg5klc6v-blankslate-3.1.3.gem.drv /tmp/guix-tests/store/s989ma6vcqcgk2pciahirrnfk9p79yy2-ruby-test-unit-3.4.4.drv /tmp/guix-tests/store/cy85lpk0k0wzhh5mn8rp4136sxdgy5ps-ruby-packnga-1.0.4.drv /tmp/guix-tests/store/kjq3j8ni1c3dk7alnj339ghqvp6mjlj8-ruby-yard-0.9.25.drv /tmp/guix-tests/store/bfcwd393pdrkkr91gjjh90nsdplpdrvv-ruby-yard-0.9.25-checkout.drv /tmp/guix-tests/store/nmjvrv4k6jxjkv98km2b8xyhigw8c87w-ruby-locale-2.1.2.drv /tmp/guix-tests/store/5a76rxgzgpiazkk8wvwalawmjlpwifbn-locale-2.1.2.gem.drv /tmp/guix-tests/store/r9vmnbr2zvy7zjqhradqnqdqcg39yd6i-packnga-1.0.4.gem.drv /tmp/guix-tests/store/v2r729q0axbk3m1nc2fq4zhr8m5cnp9i-ruby-text-1.3.1.drv /tmp/guix-tests/store/fh16xjhr77xh6hlq047kq7wmv0jb3wcz-text-1.3.1.gem.drv /tmp/guix-tests/store/yl064v4hw0kbk4al6pw7cphksqhs757a-ruby-gettext-3.1.7.drv /tmp/guix-tests/store/v0asfhwjggf98vfnvq24rydsa53mdwzl-gettext-3.1.7.gem.drv /tmp/guix-tests/store/hslnwnxxhplv5s4yybrw6a4s21la9m33-test-unit-3.4.4.gem.drv /tmp/guix-tests/store/zjb137yzvp0nmifbkfhlbj756chpr6wj-instantiator-0.0.7.gem.drv /tmp/guix-tests/store/053mv7y6n1a1hypwi1nmj4vn06gczpxj-mocha-1.13.0.gem.drv /tmp/guix-tests/store/4sk5201rg0qmp1lmljl0m222kfbqxrz7-ruby-introspection-0.0.4.drv /tmp/guix-tests/store/gimy8279zh3nw7fngwln4ik0cdk2df38-ruby-metaclass-0.0.4.drv /tmp/guix-tests/store/86w5iy89v8ccpizv14f0hck23iadqc8c-metaclass-0.0.4.gem.drv /tmp/guix-tests/store/pxxkh2xhd2q59cvq69wg77ms6c27i4b9-introspection-0.0.4.gem.drv /tmp/guix-tests/store/8dhn1zvvl8167n919bl9p92ny2nx6xw7-ruby-rake-compiler-1.1.1.drv /tmp/guix-tests/store/9pjgzxz6b3271yh5igzn1053vl1b589w-rake-compiler-1.1.1.gem.drv /tmp/guix-tests/store/js7fdhfm8z411czqx0hhmbk1i5i14333-stackprof-0.2.17.gem.drv /tmp/guix-tests/store/62dyfwxlz939skk3hdzzjr7bsax59wz4-ruby-rubocop-rspec-2.2.0.drv /tmp/guix-tests/store/pmjna5gqv7rcigy49igjshs0n3wfvn4c-ruby-rubocop-rspec-2.2.0-checkout.drv /tmp/guix-tests/store/7652z4wd9n4akn79w0cf4fb81k4l35jc-ruby-rubocop-1.10.0-checkout.drv /tmp/guix-tests/store/7fvyf1w7rv98x7ld33zavy3ywqxc2m7p-ruby-hashdiff-1.0.1.drv /tmp/guix-tests/store/0inr1a5kv6jqqqsxpwn874bs4dk49a0j-ruby-rspec-expectations-2.14.5.drv /tmp/guix-tests/store/0wpfzi41r15awjl1i972k6bhppwv2vil-rspec-expectations-2.14.5.gem.drv /tmp/guix-tests/store/bhfxf6n0qmykxnki79sk3mdninllygjd-ruby-rspec-mocks-2.14.6.drv /tmp/guix-tests/store/9874b00jaans6n95czizpm8p4myg2ppi-rspec-mocks-2.14.6.gem.drv /tmp/guix-tests/store/fh3cq8bqvbknplz5l932y45wxmh8v8qs-hashdiff-1.0.1.gem.drv /tmp/guix-tests/store/n90i8gy8xfmnm1csmli37zwz25d8bjkw-ruby-rspec-core-2.14.8.drv /tmp/guix-tests/store/f73prc25qp5s40plz26xhyyw5qxhqw1j-rspec-core-2.14.8.gem.drv /tmp/guix-tests/store/sw722sandc4q3z2q6rsr3k0jbn24zbsv-ruby-rspec-2.14.1.drv /tmp/guix-tests/store/blmgy1wml1jiywqlzm5q7g0vsm93flvq-rspec-2.14.1.gem.drv /tmp/guix-tests/store/8znqjirknqfzy0kw8qcirfy1dlcnyx6k-ruby-rubocop-performance-1.9.2.drv /tmp/guix-tests/store/qz1i3v4pfif9ki9zb56bm2ahgdpcdgay-ruby-rubocop-performance-1.9.2-checkout.drv /tmp/guix-tests/store/ak191g08768f6vkffd4862vrmwx4c70i-ruby-progressbar-1.10.1.drv /tmp/guix-tests/store/sga6ry8js1gg2jyy2ip7ah5hwyiiqgw2-ruby-progressbar-1.10.1.gem.drv /tmp/guix-tests/store/barpbg063hfrgdsi16s4dkq04i9kp6xq-ruby-parser-3.0.0.0.drv /tmp/guix-tests/store/1y38xv3z2yls22as9yh8s2lx20n4sa0i-ruby-cliver-0.3.2.drv /tmp/guix-tests/store/rj6qrzd987wm8298fzhw8fmjrpkby1qz-cliver-0.3.2.gem.drv /tmp/guix-tests/store/8mglqpwk0s8pq8hcg74wkcdp4s54jy2r-parser-3.0.0.0.gem.drv /tmp/guix-tests/store/8qm7n1ync8y0cf2fn5fq12l7xmfk8j0b-ragel-6.10.drv /tmp/guix-tests/store/i0vm7zlh5nsd7f4drlqqdhdlwqh27pw3-ragel-6.10.tar.gz.drv /tmp/guix-tests/store/gixqhdsqvp70qrzp7mrkn4hq27p4sly9-ruby-json-2.1.0.drv /tmp/guix-tests/store/knv0k9lsz5ajbfj23mgdhyyhr0hqbpgj-json-2.1.0.gem.drv /tmp/guix-tests/store/lrm0k0zfba7ilb9acpz9m4paka69nq8m-ruby-simplecov-0.17.1.drv /tmp/guix-tests/store/j6fdkjd9qzhmiwjnp7wagfb4sg2z3gnk-simplecov-0.17.1.gem.drv /tmp/guix-tests/store/pr9kr5aa0lmxpbbpfpcqvxr1s8x9ga95-ruby-simplecov-html-0.10.2.drv /tmp/guix-tests/store/jk7z42xmya0ghbpz5qql3z8ifhh84lbh-simplecov-html-0.10.2.gem.drv /tmp/guix-tests/store/p89153h77a88k9l2d2cqrxk19h7fargs-ruby-ast-2.4.2.drv /tmp/guix-tests/store/254blxdxglj3gj18bhajbssmc5axjg2x-ruby-ast-2.4.2-checkout.drv /tmp/guix-tests/store/2c857zqjak3c0xiamk2bfq6kz2iwf9x9-ruby-domain-name-0.5.20190701.drv /tmp/guix-tests/store/03khk7fhkswi7jv5yvw4pyk9hdzaqm48-ruby-tzinfo-data-1.2021.1.drv /tmp/guix-tests/store/1cmwqrzk230ym91g1znpyr1jpdfn1sib-ruby-tzinfo-data-1.2021.1-checkout.drv /tmp/guix-tests/store/fg47liyppziz4hgfl7lzbxsmj4c4n4kg-ruby-tzinfo-2.0.4.drv /tmp/guix-tests/store/7vqvi6pm10azixnafka3qz3kf1h6fmla-ruby-tzinfo-2.0.4-checkout.drv /tmp/guix-tests/store/p9rl8vc22dx7pddkhkagiddyx766953n-ruby-concurrent-1.1.5.drv /tmp/guix-tests/store/8p1pck5f7hizcdjg1j7rznyy3p3y205k-ruby-concurrent-1.1.5-checkout.drv /tmp/guix-tests/store/jhx40532r42q1w4l72hd5ap92nzjfs2m-tzdata-for-ruby-tzdata-info.drv /tmp/guix-tests/store/5xyv88lb1gsh9shy786ngc8qa531z1xk-tzdata2021a.tar.gz.asc.drv /tmp/guix-tests/store/qsa5s6m02i62vck7q62q3r6s0zw0r99j-tzcode2021a.tar.gz.asc.drv /tmp/guix-tests/store/sins7ly7xirxvxc08yw0xwfl4fr1pzvi-tzdata2021a.tar.gz.drv /tmp/guix-tests/store/zclshcmjlqq7zcgjvqcq1qcyb65rgx9j-tzcode2021a.tar.gz.drv /tmp/guix-tests/store/061r263pipd3fpyfqrhrjbjxzmsll5rh-ruby-i18n-1.7.0.drv /tmp/guix-tests/store/y4myj60x799pk1dxyrhwa9042v4jzmjw-i18n-1.7.0.gem.drv /tmp/guix-tests/store/46wjdzvp2ga3ip4dwy2iijjpsnlxlchf-domain_name-0.5.20190701.gem.drv /tmp/guix-tests/store/4jqlnyq78lsmqb1g6rpzs3hawxcf052s-ruby-shoulda-3.5.0.drv /tmp/guix-tests/store/6hylimcqh76xq1sjrkzg5mks7cr2q5gd-ruby-shoulda-matchers-2.8.0.drv /tmp/guix-tests/store/hm672xwh1bp1vrc80fqqcn1zjlm5v2pz-ruby-activesupport-6.1.3.drv /tmp/guix-tests/store/msx4ky62gxj0865hml70wqd1k0rpclgz-activesupport-6.1.3.gem.drv /tmp/guix-tests/store/s11mwmn1ngq35lmm4hyw1vz5ah2244z1-ruby-zeitwerk-2.4.2.drv /tmp/guix-tests/store/2b105vgchir450373fa56f30njwx7gg3-ruby-builder-3.2.4.drv /tmp/guix-tests/store/87rlrdp0xcj1dwvrklqyh9r3g95j15x3-builder-3.2.4.gem.drv /tmp/guix-tests/store/801qik2lwza1wkqqscndi3p5r5bxi2lz-ruby-zeitwerk-2.4.2-checkout.drv /tmp/guix-tests/store/9m1plyv8jmdjra00f4768n6xk6bmxkwa-ruby-ansi-1.5.0.drv /tmp/guix-tests/store/p6fp3x8a3q826f16cygg60q2n993xkhd-ruby-ansi-1.5.0-checkout.drv /tmp/guix-tests/store/g2xabwjldyajhaacvkmscxbhnmzy2hmm-ruby-minitest-focus-1.1.2.drv /tmp/guix-tests/store/c3f0yikhlqw96k658vwd11n01bmrwi9r-minitest-focus-1.1.2.gem.drv /tmp/guix-tests/store/zpzlzr6diac9xkvdp1j156g5lrq21xbw-ruby-minitest-reporters-1.3.6.drv /tmp/guix-tests/store/7bq2dfcbnp611qqkv8slc21shpk95iip-minitest-reporters-1.3.6.gem.drv /tmp/guix-tests/store/82l5370rprgal98d7jijnzzcyybjgr9k-ruby-maruku-0.7.3.drv /tmp/guix-tests/store/2dd8nc8lmzkdibr1ypza2s83212rkarf-ruby-nokogiri-1.10.9.drv /tmp/guix-tests/store/b2fxg2i2rlm2j5mzwal2b6548fvi38xd-ruby-pkg-config-1.2.5.drv /tmp/guix-tests/store/rr0nhvrwinx30n221mkkxwa451vx6fh5-pkg-config-1.2.5.gem.drv /tmp/guix-tests/store/cm41f11gn2gz1vp7izrabz0cmhnrx9vy-nokogiri-1.10.9.gem.drv /tmp/guix-tests/store/j8ciqchr1jqb0cyaykl2mqmcvngr3kfg-ruby-mini-portile-2.4.0.drv /tmp/guix-tests/store/clb0dzyvmlygrm71agnvxf6v8lzy058i-mini_portile2-2.4.0.gem.drv /tmp/guix-tests/store/991ycmi0xqrrfi5s8wbcgh2hwk3f078y-maruku-0.7.3.gem.drv /tmp/guix-tests/store/kz7krrqglhj73145gyab4vqkn4qxbmn4-ruby-tdiff-0.3.3-1.b662a604.drv /tmp/guix-tests/store/4ffbrk1ji8c806gjhvbf379qp3schp5d-ruby-rubygems-tasks-0.2.5.drv /tmp/guix-tests/store/xzzpfww7080f2w2yp1ddh9k572smy7gc-rubygems-tasks-0.2.5.gem.drv /tmp/guix-tests/store/l6wryykpzzg7b6imkkkwjqqmsc3ivdfg-ruby-tdiff-0.3.3-1.b662a604-checkout.drv /tmp/guix-tests/store/z2960r5kclhjn62fid4pzaiha44h27xh-ruby-nokogiri-diff-0.2.0-1.a38491e4.drv /tmp/guix-tests/store/ka06a79pbln5bccambpang1cw36b1wwm-ruby-nokogiri-diff-0.2.0-1.a38491e4-checkout.drv /tmp/guix-tests/store/vdklsvakz5gkc7iyg0pvqmhj6rqbsx7r-shoulda-matchers-2.8.0.gem.drv /tmp/guix-tests/store/fzh6fnfpb74c909c399kwvlqmv2hvrdf-ruby-shoulda-context-1.2.2.drv /tmp/guix-tests/store/hcs0gx3wwkdd92z6k7vim37k38zrz4wb-shoulda-context-1.2.2.gem.drv /tmp/guix-tests/store/y96fyaybzd4kyi3hpwlsazhs1j4wa1az-shoulda-3.5.0.gem.drv /tmp/guix-tests/store/ar402dq1346frgprz2lbrjrncrjs7lkj-ruby-unf-0.1.4.drv /tmp/guix-tests/store/81n8d2b7ssvar6dba8axb4ls4ajg8gn6-unf-0.1.4.gem.drv /tmp/guix-tests/store/jvqmk9skm6s9gmnjkxri238jikjya6s6-ruby-unf-ext-0.0.7.6.drv /tmp/guix-tests/store/63i32snyls5yqx0459nsvzi57s09g8b6-unf_ext-0.0.7.6.gem.drv /tmp/guix-tests/store/404hn9glql7z6a8msp4m86rkxxgghq0j-ruby-rest-client-2.0.2.drv /tmp/guix-tests/store/5q0sn0rc3f3bdf2sml63sn00yh4zgdx2-ruby-http-cookie-1.0.3.drv /tmp/guix-tests/store/8id5vl445p9km07lwj1pdzfqs6z20gs6-ruby-sqlite3-1.4.2.drv /tmp/guix-tests/store/8lnx7zdvkvrvgxc8rw9qpzvc76bwd5iz-ruby-mini-portile-0.6.2.drv /tmp/guix-tests/store/80i0sjgz0k58iwvm4lqm9a1x98mbaiqq-mini_portile-0.6.2.gem.drv /tmp/guix-tests/store/jyw2733d5vqrsb5gkimnr6cbjam27wck-sqlite3-1.4.2.gem.drv /tmp/guix-tests/store/fhjzbzy53zw09sf36vkdr5s3av6gv4fb-http-cookie-1.0.3.gem.drv /tmp/guix-tests/store/i9dcbld1h77c6dlz705gzd93pa4vanaf-ruby-addressable-2.7.0.drv /tmp/guix-tests/store/9z637vk5q097lg1ifrbfwmcjgz35k796-ruby-rspec-its-1.3.0.drv /tmp/guix-tests/store/xckn24dh0hfhwmx5hiqd2km4861lna28-ruby-rspec-its-1.3.0-checkout.drv /tmp/guix-tests/store/h9p8h4amkx2qdaib9k8aax8bsgpqyynp-ruby-idn-ruby-0.1.0.drv /tmp/guix-tests/store/1spqrxdrwp5g8ni7hcrjwh5m0dh10jz4-idn-ruby-0.1.0.gem.drv /tmp/guix-tests/store/k4l32ygzzkvaqdapxmapys4939ckms09-ruby-public-suffix-4.0.5.drv /tmp/guix-tests/store/y18v285grbrrxvir9wshqb1bxa53kwqm-public_suffix-4.0.5.gem.drv /tmp/guix-tests/store/mdciv99f1aqf5ar913h0hlca9q9l92l7-addressable-2.7.0.gem.drv /tmp/guix-tests/store/vnfbxp6di0lfr519gcbs8569n691llg8-ruby-rack-2.2.3.drv /tmp/guix-tests/store/19xmw0a5yr76layfk6xpkk2n96zfak83-ruby-minitest-global-expectations-1.0.1.drv /tmp/guix-tests/store/5csdmfy54q7y30gglv1whj3pwfvsv92m-minitest-global_expectations-1.0.1.gem.drv /tmp/guix-tests/store/zg9cjlyzwn4hpbyrhh8h6bijvhl63pr9-ruby-rack-2.2.3-checkout.drv /tmp/guix-tests/store/v9wfj9rl4qwqh0lck3hpcl2r7qg0zyz5-ruby-rack-2.2.3-checkout.drv /tmp/guix-tests/store/xnqsbi6pygn3i23jbv5vw95gc6ngjjra-ruby-sporkmonger-rack-mount-0.8.3-1.076aa2c.drv /tmp/guix-tests/store/yyxgsxqlq2rg8isf6k3aafv3a8k37j8z-ruby-sporkmonger-rack-mount-0.8.3-1.076aa2c-checkout.drv /tmp/guix-tests/store/ihdqbx5l0jvbsssvplfhs703rb0cji5r-ruby-mime-types-3.1.drv /tmp/guix-tests/store/1qw0g42dpp7sx7nrl5ra44738cikjq91-ruby-minitest-rg-5.2.0.drv /tmp/guix-tests/store/f20xmn9gy6bw725x59p9hqx94pij26m3-minitest-rg-5.2.0.gem.drv /tmp/guix-tests/store/35ziwidzi8qr14i5gz02gxfy3kdhn4hg-ruby-minitest-hooks-1.5.0.drv /tmp/guix-tests/store/77p7vi2kcc3ybnixayir2bg7ccika5y4-minitest-hooks-1.5.0.gem.drv /tmp/guix-tests/store/7spwq687ymknss2xb7dz75akxlk6zndj-ruby-sequel-5.47.0.drv /tmp/guix-tests/store/igq2lasd8yrxrp8b432hcka6b6an0gk1-sequel-5.47.0.gem.drv /tmp/guix-tests/store/5ydd9fjxgzqfak9dhsj7754d4v7lq5ic-ruby-fivemat-1.3.7.drv /tmp/guix-tests/store/5xcrb9gs1zn7pzg8b7n0xdaq2sicj9cg-fivemat-1.3.7.gem.drv /tmp/guix-tests/store/6qaw6lgpgvbqvhjnhhgkfqckzf4xflzz-mime-types-3.1.gem.drv /tmp/guix-tests/store/h1hd25r8csxf8zm22l79m0j6kd0lv8s5-ruby-minitest-bonus-assertions-3.0.drv /tmp/guix-tests/store/70q9a54ym66aqc70amfa7d4aysl2xac0-minitest-bonus-assertions-3.0.gem.drv /tmp/guix-tests/store/jy473bciz8rfnby3vgyrbxik9cyjm0hm-ruby-minitest-moar-0.0.4.drv /tmp/guix-tests/store/hw126lv8jaf0skr9d620nbf0z99nkrh7-minitest-moar-0.0.4.gem.drv /tmp/guix-tests/store/x9q98982k44wiyc46z05vrqd4p9w7v1s-ruby-minitest-pretty-diff-0.1-1.11f32e93.drv /tmp/guix-tests/store/8hlvcj67b1cyn5bq8ihvnbxf71ycnwib-ruby-turn-0.9.7.drv /tmp/guix-tests/store/040kcqdsqdwi0hp7i9z21byfaw0spif1-turn-0.9.7.gem.drv /tmp/guix-tests/store/hghy8mazabw7ss323qwz3r4l4jj5v1np-ruby-minitest-4.7.5.drv /tmp/guix-tests/store/kdanpxd8g2lwnnvjp8az14nhd8p1pvz4-minitest-4.7.5.gem.drv /tmp/guix-tests/store/g3l964jj5qnwhhwwm6ml3gh31z6lga0l-ruby-minitest-pretty-diff-0.1-1.11f32e93-checkout.drv /tmp/guix-tests/store/k0awd8kd1fznwc5nb029khym08k5r08y-ruby-mime-types-data-3.2016.0521.drv /tmp/guix-tests/store/xa8c9dagwcrq8hgs7rjdj60000xlpk9p-mime-types-data-3.2016.0521.gem.drv /tmp/guix-tests/store/q0n10knrnpfpbshcyz2knxs7b5ffqr9y-ruby-webmock-2.3.2.drv /tmp/guix-tests/store/cwhj57zhhw7pvc1yj13qi84ssxnbkqlz-webmock-2.3.2.gem.drv /tmp/guix-tests/store/xmnlr7pd83mgi08wirk1swkdnzb1611b-ruby-crack-0.4.5.drv /tmp/guix-tests/store/g8kbyhpxspqy5s5fna02y2r4kapv1rjg-crack-0.4.5.gem.drv /tmp/guix-tests/store/zwfv00krspzqj5pixd70js5gx5ll5p5i-rest-client-2.0.2.gem.drv /tmp/guix-tests/store/mgnh4i8gy4h2g0sgbgki2fdd0fvilhyw-ruby-kramdown-2.3.1.drv /tmp/guix-tests/store/31vdsdslls46g68rnghy193m0f754wvb-ruby-afm-0.2.2.drv /tmp/guix-tests/store/fzfc19d7dw5hn7xr5faqd23xvxs7i3cs-afm-0.2.2.gem.drv /tmp/guix-tests/store/43jas2hyrk52cxa6agzcyvcavzs1rm0s-ruby-hashery-2.1.2.drv /tmp/guix-tests/store/4if1fkx9n6n787rwmkna42h82rd0a2jm-ruby-qed-2.9.2.drv /tmp/guix-tests/store/mdf6snihkfzn07hij3gzdl75byyq7g26-qed-2.9.2.gem.drv /tmp/guix-tests/store/xpjys77v688za59rq74365gcz9b6165x-ruby-brass-1.2.1.drv /tmp/guix-tests/store/p57z1zfsn8375vvnbv6wac6pk0aqqll7-brass-1.2.1.gem.drv /tmp/guix-tests/store/666sfqprgla548313har51jgxb1nkl41-ruby-rubytest-cli-0.2.0.drv /tmp/guix-tests/store/k6cslw21a7ky2csry89rrxqgpafqjc96-rubytest-cli-0.2.0.gem.drv /tmp/guix-tests/store/v006bla1gycdazbardcwf90a199ga2a1-ruby-rubytest-0.8.1.drv /tmp/guix-tests/store/ydai14fnf0rvraa1cgvbljk0jnpsl34j-rubytest-0.8.1.gem.drv /tmp/guix-tests/store/b7p0fnzmzi5g8hhvv6xr1rqah1rqxqwf-ruby-ae-1.8.2.drv /tmp/guix-tests/store/i7whphpla9n9vr023921lxydqp1w41q7-ruby-ae-1.8.2-checkout.drv /tmp/guix-tests/store/g9s2zwlk92qqbcbhfa8qz9dwv6lcq0q4-hashery-2.1.2.gem.drv /tmp/guix-tests/store/ym2p67izjv1wndzr1al1549hs1z59sd9-ruby-lemon-0.9.1.drv /tmp/guix-tests/store/gi9y18cf0s5s7rkhmcimz9h1zbhxbzpj-lemon-0.9.1.gem.drv /tmp/guix-tests/store/6jf9piyjl2g69hzgwwx98rqhrb3skzby-ruby-ttfunk-1.6.2.1.drv /tmp/guix-tests/store/9l0dn2bav9y4sdfd9dlfgc244vdf080j-ruby-ttfunk-1.6.2.1-checkout.drv /tmp/guix-tests/store/70kzl6ck5djxzxh08y7l5bhz4zqh7j26-ruby-rc4-0.1.5.drv /tmp/guix-tests/store/h44lkkx6wijqns6i24hqi4w7dm4r66aq-ruby-rc4-0.1.5.gem.drv /tmp/guix-tests/store/al5fkg0j9cb096jpjycbhxkyf7lg26pv-ruby-pdf-inspector-1.3.0-1.00ee4c9.drv /tmp/guix-tests/store/9f5x4ch0x6xh7l1mgfq36ydfgwxbvbg2-ruby-pdf-inspector-1.3.0-1.00ee4c9-checkout.drv /tmp/guix-tests/store/dc8fb3shhj7vzsd2yw4sqanfg0p02pr0-ruby-pdf-reader-2.4.0.drv /tmp/guix-tests/store/130v7g2jnr7dayq3j4j4xxdynz498mkr-ruby-cane-3.0.0.drv /tmp/guix-tests/store/bcd0sfpbas9zx2z48pfaqjn5ql68mfzp-cane-3.0.0.gem.drv /tmp/guix-tests/store/qr7h6nghdpjy9ksxaki61kvw81365sij-ruby-parallel-1.21.0.drv /tmp/guix-tests/store/0qcc4a1d3vnyyiiskwfv1p37p3y1hnrf-ruby-activemodel-6.1.3.drv /tmp/guix-tests/store/6jgjn7ajkd7viapj749g2vzwf7pd833k-activemodel-6.1.3.gem.drv /tmp/guix-tests/store/117r31vqiirn2rv73m3pwj6q0q4m8z7q-ruby-rspec-rerun-1.1.0.drv /tmp/guix-tests/store/0npbj0hk2y3w8mzvr549f1a7wc4xypk9-rspec-rerun-1.1.0.gem.drv /tmp/guix-tests/store/6fsgm0g0g8jk9cccj2blfx42fy9gh55h-ruby-mysql2-0.5.2.drv /tmp/guix-tests/store/9zckpns68w91p514g9blbywrqwfaz9yj-mariadb-10.5.12.drv /tmp/guix-tests/store/151c3209b5zd756l6spf58mcs35y8fvy-mariadb-10.5.12.tar.xz.drv /tmp/guix-tests/store/9yx5x2jcrbqm3cqvzldmgmmq0idm77pl-mariadb-10.5.12.tar.gz.drv /tmp/guix-tests/store/f8q4d9jkq06xqf4l6fwa5fr8yzyx89d9-libaio-0.3.112.drv /tmp/guix-tests/store/yag9j7ycgkbzdgid4wxknyai0m11bag3-libaio-0.3.112.tar.gz.drv /tmp/guix-tests/store/gf16p699ahr7vbz0hadybq22c928k5rv-linux-pam-1.5.1.drv /tmp/guix-tests/store/c92m79y0gc6m80gf926j38428b12f82i-Linux-PAM-1.5.1.tar.xz.drv /tmp/guix-tests/store/8qxkyympyn7imadwvgy4lzlqzbj8ganw-Linux-PAM-1.5.1.tar.xz.drv /tmp/guix-tests/store/kkbd2js27kxhfgkj29vsw7jkk8sz1m9y-pcre2-10.37.drv /tmp/guix-tests/store/f51ikkqcdjdax4s85kc97x9i961g40sz-ruby-mysql2-0.5.2-checkout.drv /tmp/guix-tests/store/l8hdza408kkagfhh18kanff5qqd0zsm2-ruby-parallel-1.21.0-checkout.drv /tmp/guix-tests/store/pz7ypifip13hxgyrglnj8w052q52znaq-ruby-arel-9.0.0.drv /tmp/guix-tests/store/cn34zl7v5jvbmi6c8r2j299rvsf4gy99-arel-9.0.0.gem.drv /tmp/guix-tests/store/v70y4lhwznp95iya704909m3jc8ycf3c-lsof-4.94.0.drv /tmp/guix-tests/store/9a1r4a89q64mkad3sb4jcxydvmxaqlxa-lsof-4.94.0-checkout.drv /tmp/guix-tests/store/d6khsi3qjydiqphrpy9xm5kaiafh578r-lsof-4.94.0-checkout.drv /tmp/guix-tests/store/z2v6b1wn5v968wvcwh35gv17dagafklr-ruby-activerecord-6.1.3.drv /tmp/guix-tests/store/3zz2gvjnjk3725i04z64mi5fdhw2jy28-activerecord-6.1.3.gem.drv /tmp/guix-tests/store/drlw0knmnxkmlj32xf4c7pxxzs5yc6ix-ruby-pdf-reader-2.4.0-checkout.drv /tmp/guix-tests/store/gkixgzzsvq99xb5i58kxcbxzp5dabd2v-ruby-morecane-0.2.0.drv /tmp/guix-tests/store/x98k79pjyrwi78xbhh17fxpqsq8qk2lg-morecane-0.2.0.gem.drv /tmp/guix-tests/store/l57k39caqxl4ig8xln18z1q67h2f5pzv-ruby-ascii85-1.0.3.drv /tmp/guix-tests/store/whdhzci53rl9bpv4awdmqncp5l2n1hgk-Ascii85-1.0.3.gem.drv /tmp/guix-tests/store/hwlci2qadlqvym3mp50ya0jw0hy4irrv-kramdown-2.3.1.gem.drv /tmp/guix-tests/store/miqj0j6mpqxrrdggk1qh2q2ldbqvxfq6-ruby-pdf-core-0.8.1.drv /tmp/guix-tests/store/i1qrqgd97mwlm539k8yfqc2b319jk7k1-pdf-core-0.8.1.gem.drv /tmp/guix-tests/store/q8n4m7va674ncm7vrvmqrijpfhxn0cyd-ruby-prawn-2.2.2-1.d980247.drv /tmp/guix-tests/store/gn2cdgm98p2h75j9kby1v99dpsrrnnv1-ruby-prawn-2.2.2-1.d980247-checkout.drv /tmp/guix-tests/store/nybn91vlww1v687r9mmylrzwnm1bk8fr-ruby-prawn-manual-builder-0.3.1.drv /tmp/guix-tests/store/vdl6dp97y8fqj3c5whm3ygi1qr8nmx8l-prawn-manual_builder-0.3.1.gem.drv /tmp/guix-tests/store/s7l2pq5y7lgg74686l2yzqd6nw30n3pk-ruby-prawn-table-0.2.2.drv /tmp/guix-tests/store/lf0xdsqas2yz3wm2765p9lxz4m3d4w25-prawn-table-0.2.2.gem.drv /tmp/guix-tests/store/p8nfnc4np9xbavy053b179b8cyqmfbmf-ruby-bacon-1.2.0.drv /tmp/guix-tests/store/83ms1n1ps34g6dwpc115x4w6gc4qmdd7-bacon-1.2.0.gem.drv /tmp/guix-tests/store/vdgw321mxmhqj08fz0c6wyv3ymzy3lrx-ruby-bacon-colored-output-1.1.1.drv /tmp/guix-tests/store/bnkhh7840r791v396c4lybq3yh0rmihr-bacon-colored_output-1.1.1.gem.drv /tmp/guix-tests/store/vklv44jl4mlg1k7pbgyxdrl6z6gry8z2-ruby-racc-1.5.2.drv /tmp/guix-tests/store/d75yalanpx3ahfdm0rcc9c8grcdvc4vg-racc-1.5.2.gem.drv /tmp/guix-tests/store/zinh68yk28gjlrnas61pzaahdzk5qmmq-ruby-json-pure-2.3.1.drv /tmp/guix-tests/store/c4dn8iy88pnm8339aznlq1nbm46pxqqj-json_pure-2.3.1.gem.drv /tmp/guix-tests/store/bx64lyx0a70y8nrrmprmzvkw9rlp6ifp-ruby-webmock-3.11.2.drv /tmp/guix-tests/store/45a4irglhg55ia3kmbq0z07kxcpan35k-webmock-3.11.2.gem.drv /tmp/guix-tests/store/c4drwfbpqzpvhyq0w44j3hf21isx174c-ruby-rainbow-3.0.0.drv /tmp/guix-tests/store/7iq31r3v62md57sfvpxnzdjvx84bwygq-rainbow-3.0.0.gem.drv /tmp/guix-tests/store/cb0hmmlcrp7dr0kc999npxm692xdxqa9-ruby-unicode-display-width-1.6.0.drv /tmp/guix-tests/store/lfjjy555s4i5z6a52myy8q3fr3qdxmk1-unicode-display_width-1.6.0.gem.drv /tmp/guix-tests/store/gldidddmj314hkdxbsxxj59zzqrmafli-ruby-rubocop-ast-1.4.1.drv /tmp/guix-tests/store/hrffa6gb1jcqpw8zg8hw6d8qay54i995-ruby-rake-13.0.1.drv /tmp/guix-tests/store/kv5z6cr4zyk0qiwx4kvyvxmbn3j340i3-rake-13.0.1.gem.drv /tmp/guix-tests/store/ivkwnrwdilyhl6xb5nxdhlc6v9rj6n7j-ruby-rubocop-ast-1.4.1-checkout.drv /tmp/guix-tests/store/w5sl68kz8b5ms4gjbhb0vx5sw7dfqqvj-ruby-oedipus-lex-2.5.2.drv /tmp/guix-tests/store/7rm0044kprrmwliprl9z8j26dv19mr6y-oedipus_lex-2.5.2.gem.drv /tmp/guix-tests/store/h6ylwhrd6z6vznmskxzq11wix2wrq4nx-ruby-rubocop-1.10.0.drv /tmp/guix-tests/store/kf8jdmww66ghf9fmqnvdsa3jq2g22i8k-ruby-regexp-parser-2.0.0.drv /tmp/guix-tests/store/fydm9h2hsixpdhcps0zl9yjzkylvmp4p-ruby-regexp-property-values-1.0.0-1.03007a6.drv /tmp/guix-tests/store/2n3c02ln0iwl8sv9a3vzldpvgyd1agf7-ruby-regexp-property-values-1.0.0-1.03007a6-checkout.drv /tmp/guix-tests/store/67v0kql10pj4cvxrp9q4klaf48j55xw8-ruby-character-set-1.4.0.drv /tmp/guix-tests/store/6gxam9q0wmdbqn4kkqmxdsfjrwsaq4jl-character_set-1.4.0.gem.drv /tmp/guix-tests/store/hmnaw048bffhiwb3dm7a144jxph9g37b-ruby-range-compressor-1.0.0.drv /tmp/guix-tests/store/h913hb1kp56j3z2r6zvknb9g4b57afsj-ruby-range-compressor-1.0.0-checkout.drv /tmp/guix-tests/store/snzvfjsla2y4p4h02rlgk2hzashr42lf-ruby-regexp-parser-2.0.0-checkout.drv /tmp/guix-tests/store/z66grpmkmsdlil5pvqqpkwrjs2x57cx0-ruby-test-queue-0.4.2.drv /tmp/guix-tests/store/rk8mc4jaihp7cwacvpawgw71fq692jha-test-queue-0.4.2.gem.drv /tmp/guix-tests/store/8rz2bs0pqa31ci5mk4y71kynf1586dzr-ruby-octokit-4.18.0.drv /tmp/guix-tests/store/inh5vnpi9774m3zk3kw7mbrbilcqvw6j-ruby-faraday-0.15.4.drv /tmp/guix-tests/store/7qnf9fkzrwp3i2c3ygq1wwll4a6xsmn4-faraday-0.15.4.gem.drv /tmp/guix-tests/store/s2bps14a75dz773f3nmlk61digryysqp-ruby-multipart-post-2.0.0.drv /tmp/guix-tests/store/6kqnwa1j7vpc8wcdhsh6v8g4fy3ajv43-multipart-post-2.0.0.gem.drv /tmp/guix-tests/store/sig7brrhmgl9ldvahwfhvwdkmr3v7939-octokit-4.18.0.gem.drv /tmp/guix-tests/store/wq34lfyywzxd1bah1p3x9dsnzk455grq-ruby-sawyer-0.8.2.drv /tmp/guix-tests/store/c5b3xikja96qcdwks44wgi038b70p98i-sawyer-0.8.2.gem.drv /tmp/guix-tests/store/cx6w555qhxnix1949qm06aw6jr0rj76p-ruby-byebug-11.1.3-checkout.drv /tmp/guix-tests/store/m9r6521w8nphnm954gzqkfrn9gzlsixp-ruby-byebug-11.1.3-checkout.drv /tmp/guix-tests/store/hpz8ihw4hri3qvix3ip81sklvgsjacd5-ruby-chandler-0.9.0.drv /tmp/guix-tests/store/sp6jh0yc8zryd4fk3npk5iif8qqzg93s-chandler-0.9.0.gem.drv /tmp/guix-tests/store/w3zk1g2d4fgr6ds783asfq7i917sgf2z-ruby-hydra-0.0-0.5abfa37-checkout.drv /tmp/guix-tests/store/jl12gb4nqy3cmjsj0arwf4nhvzd656x2-texlive-hyphen-estonian-59745-checkout.drv /tmp/guix-tests/store/0ncky4a88bc7j01wyhy0j32i0lrdhidw-texlive-unicode-data-59745.drv /tmp/guix-tests/store/ncm6sgavvw9ckplgaiiyaizyy0zd75mq-texlive-unicode-data-59745-checkout.drv /tmp/guix-tests/store/1iamypgxriqxg5xq55vr7mbyhp03m6lm-texlive-hyphen-sanskrit-59745.drv /tmp/guix-tests/store/sy94jbrhp0dkhiyl1rr55p4zafszvy1c-texlive-hyphen-sanskrit-59745-checkout.drv /tmp/guix-tests/store/1wfirzrwg6y8mivajvk68ac5jzd92qpx-texlive-hyphen-bulgarian-59745.drv /tmp/guix-tests/store/gyw0phsla1ysy17scpdrnvn2ps994fdh-texlive-hyphen-bulgarian-59745-checkout.drv /tmp/guix-tests/store/1y66pp9db31aabf24p3w2v3bs3np7b73-texlive-hyphen-friulan-59745.drv /tmp/guix-tests/store/bdq2spc4vyxwgic5j6dqahvki5q5rj8a-texlive-hyphen-friulan-59745-checkout.drv /tmp/guix-tests/store/2g38pi5rpz5pphbpk6mcbx5w31n6mws3-texlive-tetex-59745.drv /tmp/guix-tests/store/q825bwi5hy15mzqw8s0kh0qnidjp9gqb-texlive-tetex-59745-checkout.drv /tmp/guix-tests/store/36kjzj0yyiml211bf7zv40s8bvml0lps-texlive-latex-l3kernel-59745.drv /tmp/guix-tests/store/c7drci7hj9mvrvav2yr42r1ipxa52s9r-texlive-latex-l3kernel-59745-checkout.drv /tmp/guix-tests/store/vc53kc9vk5a5wz91dbj07m3ag1x7mzfy-module-import-compiled.drv /tmp/guix-tests/store/z8a7dipy72cdk7fdabhm85swf7v6939l-texlive-docstrip-59745.drv /tmp/guix-tests/store/vs2p5rc2mzyadd4591qqnlcbrz7621zi-texlive-docstrip-59745-checkout.drv /tmp/guix-tests/store/3g0vv1218kg4fv5bwbyjsai4xfziyb1k-texlive-hyphen-danish-59745.drv /tmp/guix-tests/store/5l6v1ib2x5c7hrjw2ihqyj2lc7lgzcf6-texlive-hyphen-danish-59745-checkout.drv /tmp/guix-tests/store/3r3hanj0m3d1s6n63ipqb2r3bi5514n0-texlive-hyphen-coptic-59745.drv /tmp/guix-tests/store/464mjwky86xwhi76nvgjvrk790bm03f4-texlive-hyphen-coptic-59745-checkout.drv /tmp/guix-tests/store/49xnsh42bh4zq1581c4cbcq9ricr4sw9-texlive-hyphen-belarusian-59745.drv /tmp/guix-tests/store/2npissy680lrkyx5f9mf1pm5qrcn64gp-texlive-hyphen-belarusian-59745-checkout.drv /tmp/guix-tests/store/4plkwy1dl6cffrxb69ki6cs3xiw9fykm-texlive-hyphen-schoolfinnish-59745.drv /tmp/guix-tests/store/ibr57wq5isx3b1pxcgcgvj88cww6yk1k-texlive-hyphen-schoolfinnish-59745-checkout.drv /tmp/guix-tests/store/4w1avzc1d7cm6aj6issafxr0s977x1m8-texlive-latex-base-59745.drv /tmp/guix-tests/store/5g0vlk8dfd2zwmq9giwnq81423lp6lgf-texlive-hyphen-galician-59745.drv /tmp/guix-tests/store/3492r0zncj65v4dafadgsb06l9ix3hz8-texlive-hyphen-galician-59745-checkout.drv /tmp/guix-tests/store/5ysx5qff3bdq37h9fhr9l57kywkrmpml-texlive-hyphen-turkish-59745.drv /tmp/guix-tests/store/8fjfmqzd9csmjpvzgnh9fpg9qkbbxw5z-texlive-hyphen-turkish-59745-checkout.drv /tmp/guix-tests/store/6d22kqj1554wkjw6pb106ahsay6r719j-texlive-hyphen-icelandic-59745.drv /tmp/guix-tests/store/g9c7jpazfyk3338np4z9ky09n30sbj37-texlive-hyphen-icelandic-59745-checkout.drv /tmp/guix-tests/store/6zsbv7bp7p3vm7xbjhbasb2rfrb8ia49-texlive-hyphen-esperanto-59745.drv /tmp/guix-tests/store/gryga1fq59ac9j615kz6fx0jc4klg8g4-texlive-hyphen-esperanto-59745-checkout.drv /tmp/guix-tests/store/742ahq9dhlvd58zr8xgwzd4njzqiw1xx-texlive-hyphen-chinese-59745.drv /tmp/guix-tests/store/ny7pk67ra6c49z9rl8mlca36hc2ifldn-texlive-hyphen-chinese-59745-checkout.drv /tmp/guix-tests/store/7nb1jwansghqfbzrxf7i1ll9w5pw90j8-texlive-knuth-lib-59745.drv /tmp/guix-tests/store/v48923xb43k102p426ylkzw7xl62zipz-texlive-knuth-lib-59745-checkout.drv /tmp/guix-tests/store/83537fhilhwdk776x1y3p89dcrgf5x1s-texlive-latexconfig-59745.drv /tmp/guix-tests/store/h43kmlj78p58amdh3vsmqwgfyqlfmxx5-texlive-latexconfig-59745-checkout.drv /tmp/guix-tests/store/8a74cgxlhcigfzg1jn6ddypdgyyi2aqs-texlive-hyph-utf8-59745.drv /tmp/guix-tests/store/dkfvvh7wfq9sps3mq4x7hmxh6akss380-texlive-hyph-utf8-59745-checkout.drv /tmp/guix-tests/store/m3g1c68mz34ia78q7bwy0g5hxa049181-texlive-tex-plain-59745.drv /tmp/guix-tests/store/kna5gxzafwkyc6qhbw95f8b8yprv7ch7-texlive-tex-plain-59745-checkout.drv /tmp/guix-tests/store/qhjf8mjb2cq1q49g8svv1is5zgdl8fa9-texlive-hyphen-base-59745.drv /tmp/guix-tests/store/p820yvcy0mdfr6rcn4q96dlzcm9p5nx9-texlive-hyphen-base-59745-checkout.drv /tmp/guix-tests/store/8idg356cww7yycj0i2q110wybldj4hvs-texlive-hyphen-catalan-59745.drv /tmp/guix-tests/store/80q61pr0c4njrmd9jlr6xxg2bn8cxqxa-texlive-hyphen-catalan-59745-checkout.drv /tmp/guix-tests/store/8mbgw4fal7my6qzqkf5k1si2h4ylvx0z-texlive-hyphen-romanian-59745.drv /tmp/guix-tests/store/n4qksi18yqpx33b1zbmbjmhdzmdsrzd9-texlive-hyphen-romanian-59745-checkout.drv /tmp/guix-tests/store/8sy4vh6xmz8gq4qwryyldmilgjk1k6z8-texlive-hyphen-dutch-59745.drv /tmp/guix-tests/store/akr925l962nkyjvwk2r14fmgbslk62db-texlive-hyphen-dutch-59745-checkout.drv /tmp/guix-tests/store/8vprd021cvzcw0biqwzblz6ydycgbr2r-texlive-hyphen-occitan-59745.drv /tmp/guix-tests/store/f0yndj8vi0iw6jkc7j7ry75avlfxi6h1-texlive-hyphen-occitan-59745-checkout.drv /tmp/guix-tests/store/929q8hsjaqchhkvm8bgg3mqicc6ma1xj-texlive-hyphen-welsh-59745.drv /tmp/guix-tests/store/yn4mdhybwnga5djb0wfz8hxlxl7m6adj-texlive-hyphen-welsh-59745-checkout.drv /tmp/guix-tests/store/999rc8dva80nqbv63ji6b2ir2dwygj42-texlive-ukrhyph-59745.drv /tmp/guix-tests/store/jh0r74c2ydjv1ji06vdgayq2b3wq636j-texlive-ukrhyph-59745-checkout.drv /tmp/guix-tests/store/9f5x3rmlrz5r6hj01d4wnkx9cpczm9hw-texlive-hyphen-lithuanian-59745.drv /tmp/guix-tests/store/1x31y4il4agkmabznvb80pizxk567vgf-texlive-hyphen-lithuanian-59745-checkout.drv /tmp/guix-tests/store/a07j3pg0jnmcq29b2zdi74y36lcqrpmx-texlive-hyphen-spanish-59745.drv /tmp/guix-tests/store/3nhal4xx0zb3phb05j51v9s4037yvf7i-texlive-hyphen-spanish-59745-checkout.drv /tmp/guix-tests/store/axskv7b2blf6gpp3mxgkdm5z0rdvyysy-texlive-hyphen-kurmanji-59745.drv /tmp/guix-tests/store/ns5kjzmgrvwgfli70ndvw52i1v4gbdrx-texlive-hyphen-kurmanji-59745-checkout.drv /tmp/guix-tests/store/bg1yqdabykjza0pmjnxihc1w4pcvqj1x-texlive-hyphen-finnish-59745.drv /tmp/guix-tests/store/yb98cywdaac9br29ircamag7jvxa51r4-texlive-hyphen-finnish-59745-checkout.drv /tmp/guix-tests/store/c2hdz19w4c2fccqshw93mgdwak8vifyc-texlive-dehyph-exptl-59745.drv /tmp/guix-tests/store/y92mbkjmia5006bzxm6nj5nbmvz5mb9k-texlive-dehyph-exptl-59745-checkout.drv /tmp/guix-tests/store/cx39d2gv230hr5bqwzap712fd6lamvi9-texlive-hyphen-irish-59745.drv /tmp/guix-tests/store/sq2aydqrnk8bn5s5dlagip02kzif8hl3-texlive-hyphen-irish-59745-checkout.drv /tmp/guix-tests/store/dd043f39cl5aq7vivd0lzi9s915rn1ah-texlive-hyphen-greek-59745.drv /tmp/guix-tests/store/02fiq2igi1dfbh2qk44aaz0l7x0qqdrn-texlive-hyphen-greek-59745-checkout.drv /tmp/guix-tests/store/ddv5n1cxhbqhfsbba93vdiqy31wrv573-texlive-hyphen-georgian-59745.drv /tmp/guix-tests/store/sfm2c8nvc97ln5z4bqzdlijh81x2yah5-texlive-hyphen-georgian-59745-checkout.drv /tmp/guix-tests/store/df45idg8zga0aqmm5z92drkk2gdrrc1n-texlive-ruhyphen-59745.drv /tmp/guix-tests/store/27ic97iwcqsqcmrhj67lx16j8wi3x0qz-grep-3.6.drv /tmp/guix-tests/store/bpb10bqfavcxpmix4lw1pb8mykgalynk-gawk-5.1.0.drv /tmp/guix-tests/store/yqszk13mlq0bm6cw4xk8dfs8x5s72brk-libsigsegv-2.13.drv /tmp/guix-tests/store/ix8fjhyr1rhdkx6b24gcq3zp4zjvfh6i-texlive-ruhyphen-59745-checkout.drv /tmp/guix-tests/store/pil4h0njnpq18aav1qidghbz4fgzk0d8-sed-4.8.drv /tmp/guix-tests/store/rsxj25ipcp5kzdgmgd59lfhdyijn1vgg-coreutils-8.32.drv /tmp/guix-tests/store/bfqcx4ji79m0igvagplbhha9h3hkhqgb-attr-2.5.1.drv /tmp/guix-tests/store/gg0897h8bc5p6ljc4yq74b2c4x7qsdsh-acl-2.3.1.drv /tmp/guix-tests/store/nyc558r8806f7b4f8cwp2mdxp1qgx0aj-libcap-2.51.drv /tmp/guix-tests/store/1l45dy2rjh880s0k4mij9iwj4b6lwzk0-libcap-2.51.tar.xz.drv /tmp/guix-tests/store/djadrny81scy66qyvqlyy8zkxvf1p141-texlive-hyphen-ethiopic-59745.drv /tmp/guix-tests/store/mprim31imayp1i3ivriyq656f8b24l0w-texlive-hyphen-ethiopic-59745-checkout.drv /tmp/guix-tests/store/ds3wg006ma4i8cxh0xq57fxn1rbksf10-texlive-hyphen-macedonian-59745.drv /tmp/guix-tests/store/kz4yzljslf337rrxwi03ri0qkq96gmny-texlive-hyphen-macedonian-59745-checkout.drv /tmp/guix-tests/store/f2r618g0isy7chp1drxx0wpp4rn0bawz-texlive-hyphen-indonesian-59745.drv /tmp/guix-tests/store/crxzvn6wjl41fl8hb92zm0kkcf44dgpk-texlive-hyphen-indonesian-59745-checkout.drv /tmp/guix-tests/store/fp7bcfxm0hzgqrvm7hk9ys3pn8zzspqk-texlive-hyphen-croatian-59745.drv /tmp/guix-tests/store/3ddg5jv999qkcfy02dkbin1skwagcnd1-texlive-hyphen-croatian-59745-checkout.drv /tmp/guix-tests/store/fyf0sccjrvn7bp138d375w0l20irvi9s-texlive-hyphen-french-59745.drv /tmp/guix-tests/store/cj2w2qq0z8jn5109j4qai380siacwxzj-texlive-hyphen-french-59745-checkout.drv /tmp/guix-tests/store/ghcrjphx72kcdari83zjh2rnc6b3sn2g-texlive-hyphen-norwegian-59745.drv /tmp/guix-tests/store/3ayx9rm7z7q9816cybvqf16mm4sxcd3f-texlive-hyphen-norwegian-59745-checkout.drv /tmp/guix-tests/store/ghkhlh9ysffrix0bfk8x25hja56d3qi3-texlive-latex-base-59745-checkout.drv /tmp/guix-tests/store/gk8yk3fmyrqgax5cshsa2z1qjc2si30f-texlive-hyphen-armenian-59745.drv /tmp/guix-tests/store/8idp13i46xqsa2y329bhg55c30skwwwi-texlive-hyphen-armenian-59745-checkout.drv /tmp/guix-tests/store/h8d3rm2smi56s1zmwf0r2xc16r62n0vd-texlive-hyphen-russian-59745.drv /tmp/guix-tests/store/njhg4j0bavxamb5p1yxzi4p6a27igjac-texlive-hyphen-russian-59745-checkout.drv /tmp/guix-tests/store/hasasspbxkp6vv6iz7vdl69cjgi19xbd-texlive-hyphen-ukrainian-59745.drv /tmp/guix-tests/store/hnhp8gy8zkb6ryakcmrpkx1nd0k9a005-texlive-hyphen-ukrainian-59745-checkout.drv /tmp/guix-tests/store/hy3gzb1kvz6z0j7dlrp0lzs0kjpcz35v-texlive-hyphen-polish-59745.drv /tmp/guix-tests/store/a0bzaad262bn3dmbz0ns02g54jrl17c7-texlive-hyphen-polish-59745-checkout.drv /tmp/guix-tests/store/j0pamvcy8hkij2di7vxcwpxbd5lx0r70-texlive-luatexconfig-59745-checkout.drv /tmp/guix-tests/store/ja1vnz4ir21jgxwaxrs5vamsyz2vlqml-texlive-hyphen-slovenian-59745.drv /tmp/guix-tests/store/9v9vspd2bxkd52yhxwad4mn7h66sqwc2-texlive-hyphen-slovenian-59745-checkout.drv /tmp/guix-tests/store/jhaqhkv0b17x6p826v7adcj4bl11s807-texlive-hyphen-serbian-59745.drv /tmp/guix-tests/store/ksbc9bckv7d7hn5z9864hpcmb2pz2ibw-texlive-hyphen-serbian-59745-checkout.drv /tmp/guix-tests/store/jv2gbw9j0xcxq6giv6bkvsrac9v6lwhh-texlive-hyphen-turkmen-59745.drv /tmp/guix-tests/store/2qqv38v1brsl2yp5wmzzbsq5yj3q9yfl-texlive-hyphen-turkmen-59745-checkout.drv /tmp/guix-tests/store/jw6vqxl67y3s30lil0xyyc4wcpsympxq-texlive-hyphen-uppersorbian-59745.drv /tmp/guix-tests/store/3fvxfszmw0y354xs96x318s4y90yslmc-texlive-hyphen-uppersorbian-59745-checkout.drv /tmp/guix-tests/store/k4bzmzrf684q1iqrgjv7sijb431lsvha-texlive-hyphen-thai-59745.drv /tmp/guix-tests/store/586wy9h1s6n77xxilv2wc63rhpyqwwp5-texlive-hyphen-thai-59745-checkout.drv /tmp/guix-tests/store/lb7bgkdjc5fph5lb9g255cyxfh8cxhfs-texlive-hyphen-slovak-59745.drv /tmp/guix-tests/store/xij7xqzsdxc521w57f88nkhl1m6gh0l7-texlive-hyphen-slovak-59745-checkout.drv /tmp/guix-tests/store/li0cx82377r9kyimpcp84hva3bl6qvha-texlive-hyphen-basque-59745.drv /tmp/guix-tests/store/4bidv6ypjzbin0sdhiixchh08nhk6hcn-texlive-hyphen-basque-59745-checkout.drv /tmp/guix-tests/store/lsn3y9n94wm1vwrvf7yilmd7s4anzmij-texlive-hyphen-latvian-59745.drv /tmp/guix-tests/store/p2za8jrrh7kj9zryk4dhsy9vwpqfg156-texlive-hyphen-latvian-59745-checkout.drv /tmp/guix-tests/store/m62cvfvhagmh2ig8ghfri826w82sa65x-texlive-kpathsea-59745.drv /tmp/guix-tests/store/n9bjk653lwzvpp5lxm2cjgbzdxwjp0ag-texlive-kpathsea-59745-checkout.drv /tmp/guix-tests/store/mhwymi5cvm6d2j15ip3l9n82bfarw8vr-texlive-hyphen-portuguese-59745.drv /tmp/guix-tests/store/papkw00l80wwnjgk7gvh8psvnvh998r4-texlive-hyphen-portuguese-59745-checkout.drv /tmp/guix-tests/store/miscccyxnc706ypvlz8wk1gjjx2n3k86-texlive-hyphen-mongolian-59745.drv /tmp/guix-tests/store/fn7nahrkyj0vv4gbga98h85bay3gxis6-texlive-hyphen-mongolian-59745-checkout.drv /tmp/guix-tests/store/mzk1ri3cqdhi80f0zaknz211b8lzsziz-texlive-hyphen-latin-59745.drv /tmp/guix-tests/store/48dsri50w40265slbklmhrkhks2gl872-texlive-hyphen-latin-59745-checkout.drv /tmp/guix-tests/store/n4wsp8xk7vyb9gf8mvn9jxshf57cdyss-texlive-hyphen-romansh-59745.drv /tmp/guix-tests/store/qkc7lx2zaq67b0n9ajd4yrm57j2mbc4h-texlive-hyphen-romansh-59745-checkout.drv /tmp/guix-tests/store/n85zjwa5nl5gh7ycsmjyx37il4h0lx7i-texlive-hyphen-ancientgreek-59745.drv /tmp/guix-tests/store/22nvf7lmzhrv14r3hbpz1wjb45hlrna9-texlive-hyphen-ancientgreek-59745-checkout.drv /tmp/guix-tests/store/n9iyfz4z7ibr7ld4p03lmjppyk352ivr-texlive-etex-59745.drv /tmp/guix-tests/store/hh56yd2gzy02i8j0q56za2gsll9sq3xc-texlive-etex-59745-checkout.drv /tmp/guix-tests/store/p1i7apwxxl2rwlhk4sy8al45v4wa1i2p-texlive-hyphen-afrikaans-59745.drv /tmp/guix-tests/store/fb6f3viwwaswn7gmpaczyp8qkd5xwrx9-texlive-hyphen-afrikaans-59745-checkout.drv /tmp/guix-tests/store/p9cymrnkvppnk94k7740jrbm0qh0zgv4-texlive-latex-l3backend-59745.drv /tmp/guix-tests/store/7c6py2c9mmxxy9mpi10zlyng28gvqx5q-texlive-latex-l3backend-59745-checkout.drv /tmp/guix-tests/store/pqgi7123kdhip7f2l9bfv9dph1ff58av-texlive-hyphen-piedmontese-59745.drv /tmp/guix-tests/store/vy1hlcwibafrl9n293l4ib3k13qz74ij-texlive-hyphen-piedmontese-59745-checkout.drv /tmp/guix-tests/store/qfa04wr43v6v4yhsbxvd0fxgsil45l7g-texlive-hyphen-indic-59745.drv /tmp/guix-tests/store/9a5f2mb55hbcv2zg8fs68vbillc1sp2q-texlive-hyphen-indic-59745-checkout.drv /tmp/guix-tests/store/rry4brx0r00sx2zl7w2lv2jy2vpp92s8-texlive-hyphen-german-59745.drv /tmp/guix-tests/store/hfvszmswv2mnr5qiabm92596q01l356p-texlive-hyphen-german-59745-checkout.drv /tmp/guix-tests/store/s5xx7w0fvyfbk4w9nlki2gbrs2irjqwa-texlive-hyphen-hungarian-59745.drv /tmp/guix-tests/store/jqimih64y1yg3xhyr8xn7kr4f9wz3m5d-texlive-hyphen-hungarian-59745-checkout.drv /tmp/guix-tests/store/sf7i0m5y6d1g11cy5xzy611b9vbj2r5x-texlive-tex-ini-files-59745.drv /tmp/guix-tests/store/1i4hpj2w5i0wxjxdkdnqy24vgpp4cjjx-texlive-tex-ini-files-59745-checkout.drv /tmp/guix-tests/store/slzrv82lwgs696n018p82rc1zd8bin5l-texlive-hyphen-czech-59745.drv /tmp/guix-tests/store/wsdyr8v0xmy2i28wazgmmskhjgcpkkxi-texlive-hyphen-czech-59745-checkout.drv /tmp/guix-tests/store/svrfmg28nhzv9588avsyxkskgxa7c475-texlive-hyphen-interlingua-59745.drv /tmp/guix-tests/store/n86bbl111pzx2jvmabapz8mw1wgiwx4s-texlive-hyphen-interlingua-59745-checkout.drv /tmp/guix-tests/store/syfpc9hdn3xwiqw5rgwdxvb8vxnr7qgw-texlive-hyphen-swedish-59745.drv /tmp/guix-tests/store/dql4a1j3f2gsj4l6gr1ni30vd5rp0rxk-texlive-hyphen-swedish-59745-checkout.drv /tmp/guix-tests/store/vjgkk4pq4ydvlv4hs3ialgvc3vhd8saq-texlive-hyphen-english-59745.drv /tmp/guix-tests/store/sjwnh4z21ji6gsd878gprbkskw48d6yi-texlive-hyphen-english-59745-checkout.drv /tmp/guix-tests/store/w3wmibd8gdip3b93v9ymwnp2avby45nk-texlive-latex-l3packages-59745.drv /tmp/guix-tests/store/lsvls0xwfxd469cam3qbapng29sf82hy-texlive-latex-l3packages-59745-checkout.drv /tmp/guix-tests/store/wnmni0xkpvi3138yxgqadv2c8hyz8s30-texlive-hyphen-churchslavonic-59745.drv /tmp/guix-tests/store/94kq4bbs7vdvyzrcf60mv76xsbr63702-texlive-hyphen-churchslavonic-59745-checkout.drv /tmp/guix-tests/store/xhr6mnwbhm5xxh2sj98kjldjakf0izxm-texlive-hyphen-pali-59745.drv /tmp/guix-tests/store/bxaimb78y5m86alkphb7imkkr7i8fviy-texlive-hyphen-pali-59745-checkout.drv /tmp/guix-tests/store/xi99mdnd0kn5sym7jw9fmi26nf1m62v8-texlive-hyphen-italian-59745.drv /tmp/guix-tests/store/vd00r9bw4c28nxg2gyixjm229y7gc363-texlive-hyphen-italian-59745-checkout.drv /tmp/guix-tests/store/6dlq1zx8f87palkjqs1q2x962lpjl5kr-perl-module-build-0.4231.drv /tmp/guix-tests/store/3dr2z7qcc09pjcw2n85c92awr67v0d34-Module-Build-0.4231.tar.gz.drv /tmp/guix-tests/store/6nj6iyr7sz14c5f2k7msc6ndjiy1qrhf-perl-yaml-tiny-1.73.drv /tmp/guix-tests/store/45874z6j6ciq0icn8948ddgdmy1694ix-perl-module-build-tiny-0.039.drv /tmp/guix-tests/store/4im5a7k6i44w2bljzgqn2ghnkxwwsdfy-perl-extutils-config-0.008.drv /tmp/guix-tests/store/vb8848zak89z3nx252zaz0y0sjgdbpvg-ExtUtils-Config-0.008.tar.gz.drv /tmp/guix-tests/store/6n18xi6c762cp844w1agg5idgmrfg421-perl-extutils-helpers-0.026.drv /tmp/guix-tests/store/z0kd4sn8br12bvkb35ylx5rybc8gklrj-ExtUtils-Helpers-0.026.tar.gz.drv /tmp/guix-tests/store/qmp6jql1j4kka5yrgga5swpqq6926afn-perl-test-harness-3.42.drv /tmp/guix-tests/store/fnlqg74kjfkr0gihaiwshlj65xg66cj8-Test-Harness-3.42.tar.gz.drv /tmp/guix-tests/store/v7ihwlr46p6wwl5gl0b3pnqrpjch161i-Module-Build-Tiny-0.039.tar.gz.drv /tmp/guix-tests/store/zsgdjw0wr9cha4pdg2wa713ks6hnw5rg-perl-extutils-installpaths-0.012.drv /tmp/guix-tests/store/mzydy96wv31ywvmkfhhp751c4a3rhzf4-ExtUtils-InstallPaths-0.012.tar.gz.drv /tmp/guix-tests/store/5y526jl2bqx3clzmhbd57v02fxm6g360-perl-json-maybexs-1.004003.drv /tmp/guix-tests/store/2xz243rz372nfklmxnf0j24b6ap4bl1i-perl-common-sense-3.75.drv /tmp/guix-tests/store/98aglcvvvzp84x4d0p668zcqz5slpzzx-common-sense-3.75.tar.gz.drv /tmp/guix-tests/store/52qybi82wbbzywxl3i7yv8m9qvjmlsln-perl-cpanel-json-xs-4.26.drv /tmp/guix-tests/store/dhnkqxymyvz07mql9iad6vz8lghd8i47-Cpanel-JSON-XS-4.26.tar.gz.drv /tmp/guix-tests/store/hhzqy622w8cbmf4y8jbsrab46z54i0rj-JSON-MaybeXS-1.004003.tar.gz.drv /tmp/guix-tests/store/rk3pc5h676kyn657malaykjjjvzc1wk7-perl-test-needs-0.002009.drv /tmp/guix-tests/store/dd45gmkf8hkmw6cr5qy1m1hsz2m48qn7-Test-Needs-0.002009.tar.gz.drv /tmp/guix-tests/store/anmgahzgf5l9kvvbfnmlnz4paw2k1r8v-YAML-Tiny-1.73.tar.gz.drv /tmp/guix-tests/store/869gnf7dkmh42d7w3nz9sfmg89f18xlr-texlive-graphics-def-59745.drv /tmp/guix-tests/store/l7k0g05i15diz68wy4mblkngghwn95yg-texlive-graphics-def-59745-checkout.drv /tmp/guix-tests/store/yyrfidanv08ilxhv6qalxkml6ycx2zwk-texlive-latex-epstopdf-pkg-59745.drv /tmp/guix-tests/store/jxm5hpc3xw6y0xvy0367rzf7iw79rxkp-texlive-latex-epstopdf-pkg-59745-checkout.drv /tmp/guix-tests/store/b0r24iwj145b1g4wzfvna8pwibg1nl56-texlive-amscls-59745.drv /tmp/guix-tests/store/i7c76g8g1bkny6yw1v12ngnss4gxq4ig-texlive-amscls-59745-checkout.drv /tmp/guix-tests/store/b2w2g0nzs8mn945fpq0p2w8pb2q86p38-docbook-xml-4.1.2.drv /tmp/guix-tests/store/55v3by9g3l7afl0bl167acgwz3limirf-docbkx412.zip.drv /tmp/guix-tests/store/c6x6r5mr1iwd8sadb7v4cjksn0s3hkgf-texlive-psnfss-59745.drv /tmp/guix-tests/store/lyx2gfx63g1sn2add80rc0id26z9g5gf-texlive-psnfss-59745-checkout.drv /tmp/guix-tests/store/cdn7gdddp9y786zflmxn81w5pbhplhdv-texlive-tiny-59745.drv /tmp/guix-tests/store/fwjz5q37hvjwgi2pqz6xvml4kizg96rp-texlive-cm-super-59745.drv /tmp/guix-tests/store/59jk07z2vz5daw7lbwq9ijc9z3n8c5sh-texlive-cm-super-59745-checkout.drv /tmp/guix-tests/store/g4iyk5g22f7px23mdn7qgq3jbgba1hid-texlive-graphics-cfg-59745.drv /tmp/guix-tests/store/dss7yw2lb1cy31rlf7yjmcar9khznkip-texlive-graphics-cfg-59745-checkout.drv /tmp/guix-tests/store/h3b5iy9c337438qp5np19vwnvi3cf25l-texlive-latex-cyrillic-59745.drv /tmp/guix-tests/store/58rk3sa52bpkxn51i51k507liizwzvkp-texlive-latex-cyrillic-59745-checkout.drv /tmp/guix-tests/store/jxbkjb96z5zlsarw7gd00vxnwviqcz2k-texlive-latex-amsmath-59745.drv /tmp/guix-tests/store/wkm65g4vaipkyfb69fw6iqrh4gh27a29-texlive-latex-amsmath-59745-checkout.drv /tmp/guix-tests/store/lw8sqs2d3l0jjl41k3s7hldk9pqzw9yl-updmap.cfg.drv /tmp/guix-tests/store/mmfl11kl0l577nnbdvfipygc4n4h71jx-texlive-generic-babel-english-59745.drv /tmp/guix-tests/store/djm233j075lw09maa9r82pis3z3c53xx-texlive-generic-babel-english-59745-checkout.drv /tmp/guix-tests/store/r2plcggy8934fs32xd6bnfhkpivi2w8z-texlive-latex-tools-59745.drv /tmp/guix-tests/store/k2vapw1a30icpwmx4ib9v5bavr5ab218-texlive-latex-tools-59745-checkout.drv /tmp/guix-tests/store/v5b55nyibwmz8j0lmws3yrzgzabin7j0-texlive-babel-59745.drv /tmp/guix-tests/store/yj3bmhnqp68pa90ssnm7f6kbd2n2xd2v-texlive-babel-59745-checkout.drv /tmp/guix-tests/store/wk96qhxiypdcr5dy4jn5jgypr0wfrsp4-texlive-dvips-59745.drv /tmp/guix-tests/store/av6l4qjvmpmls89mz26rwgglf4w1cw7a-texlive-dvips-59745-checkout.drv /tmp/guix-tests/store/yxv34iypd2b0idfx18m7wy0wxrg4sycy-texlive-latex-graphics-59745.drv /tmp/guix-tests/store/4cpap8kb7f739csirf6mgl4yxpz63qb6-texlive-latex-graphics-59745-checkout.drv /tmp/guix-tests/store/zjrb58x7xfqf7arlmnlxwv2snqkgljrs-texlive-fontname-59745.drv /tmp/guix-tests/store/nqrbdyzxyvrrk2kgkr0qf5v1kvnp4ywb-texlive-fontname-59745-checkout.drv /tmp/guix-tests/store/cgg0kzlydxngwl9l67y40phnqac1canj-po4a-0.63.tar.gz.drv /tmp/guix-tests/store/spcsmd5v4ly3nm1xp401807ij7snghgy-perl-test-pod-1.52.drv /tmp/guix-tests/store/m2mhndhixdj3a21yhiahhi1v6948p2bw-Test-Pod-1.52.tar.gz.drv /tmp/guix-tests/store/w4k2k7r8wzkf2ij5ldf2qc4fx7ljqanf-perl-pod-parser-1.63.drv /tmp/guix-tests/store/5c2j3zr38kpg8dmnpspc5k74fy857cj5-Pod-Parser-1.63.tar.gz.drv /tmp/guix-tests/store/6jhfa21jk0cjd6p4yc3jf1cwjb5ilzis-guile-lzma-0.1.0.drv /tmp/guix-tests/store/xfb2vf4yh9s94j9ipc54riak27qh1d92-guile-lzma-0.1.0.tar.gz.drv /tmp/guix-tests/store/fv1ln5rj47mlqq73180h9m08c3ia14c3-guile-git-0.5.2.drv /tmp/guix-tests/store/16bfl9b4p7flj0yydzy9gk6rqprc62p5-libgit2-1.3.0.drv /tmp/guix-tests/store/faq7i03czy6h6mm4r7lsqb66b1dd7rbl-libssh2-1.9.0.drv /tmp/guix-tests/store/xlndcmn1i91dlrccxxac31iaj1r2msqq-http-parser-2.9.4-1.ec8b5ee.drv /tmp/guix-tests/store/g98b81dhda9q4gbqbfzjd14dy37f0qan-guile-ssh-0.13.1.drv /tmp/guix-tests/store/h2g0wf0p18lwmrpm5v8ah44xgw0n4sd1-libssh-0.9.6.drv /tmp/guix-tests/store/i8lwzllyh801gnyig9qg2ssrxp4w04qm-guix-1.3.0-16.10ceb3e-checkout.drv /tmp/guix-tests/store/w5g9vfpwj4n5kg5ay3b3wzac34zxhria-guile-lib-0.2.7.drv /tmp/guix-tests/store/yxaka5dzh5kh3zlpjkvrziib7lv5jhxa-guile-lzlib-0.0.2.drv /tmp/guix-tests/store/xgv6x1w0p18xidfkvd8skb1ksvpwln8j-lzlib-1.12.drv /tmp/guix-tests/store/yyjr2rikcc16qvb2anc60jfv7f8k3f82-guile-sqlite3-0.1.2.drv /tmp/guix-tests/store/zb6bmy0y22wrgxppb4jgh6232qi2hff3-disarchive-0.4.0.drv /tmp/guix-tests/store/iss4xrhwpd6bfwpfnympa1f77av2ic3h-disarchive-0.4.0.tar.gz.drv /tmp/guix-tests/store/kf64bmmfykhkpsrgl20kskilfdkwk86i-guile-quickcheck-0.1.0.drv /tmp/guix-tests/store/7vbd1f8krir5jqccz3mxq0044bwc7ihd-guile-quickcheck-0.1.0.tar.gz.drv /tmp/guix-tests/store/lpy7vlz5wd3rih2as1xb41lkf9mmq329-guile-lzma-0.1.0.drv /tmp/guix-tests/store/x6x398608k9lh169ipkwxjfjv92zjjm2-sudo-1.9.8p2.drv /tmp/guix-tests/store/w5csmfhyia8irry3sx36kyfly8bdardw-sudo-1.9.8p2.tar.xz.drv /tmp/guix-tests/store/1wx1ypdnq8nh1c6p5ys9m9pl1k8dzzd5-sudo-1.9.8p2.tar.gz.drv /tmp/guix-tests/store/y3y57hy5dxpyg47fz7w9j56lc3pzy47i-patch-2.7.6.drv /tmp/guix-tests/store/0yaz8903406bdjggf3qci4xfl3v9v1vw-ed-1.17.drv /tmp/guix-tests/store/11vvvvwwd3ssyla9jjsy0kal6jsg2kg1-lzip-1.22.drv /tmp/guix-tests/store/pksym19g14alxabzbvkvdvbhdbmii5rf-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/yfivn76aql9crsm7hd064bz40ba044l2-tar-1.34.drv /tmp/guix-tests/store/zrppsf1l0xb6sh8yknj6r616dsvi28g2-bash-5.1.8.drv /tmp/guix-tests/store/yyv969yc4xpq4jiwqhgxz3sgwk9rlvl6-guile-colorized-0.1.drv /tmp/guix-tests/store/1mi82141ikz1qv34bhrsh23dga5ml303-guile-colorized-0.1-checkout.drv /tmp/guix-tests/store/li355kl0hi6367fjm1m0j3dkyx715hnx-module-import-compiled.drv /tmp/guix-tests/store/zlcmq2smwmms932n9n2wmizkkmxfpwhs-gawk-5.1.0.drv /tmp/guix-tests/store/iz3krw7ghx4lwrzw972lxlm0dwj0lqsj-libsigsegv-2.13.drv /tmp/guix-tests/store/2d2cbya67yyji8xchr1in8knxix9mcr8-mkfontdir-1.0.7.drv /tmp/guix-tests/store/k1sh37msdlm5cq4phpj9kj9gqvw7pqr2-mkfontscale-1.2.1.drv /tmp/guix-tests/store/1zabz0ns5hza30yw81i99mqmcn2v0995-libfontenc-1.1.4.drv /tmp/guix-tests/store/zsd55ydb7knk2cz01f6d3hpgq2ph48c2-libfontenc-1.1.4.tar.bz2.drv /tmp/guix-tests/store/akh1wmkmcaxhfk1s4pf9wka6bim8671l-mkfontscale-1.2.1.tar.bz2.drv /tmp/guix-tests/store/my0azai9frif7yfdr4flv0a39hd9xj52-mkfontdir-1.0.7.tar.bz2.drv /tmp/guix-tests/store/vsjakghydi7drfic19zf183zr36qahyd-module-import-compiled.drv /tmp/guix-tests/store/2ibhvm4kjqzl7jimn8sw30nrljrj8c0y-locale-multiple-versions.drv /tmp/guix-tests/store/kzzlxx72p8wgxrgcjh13p3128kpgkw7f-locale-2.33.drv /tmp/guix-tests/store/pv0ziwf8zikap87l6l2q935aydhcz9gd-module-import-compiled.drv /tmp/guix-tests/store/wmdk807ql9dk2d2nh982870j5h6w9wnz-locale-2.31.drv /tmp/guix-tests/store/4nkpxx2jjapbnl0fnpnas1x2pvahc5ih-glibc-2.31.drv /tmp/guix-tests/store/kflx39w92xlv1lg3pvgv1sqz939mzjc9-glibc-2.31.tar.xz.drv /tmp/guix-tests/store/1ipqan74q3gddmn8v2xc3giz6i5r6wks-glibc-2.31.tar.xz.drv /tmp/guix-tests/store/6slr9jckxrw70iahl7m09yxffg5kf9i8-gnumach-1.8-1.097f9cf.drv /tmp/guix-tests/store/hav0lhvdqg986llw1h85gzaxkhx8xs2g-parameters.drv /tmp/guix-tests/store/hw6a1x6l7if3bh0977nv6df7cl0pk9wd-glibc-cross-i586-pc-gnu-2.33.drv /tmp/guix-tests/store/r3n0mwssv6qffr4ppbf9pc5vfbpdzwq0-activate.scm.drv /tmp/guix-tests/store/7n39ds0sjnmihh4fz4bs9qryn0x0lmdc-activate-service.scm.drv /tmp/guix-tests/store/3hpca7axi08bvdy48v06w93l7i656dyf-module-import-compiled.drv /tmp/guix-tests/store/xn7n659jkzjgpk21zfmndxkx753lyscc-module-import-compiled.drv /tmp/guix-tests/store/aaf2rjv2rp734nxmrfyjv60vzqpaxr2g-activate-service.scm.drv /tmp/guix-tests/store/s1j1919p16apd1cpxz1ibmj4shc5i18p-acl.drv /tmp/guix-tests/store/7igz808sygf9kiwhj7fjw71s5g0imsx2-module-import-compiled.drv /tmp/guix-tests/store/inki0769jxfpvzbk8jm3sky0mfgj2bk0-module-import.drv /tmp/guix-tests/store/y3b6ydmh2hdj6nqh227fpj8888d2c3xc-guix-1.3.0-16.10ceb3e.drv /tmp/guix-tests/store/6lsh62vk0kn2h2j78ny6samgjl69jcl2-guile-avahi-0.4.0-1.6d43caf.drv /tmp/guix-tests/store/jy86h73gpmiy9m60q14nq2fixjklnnls-guile-avahi-0.4.0-1.6d43caf-checkout.drv /tmp/guix-tests/store/qqadvi6vj5hxn3i86w8nhswpl0r78z4d-avahi-0.8.drv /tmp/guix-tests/store/05mxrlvm0zl5rdhcnpncnfkwlzcccfwb-avahi-0.8.tar.xz.drv /tmp/guix-tests/store/kv5zjaqcw6m0dsqb6d1ifpsp6iza8mx7-avahi-0.8.tar.gz.drv /tmp/guix-tests/store/63hzg9lj4qbc0yzjcqldmkj0l5x4brjm-libdaemon-0.14.drv /tmp/guix-tests/store/jvdj9bd8wdw01qvsh6cwlznfwg1xmf3f-libevent-2.1.12.drv /tmp/guix-tests/store/w358xfjmb9w4ny9bd4p2rl0lf8smqp13-libevent-2.1.12-stable.tar.gz.drv /tmp/guix-tests/store/82pm5vc49x4r60d1di2z9a907lc75xgz-disarchive-0.4.0.drv /tmp/guix-tests/store/w8wl3kwvpi52iihxa2nsmb1dnwj25fli-module-import-compiled.drv /tmp/guix-tests/store/wwc50cd3b5jf59kplqh305yjq989fp78-module-import-compiled.drv /tmp/guix-tests/store/dx2s776wfjajxchw2712z0g43zxgszc3-module-import-compiled.drv /tmp/guix-tests/store/hcqky0pwzdk4y2zcbaacmi736dfqr6p1-activate-service.scm.drv /tmp/guix-tests/store/zd7l8c3w961nqh9ga2314aa5mlwhjdfc-etc.drv /tmp/guix-tests/store/3dppzrmjipl215357m62qp0rxxqcigkl-skel.drv /tmp/guix-tests/store/527iylba234w3j8gbd5sd3fc5ydlhi15-shells.drv /tmp/guix-tests/store/gibpg9bbb294maqsf1nh5nd5hy8zs9xf-profile.drv /tmp/guix-tests/store/jbfzgwqm2x8lwj1l0rawqv9dz2cmbjkq-sudoers.drv /tmp/guix-tests/store/nhbr7xzlz6hai88brw7klrhn0jhkbvjj-sudo-1.9.8p2.drv /tmp/guix-tests/store/z19w36j62bsnw4cr7xdfm46yjk8gi5i2-pam.d.drv /tmp/guix-tests/store/1801p42rgy9mkkpdf9bmzrgk41fna0bc-groupadd.drv /tmp/guix-tests/store/5jybgg7awqw792vb8gk74i1kny6f087i-groupdel.drv /tmp/guix-tests/store/63zwpr2yb02fg2fjyzfmyl7sby5wpcg9-userdel.drv /tmp/guix-tests/store/9v5ds3f9pa7na20wmfrg0l2qsjxdpzi7-passwd.drv /tmp/guix-tests/store/c1i43n1ip1s8ppmc13igxgzj61c2bffl-other.drv /tmp/guix-tests/store/fsbvj9x1yz3pvvgy5xq70c91cfmy2brq-useradd.drv /tmp/guix-tests/store/jx9xjzd42063rhjap04wrgwrnn1qivsc-su.drv /tmp/guix-tests/store/mz6j7h9af2gcjrs2kav8lxmnvlsidk5c-sshd.drv /tmp/guix-tests/store/nwy8z7fv1dw5y94p3icw7mw749pk4nj6-sudo.drv /tmp/guix-tests/store/wzlh1j5xv051jxjxj4mn002lz969xsx8-usermod.drv /tmp/guix-tests/store/zx1d38g65ycdx57c6jk9yabk82yfzlvr-groupmod.drv /tmp/guix-tests/store/hxnjyfvkybzwxqknil19wflaqad64jxp-module-import-compiled.drv /tmp/guix-tests/store/kjva962ff5j9f7fdxxcdhwl2m8hpf6hy-activate-service.scm.drv /tmp/guix-tests/store/lh7m38bi0qp8mz3nljqq50w6p7v7xsy9-activate-service.scm.drv /tmp/guix-tests/store/a36ahix369ycji7lmdrjb2291ly1r537-openssh-authorized-keys.drv /tmp/guix-tests/store/wbqiy7fw4pv6yhvzbv63n3fwssdn8w4q-activate-service.scm.drv /tmp/guix-tests/store/5zh933hzdn63dgfvl5rll7q176b3xhdm-module-import-compiled.drv /tmp/guix-tests/store/lfl2z97yr6r6iva1v2y4c851mcy84xhn-module-import-compiled.drv /tmp/guix-tests/store/scwswwli04va6pifjap1fyip3mc2qh72-rc.drv /tmp/guix-tests/store/zgcxiby0r7z79fqh6wpnm18cn6vv44i8-module-import-compiled.drv /tmp/guix-tests/store/zzqzc2pn1icvpvp6jhpq8rn7mk8l7wyi-module-import-compiled.drv /tmp/guix-tests/store/y807f94cij2q3rlyb2qd3hlv84kfpgqj-boot.drv /tmp/guix-tests/store/nhrw144gr9wqw54x5pshcgqf7nnjgy2h-shepherd.conf.drv /tmp/guix-tests/store/52n27la7mr90q212mj82wv0lk313nm2j-shepherd-networking.go.drv /tmp/guix-tests/store/mavarkkc8ij4y74icl6qaqn9zzdwzlz4-shepherd-networking.scm.drv /tmp/guix-tests/store/9zlxc9kgswhccf9192kd9xrk5l9dsi0s-module-import-compiled.drv /tmp/guix-tests/store/afs9r7q7pysbpmn4qk1ms00ywiv13n30-tear-down-pfinet.drv /tmp/guix-tests/store/n1kvqfqz8ay3axv9iyn56n9bbqwjp3w4-module-import-compiled.drv /tmp/guix-tests/store/v6rjqlsl291s22dgz0cmp9n0qy4w6ih5-set-up-pfinet.drv /tmp/guix-tests/store/sd3cwl4rq49ci499hpxhkgvixr1yz01s-shepherd-0.8.1.drv /tmp/guix-tests/store/g17zvd9vf2yyadylx3v4ic4c1wm2l5kz-guile-readline-3.0.7.drv /tmp/guix-tests/store/7dpjq9pif8llddbwqk037vihn4i15wgn-shepherd-ssh-daemon-ssh-sshd.go.drv /tmp/guix-tests/store/khgsq2zqd5xpwyqk5h4bl7xc5d6nsnqy-shepherd-ssh-daemon-ssh-sshd.scm.drv /tmp/guix-tests/store/5mna1z234m3jggp421ka7i8fn9phsk13-sshd_config.drv /tmp/guix-tests/store/jd0kv749fbpxrxlkxkvhx9g1lyd2kmza-shepherd-user-processes.go.drv /tmp/guix-tests/store/wssa28dfjj3m3xb6vpgj3brg6y307srq-shepherd-user-processes.scm.drv /tmp/guix-tests/store/l6h9psn336gr0dvav3bxyiyvwzrdwa97-shepherd-loopback.go.drv /tmp/guix-tests/store/8qn3s797lald5bg0ckdd6v0jn4ay3zw4-shepherd-loopback.scm.drv /tmp/guix-tests/store/m72amsps1nhcyvamyfna5vm445gcy58b-set-up-pflocal.drv /tmp/guix-tests/store/q5nxkxqkhqc2pm6d8i5jvs1sv6kph7mj-shepherd-user-homes.go.drv /tmp/guix-tests/store/1kcimhwqy1m2qklj2v1j10amp8xj0s62-shepherd-user-homes.scm.drv /tmp/guix-tests/store/awzwm1qisdwgnnk1g39nf7i7dj0d91pz-module-import-compiled.drv /tmp/guix-tests/store/rvcnibhrc42gpp5jx1qbgw4258cc8795-shepherd-console.go.drv /tmp/guix-tests/store/fx7z29i1lc8wir77qd13mhcqwxx77r4y-shepherd-console.scm.drv /tmp/guix-tests/store/s5pn4yidmq99761ncsw39mj16wv5q4qa-shepherd-term-tty2.go.drv /tmp/guix-tests/store/lvbc1zkwvdmgggrb604hnrwjd7wqypqq-shepherd-term-tty2.scm.drv /tmp/guix-tests/store/sz37599dvxr9r2cgi1qwazj2n6ky8rqv-shepherd-term-tty1.go.drv /tmp/guix-tests/store/3gqgc95qhwv5m2wc3gblh0bil6r43vr4-shepherd-term-tty1.scm.drv /tmp/guix-tests/store/vzb66c2abxak4i7cmsr23xv1mh9dq4jl-shepherd-guix-daemon.go.drv /tmp/guix-tests/store/1jjr8zhmj1hhihl8bql8sqjqxzjwbs9g-shepherd-guix-daemon.scm.drv /tmp/guix-tests/store/2iml6r4zpl32j986db2kmg7z38rrfsfq-module-import-compiled.drv /tmp/guix-tests/store/n3rn9ipfychllr8dar2rxcxx43kmxhbg-module-import.drv /tmp/guix-tests/store/mwd8vj7h4rslp4qkri4dk8hnrfrj1ql1-module-import.drv /tmp/guix-tests/store/ncd2b6k55azqmrzyllsjzdry93l77qn4-module-import-compiled.drv /tmp/guix-tests/store/wl76ppi5fx7y46yh338l10flfbbqflkd-shepherd-user-file-systems.go.drv /tmp/guix-tests/store/fw11mzzv68adk65qcnj3mz00bgyjgzpg-shepherd-user-file-systems.scm.drv /tmp/guix-tests/store/y1rwdlm4a56frh1wr0l65hmpjw56im7m-shepherd-root-file-system.go.drv /tmp/guix-tests/store/ha474rdjr2whv7nsnmflnhyl8j3l822b-shepherd-root-file-system.scm.drv /tmp/guix-tests/store/yrac1ll8p3a0i1p35746dsl934lymglr-shepherd-file-systems.go.drv /tmp/guix-tests/store/x8j4siwfay90i6v7vmcfp4212d2lsv76-shepherd-file-systems.scm.drv /tmp/guix-tests/store/ysq24s5pzd5i6arf2h7cb6v9npn43hhz-shepherd-syslogd.go.drv /tmp/guix-tests/store/2l15s5399vsy5fyjwi79qr0131cwpa8a-shepherd-syslogd.scm.drv /tmp/guix-tests/store/ll0sjrcznka1xl20gf9xn0f4hl6asapv-grub.cfg.drv /tmp/guix-tests/store/8gz8i5r1fdmindx2k92358x4k2hd90l5-grub-locales.drv /tmp/guix-tests/store/q71vdiyc83329k5k7mr1fvpcxv43vzsb-grub-minimal-2.06.drv /tmp/guix-tests/store/4vvaw194fb4yvkdjfpzrz0k2jb3kgfg6-freetype-2.10.4.drv /tmp/guix-tests/store/l55j9zgpr1qzz6lkhyw6a514g8im5xn8-libpng-1.6.37.drv /tmp/guix-tests/store/9x06z3xpdkx88k3cf55649h0yrj18q12-gettext-minimal-0.21.drv /tmp/guix-tests/store/mxb855cs8lpf3840qd396arrab6sxgad-libxml2-2.9.12.drv /tmp/guix-tests/store/mxfwy05ifpzrvhn6k7gnr6p3m7qrqpyx-grub-image.png.drv /tmp/guix-tests/store/666b3184y9jlxm2b6b64k2q08nqc1b15-guile-rsvg-2.18.1-0.05c6a2f.drv /tmp/guix-tests/store/cpb9gxknn6zdszgwfmr2lplkrbpq2mmy-shared-mime-info-1.15.drv /tmp/guix-tests/store/849616pvharfhc6r4p8kflz647d4mm3b-shared-mime-info-1.15.tar.xz.drv /tmp/guix-tests/store/knz970wh9br51388mhnrfj0lfa7xfkdl-guile-cairo-1.11.2.drv /tmp/guix-tests/store/i1zcl2pd4r8agw87xa2hhzj7jzfjdp3h-guile-cairo-1.11.2.tar.xz.drv /tmp/guix-tests/store/psqszs75zic5lxkw9nf654xmajg6pq81-guile-cairo-1.11.2.tar.gz.drv /tmp/guix-tests/store/l9ywwqvvdzwyf244618hprsclq2wazbj-librsvg-2.40.21.drv /tmp/guix-tests/store/0r7iyfdx2njcgqi4bsbgrncn0xmf58pr-libgsf-1.14.47.drv /tmp/guix-tests/store/scqlzp3wrmjxiiwqvd6z5vz10gskny78-libgsf-1.14.47.tar.xz.drv /tmp/guix-tests/store/x3yfjx440ziw2afiykklvczhbvcn1hfk-docbook-xml-4.5.drv /tmp/guix-tests/store/y7p9gwd0l4d1ljbb5arp3fc9gqbyh4f3-docbook-xml-4.5.zip.drv /tmp/guix-tests/store/xwgkkzn7v0lfjc5vjj5nbk73rfn74h9b-gdk-pixbuf-2.42.4.drv /tmp/guix-tests/store/6ms48d12d6h6p4mlbvy2pc92z7k59mag-gdk-pixbuf-2.42.4.tar.xz.drv /tmp/guix-tests/store/jv424rnsi01kjqrq04970gpk5cnqihw7-docbook-xml-4.3.drv /tmp/guix-tests/store/rym91smpacy7q9m2vlr0n23znr84lxq4-docbook-xml-4.3.zip.drv /tmp/guix-tests/store/hm5p7xl3ad97k70nqp9ydij4da2l31zk-libcroco-0.6.13.drv /tmp/guix-tests/store/03ddw7xmnib10zap1z2nyn9fpqpv8wmz-libcroco-0.6.13.tar.xz.drv /tmp/guix-tests/store/6cvwsd8snmnc25606gfvdmw7gf0c6l83-libcroco-0.6.13.tar.xz.drv /tmp/guix-tests/store/s21fp4h91fgjg1n2jmrjwmdkd5ijz05h-librsvg-2.40.21.tar.xz.drv /tmp/guix-tests/store/sxi5wqkgj4v0w92rdfglk4fpld1dh2lr-guile-rsvg-2.18.1-0.05c6a2f.tar.xz.drv /tmp/guix-tests/store/rfy46yh6r8lza6l20qyhjkw1pd2lwm0h-guile-rsvg-2.18.1-0.05c6a2f.tar.gz.drv /tmp/guix-tests/store/rc9hicqj729h2243jzhicph6r2za64y9-module-import-compiled.drv /tmp/guix-tests/store/rdc732dgcpdp087ycy1j9rxvp8xg8n60-guix-artwork-2f2fe74-checkout.drv /tmp/guix-tests/store/m7w7d0ba41gg665aq9shwk68d56q44sd-grub-efi-2.06.drv /tmp/guix-tests/store/3aflpa7pa4awlygblgxjkkwx99yj54q9-fuse-2.9.9.drv /tmp/guix-tests/store/xq1mlgk5rw7ka30jdx4aj31sa2grg039-fuse-2.9.9.tar.xz.drv /tmp/guix-tests/store/rrxskzv964zilsi81wwam87ix2yxvr2c-fuse-2.9.9.tar.gz.drv /tmp/guix-tests/store/54z5zijpccpjfsq44794svsybv0ifl4v-xorriso-1.5.2.drv /tmp/guix-tests/store/ix4k1853388gpg9gk7q7j60c25q809nf-xorriso-1.5.2.tar.gz.drv /tmp/guix-tests/store/94jsmp2v461d86cpsqfsvcpdivlxppv5-parted-3.4.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/py9prgrxz261l11b346blzvbnv3dcnjk-parted-3.4.tar.xz.drv /tmp/guix-tests/store/xn7835n120pycqzqhfbsszk555hf0bvn-lvm2-2.03.11.drv /tmp/guix-tests/store/pjm81nfsixr57mzwv6j3n090sy6b204x-LVM2.2.03.11.tar.xz.drv /tmp/guix-tests/store/qbnmrqyxy66rnjxyv3xmcl3cg3184ml9-LVM2.2.03.11.tgz.drv /tmp/guix-tests/store/pryrccddxpjp6rhg9dg63bfj1bxqr9ws-eudev-3.2.9.drv /tmp/guix-tests/store/96qg9y2lrwq5ai7n4dp6n5v5hg1rbhrc-docbook-xml-4.2.drv /tmp/guix-tests/store/4xa6bmg4fysxsi7fcaqcln3dzbch3jbq-docbook-xml-4.2.zip.drv /tmp/guix-tests/store/z3fp9gnyy3n3g27jqflhb7l46cqygxww-eudev-3.2.9-checkout.drv /tmp/guix-tests/store/j8rf89mfp8xklyz4c5fwpfrjmcm4031q-eudev-3.2.9-checkout.drv /tmp/guix-tests/store/9a5fv9invv6f983qi23000sh9yb8zjwp-efibootmgr-17.drv /tmp/guix-tests/store/94xqw5rkkpz8c1p2b2bswplm7i7piwmh-popt-1.18.drv /tmp/guix-tests/store/i26vs037bcwq7jnkq3ssgc8dg0n3avvc-popt-1.18.tar.gz.drv /tmp/guix-tests/store/g41l93j4hpnm5qw4bia65rrv60p6fn3q-efivar-37.drv /tmp/guix-tests/store/yf9bxihf2j8xg2l060507sg6l334wypb-efivar-37.tar.xz.drv /tmp/guix-tests/store/bpn7r66bw8pzfx209ya5friz55ih15r2-efivar-37.tar.bz2.drv /tmp/guix-tests/store/j6qdjbiz7k9ga72dk4bqm92421l9lbaz-efibootmgr-17-checkout.drv /tmp/guix-tests/store/manwiff0fnbvq1v95ad5za889jphabpa-efibootmgr-17-checkout.drv /tmp/guix-tests/store/rjq0wgmw69vfl1rjjggmr64fjws6cl5c-qemu-minimal-6.1.0.drv /tmp/guix-tests/store/01i1dqd7ndz3c98s8dywbwrskljja05y-python-sphinxcontrib-htmlhelp-2.0.0.drv /tmp/guix-tests/store/n22civi2bp6ac1xa80izppp03kz3ri60-sphinxcontrib-htmlhelp-2.0.0.tar.gz.drv /tmp/guix-tests/store/12q5a5c6h0w565hq27q73r1xd8mr3yg3-python-asn1crypto-1.4.0.drv /tmp/guix-tests/store/89c6cq93vzqjchw5a7hxil98f870sc3b-python-asn1crypto-1.4.0-checkout.drv /tmp/guix-tests/store/18in8khqhxw5xhxl62q8cszp3ylfj0mk-python-charset-normalizer-2.0.5.drv /tmp/guix-tests/store/23psdhx9d9x5kjvgpzfx1hi56rm8ni4m-charset-normalizer-2.0.5.tar.gz.drv /tmp/guix-tests/store/1c77malcxjx14bwm7nh8q66nyykglbsh-python-idna-2.10.drv /tmp/guix-tests/store/0kxx0x8y407sxmc5dcz574ji9f6cs0rd-idna-2.10.tar.gz.drv /tmp/guix-tests/store/2bfkk8g82aphfxphbk8ak8lgcqv7wgyl-alsa-lib-1.2.4.drv /tmp/guix-tests/store/bsc41dnqy1g2g0s2g36ai2cambjpmf69-alsa-ucm-conf-1.2.4.drv /tmp/guix-tests/store/q3cf9m524ahanwzkg921s9nzjwmzc5yx-alsa-ucm-conf-1.2.4.tar.bz2.drv /tmp/guix-tests/store/kwcp0mcd5zsg7qzwq4r88kijrpjmvxx8-alsa-topology-conf-1.2.4.drv /tmp/guix-tests/store/zsnmj62w05savi7v9qnyjy3v9abcrpk8-alsa-topology-conf-1.2.4.tar.bz2.drv /tmp/guix-tests/store/p1n4m081mi2nsmfwq0p5zppcg3yg71b5-alsa-lib-1.2.4.tar.bz2.drv /tmp/guix-tests/store/2ghsivipr1yb6yf00y8bcz27j0z35nmy-libcap-ng-0.8.2.drv /tmp/guix-tests/store/nf2lxkhiir1w4k28lfg4xz2kz9bla2d8-libcap-ng-0.8.2.tar.gz.drv /tmp/guix-tests/store/407ihpf2h9pwnr4aywrmw75wb5v76fqf-python-docutils-0.17.1.drv /tmp/guix-tests/store/g14vvpr3ird9ybkn1q65pik05mfx80f8-docutils-0.17.1.tar.gz.drv /tmp/guix-tests/store/59l36lhvcsjkb0pw3hnfg13p3dbmz0si-python-pytz-2021.1.drv /tmp/guix-tests/store/0sdnik47q72psssnc5x5mnfsr5yv9jpx-pytz-2021.1.tar.gz.drv /tmp/guix-tests/store/64vrsskq97czn86i525dpkr4q0yy5gnb-python-certifi-2020.12.5.drv /tmp/guix-tests/store/vk7xxhljhm6scqsldjjqrcbi1rkmrngy-certifi-2020.12.5.tar.gz.drv /tmp/guix-tests/store/83m7b0q4g306d49y334q349hn9qjryhw-python-babel-2.9.0.drv /tmp/guix-tests/store/cqz8kzdwms7ipd99bz4qaq8imr6vpjkd-python-freezegun-0.3.14.drv /tmp/guix-tests/store/2jbd3i45jkp1fn3yl9ac2pxv7y0c44b5-freezegun-0.3.14.tar.gz.drv /tmp/guix-tests/store/kd688ymzmsnzpn442kjbpjfp945kxm6y-python-dateutil-2.8.2.drv /tmp/guix-tests/store/13f3h50mzv2n17l5qs96myfn349g14zj-python-pytest-cov-2.8.1.drv /tmp/guix-tests/store/7ln83xypzs1vl81qli6m5psqyndblllg-python-coverage-5.2.1.drv /tmp/guix-tests/store/dvcqm0016nbby836mhj99s0d34ngbyak-coverage-5.2.1.tar.gz.drv /tmp/guix-tests/store/zzpd8w78qpxvvwhh2g882lhmfvkfzv6v-pytest-cov-2.8.1.tar.gz.drv /tmp/guix-tests/store/syw38d3nvmgdisgv63zhryy3h91hr09a-python-dateutil-2.8.2.tar.gz.drv /tmp/guix-tests/store/dqzk82fhfm654pcsgblbvsgnwnfvb06f-Babel-2.9.0.tar.gz.drv /tmp/guix-tests/store/arzdd00nfj3b4s228ns0pnhggqdvalfq-python-sphinx-4.2.0.drv /tmp/guix-tests/store/2zyw6lw6d0dwmgnbi2hhiwvn9ijb0c02-Sphinx-4.2.0.tar.gz.drv /tmp/guix-tests/store/bm2h6ls4zir9vvkxv8a8rg840dn35dda-python-urllib3-1.26.7.drv /tmp/guix-tests/store/d6y75g1hfpb0vbcy620i4mqqxfcf50hz-python-cffi-1.14.4.drv /tmp/guix-tests/store/f5cgdvz9xzp88nk29az87rpwc8phrrp5-cffi-1.14.4.tar.gz.drv /tmp/guix-tests/store/njhh79fqs1h0brjl5xlgrqgnnj913wmk-python-pycparser-2.20.drv /tmp/guix-tests/store/1czag77s1c08i0z56312d8q4rg5ffxay-pycparser-2.20.tar.gz.drv /tmp/guix-tests/store/f4il6aszmfxci62lkaf2q08my6gg3g73-urllib3-1.26.7.tar.gz.drv /tmp/guix-tests/store/fai69jm1vmcg0zm1lkg5hs6kdc7a2nwc-python-cryptography-3.3.1.drv /tmp/guix-tests/store/2q6idpik06cx7ba558ly921v6nza4fnw-python-cryptography-vectors-3.3.1.drv /tmp/guix-tests/store/xjjyjzk44aq44cqfmb446zaamd9i9nvq-cryptography_vectors-3.3.1.tar.gz.drv /tmp/guix-tests/store/cikd1ka7q2w6935b0q29fx204sq6hagn-python-pretend-1.0.9.drv /tmp/guix-tests/store/2f9mkw7b3x78b11s5l94gjfcxbdfa9sf-pretend-1.0.9.tar.gz.drv /tmp/guix-tests/store/p3g1253jznnnv9m60fdafbvl4xaavp1k-python-iso8601-0.1.13.drv /tmp/guix-tests/store/aax0vmnzw2g0rvid773wkwg2f0wpka6k-iso8601-0.1.13.tar.gz.drv /tmp/guix-tests/store/pgwdhlmhpj959rlh619dhf6gig87kmqm-cryptography-3.3.1.tar.gz.drv /tmp/guix-tests/store/h8w3kixcpz7phpdrd69v57jcnsng6b34-python-pysocks-1.7.1.drv /tmp/guix-tests/store/zar1xp9jwhac68pd9c7dd8qpchlzh33j-PySocks-1.7.1.tar.gz.drv /tmp/guix-tests/store/r5gw54wynrm3pa5bx8l8ylqg963baz0c-python-pyopenssl-20.0.1.drv /tmp/guix-tests/store/2qzs9g02y4mv4h7ppvp12c0dwkriw6jd-python-flaky-3.5.3.drv /tmp/guix-tests/store/7qb7lfakv1bsj5x8c15b3bxwpsyh4vcd-flaky-3.5.3.tar.gz.drv /tmp/guix-tests/store/64036g9fjw2g487snlvsix0i2s1nihd8-pyOpenSSL-20.0.1.tar.gz.drv /tmp/guix-tests/store/zhi7l92dja5c9vxa8blrn9nlqm7p5maz-libfaketime-0.9.9.drv /tmp/guix-tests/store/a3gv2hy9g38jgv1lbr4k89i7w09nqnc0-libfaketime-0.9.9-checkout.drv /tmp/guix-tests/store/c0nck7i44gw6z7f1cy4xy2x57hh049c9-python-requests-2.26.0.drv /tmp/guix-tests/store/68070zqnzywk8zpqkgkg5g0bvcsnai78-requests-2.26.0.tar.gz.drv /tmp/guix-tests/store/hjzqb4yl91jqgswpi7kzn3zp10awp319-python-chardet-3.0.4.drv /tmp/guix-tests/store/1a5mb76vk1l5d84bx7lcbgbc2igzs7zd-chardet-3.0.4.tar.gz.drv /tmp/guix-tests/store/d2qcs74lib84ayjbx0kdbnnnrcndc7y4-imagemagick-6.9.12-4.drv /tmp/guix-tests/store/ganfj86w0mwg26wf178k3k7fn3a31gii-ImageMagick-6.9.12-4.tar.xz.drv /tmp/guix-tests/store/7pivcm45q4hw5jra2jpgbi4qd5ssipp8-ImageMagick-6.9.12-4.tar.xz.drv /tmp/guix-tests/store/is2i0k7647r82lav7n4l117alz5l5kcs-fftw-3.3.8.drv /tmp/guix-tests/store/13x9yk166is9c0kyq5mb9qw72krngnxm-fftw-3.3.8.tar.gz.drv /tmp/guix-tests/store/dgwnph3hf3pxzmlvnzd0l0ilrdq3j36c-python-sphinxcontrib-devhelp-1.0.2.drv /tmp/guix-tests/store/h2qpa86ymnqidvig1dmnd4yh5fqyx2vc-sphinxcontrib-devhelp-1.0.2.tar.gz.drv /tmp/guix-tests/store/dln91hn5x2p9l1kqnbz6b4071qds12pq-python-pygments-2.8.1.drv /tmp/guix-tests/store/aazra4za7p9lbi8csn556wpvhy45rlip-Pygments-2.8.1.tar.gz.drv /tmp/guix-tests/store/fr36j1bmsv8g2znvv0499wgy3nfxc55w-python-sphinxcontrib-jsmath-1.0.1.drv /tmp/guix-tests/store/agp9iwn82f2ra8v1sx02b95x64x2sr7v-sphinxcontrib-jsmath-1.0.1.tar.gz.drv /tmp/guix-tests/store/h2lhimwf3chi5rri2qxl7y9vlma0gyic-python-snowballstemmer-2.0.0.drv /tmp/guix-tests/store/9a49mk14vvpgbn4rw1600lwzc5rx4554-snowballstemmer-2.0.0.tar.gz.drv /tmp/guix-tests/store/ivvc8pi1f4w06fgl4m9qw5jkg6h13w18-python-markupsafe-2.0.1.drv /tmp/guix-tests/store/vjfmxg648virpddqwk8f9p9zxk26406w-MarkupSafe-2.0.1.tar.gz.drv /tmp/guix-tests/store/jki51kc261vlrjjdf84mm258x3yycxl8-python-packaging-20.0.drv /tmp/guix-tests/store/jxhfdhc34ixj8nxf6h48jjd8s10a9rga-python-sphinxcontrib-qthelp-1.0.3.drv /tmp/guix-tests/store/sygw5jqw4hb4msa4rgzgwhd51lqzcbk7-sphinxcontrib-qthelp-1.0.3.tar.gz.drv /tmp/guix-tests/store/lhfmi0acg19x52mxxb3f089r4ysfgi8r-python-sphinx-alabaster-theme-0.7.12.drv /tmp/guix-tests/store/q9pk2f4nyx4b2814p99faqwk8r96lb98-alabaster-0.7.12.tar.gz.drv /tmp/guix-tests/store/nllpay12x91rw85asj25dgzknkqk2d1n-python-sphinxcontrib-serializinghtml-1.1.5.drv /tmp/guix-tests/store/dx7vypdvs8d3j744lx89s3b4blh0w3l0-sphinxcontrib-serializinghtml-1.1.5.tar.gz.drv /tmp/guix-tests/store/nrzrk84v7ny3hws4mxak7vriciahxhbk-python-webencodings-0.5.1.drv /tmp/guix-tests/store/30acf20biyi24cklnprxy6sin4dxzycr-webencodings-0.5.1.tar.gz.drv /tmp/guix-tests/store/sqlw91q4gjvf3lysz16ympyj0s40gy7h-python-sphinxcontrib-applehelp-1.0.2.drv /tmp/guix-tests/store/bw1irzvp3pzpc4gpifmripdl55b46i26-sphinxcontrib-applehelp-1.0.2.tar.gz.drv /tmp/guix-tests/store/xijv71f9xx0nlswmgii46fbg22zmanma-python-imagesize-1.2.0.drv /tmp/guix-tests/store/q2c76w2sfgmdycv3cl9sc00nfdzdhr5z-imagesize-1.2.0.tar.gz.drv /tmp/guix-tests/store/yfr28d7xcq19hgqbg7yjvkmw7v0vfszq-python-jinja2-3.0.1.drv /tmp/guix-tests/store/3msr00fkq1b43dpsy9q1qdfhivz079bd-Jinja2-3.0.1.tar.gz.drv /tmp/guix-tests/store/ylyff6vcdnvfmldv7sg896y2d0n81w0z-python-html5lib-1.1.drv /tmp/guix-tests/store/ln1bp8xrbmljdz4m27wjb4k3cn60fab2-html5lib-1.1.tar.gz.drv /tmp/guix-tests/store/b2xnvs14gq8y279j33g6zphybzwyvcxj-qemu-6.1.0.tar.xz.drv /tmp/guix-tests/store/w59bzn2p78mdpk5wb26jj3kf9qq44amw-qemu-6.1.0.tar.xz.drv /tmp/guix-tests/store/gz9sy7296rmiycrlkj76x8l39jll2d2l-python-sphinx-rtd-theme-0.2.4.drv /tmp/guix-tests/store/33s841a2ijmz71fiksngzz8az6dxld19-sphinx_rtd_theme-0.2.4.tar.gz.drv /tmp/guix-tests/store/yq3pn0f0zbwpnmsqqzr9rnjk6hva273c-libseccomp-2.5.3.drv /tmp/guix-tests/store/p51fxri0mf3jpvif5lqzyiih79aqb1wg-libseccomp-2.5.3.tar.gz.drv /tmp/guix-tests/store/xci6rbyxxcqq000dhw1brycb3va9j0py-console-setup-1.205.drv /tmp/guix-tests/store/3xnnjz19snffsz4ifn39bkhp9sxbnskh-bdftopcf-1.1.drv /tmp/guix-tests/store/m51xbgwmddmalhlb47hxy5i186qs2gjh-bdftopcf-1.1.tar.bz2.drv /tmp/guix-tests/store/vj75b102g8cvrwn17xj7mqzmpkzxg0xv-libxfont-2.0.4.drv /tmp/guix-tests/store/rypixq3myxcdh4ivj5574wlfvz5kpiw1-libXfont2-2.0.4.tar.bz2.drv /tmp/guix-tests/store/4d82476lpigdh993vsy0w2yvjka381zk-sharutils-4.15.2.drv /tmp/guix-tests/store/qx4b0qq0ccvbqmc8l9g5dxlxvlixj8q7-sharutils-4.15.2.tar.xz.drv /tmp/guix-tests/store/acqnvmjhnsy1paadqd9sgbp49i9wvcys-sharutils-4.15.2.tar.xz.drv /tmp/guix-tests/store/j8hnirmx00civbqqarxska8l83p7cgyz-console-setup-1.205-checkout.drv /tmp/guix-tests/store/qwha10vgcvwfqd8q3hmbris7gml6fs9r-bdfresize-1.5-11.drv /tmp/guix-tests/store/k4lqfhgql9xp59fijigg9zcg3rizbkn4-bdfresize-1.5-11-checkout.drv /tmp/guix-tests/store/5pfnj4vjixnff85ifhj1lc6cxlag9b08-bdfresize-1.5-11-checkout.drv /tmp/guix-tests/store/ydq5y6crh7ahaf2p7zvx5w55brkviqbn-mdadm-4.1.drv /tmp/guix-tests/store/gfw5yabijmqdn3l5a7w9y1bnrrcra12r-mdadm-4.1.tar.xz.drv /tmp/guix-tests/store/zrmavn3b0dbypg27c1ffxw2zh1jyy0bn-mtools-4.0.36.drv /tmp/guix-tests/store/h2d4xp2h2m5dpynhgc3zi9bclxd7jin5-mtools-4.0.36.tar.xz.drv /tmp/guix-tests/store/k4nm2qwi83s982kn1m7803gcb881ya8w-mtools-4.0.36.tar.bz2.drv /tmp/guix-tests/store/v8k63mzx9dvxq2afyv4pjpq8b8dj0165-fakeroot-1.26.drv /tmp/guix-tests/store/8xk6fb9bwny377v0mb2qhlqznfaj56pa-autoconf-2.71.drv /tmp/guix-tests/store/ccv9fgnxwxiz328h7a0p78d6lvi8y0jc-autoconf-2.71.tar.xz.drv /tmp/guix-tests/store/mp6vvksgvkd6qq5h907crxr8xdgkx0vy-fakeroot-1.26.tar.xz.drv /tmp/guix-tests/store/ixb5l7ybyn4ilwjy2nvhmirs40f4nqnl-fakeroot-1.26.tar.gz.drv /tmp/guix-tests/store/zwqg6wjkj8a2hgi3w88fgglfj4rk83r3-module-import-compiled.drv /tmp/guix-tests/store/yc01aldzqhyv45xk2w9gjcm30axs6pvi-partition.img.drv /tmp/guix-tests/store/82npksqpdaahimifykl7rkqnni5vfl7n-genimage-14-1.11bb044.drv /tmp/guix-tests/store/5ckv3dlvj7nj1m9jsfhbpafbqcma4fj4-mtd-utils-2.1.2.drv /tmp/guix-tests/store/d2x8jblqpi962y5x2zj1svy3p746mf45-cmocka-1.1.5.drv /tmp/guix-tests/store/0hxqizv2mkz7k6h2v6gbka5jks7pn4kn-cmocka-1.1.5.tar.xz.drv /tmp/guix-tests/store/hcs4d0v1jfy9pm395zn7hcv4s7iamyfx-mtd-utils-2.1.2.tar.bz2.drv /tmp/guix-tests/store/6411pxr1kk4g0jnc13yak20q2ca8ks44-genimage-14-1.11bb044-checkout.drv /tmp/guix-tests/store/fl68dfywj008igyr9wa9fvmdbmlg8spg-genimage-14-1.11bb044-checkout.drv /tmp/guix-tests/store/br6gasx4f29jq55lcwn3qc9yg2l1lzyn-libconfuse-3.3.drv /tmp/guix-tests/store/j0c7pnq820r7r703nps68i5xj6q17hqw-confuse-3.3.tar.xz.drv /tmp/guix-tests/store/dw2gg8yj5hck33w5nkh7crdmkbqgfc13-squashfs-tools-4.5.drv /tmp/guix-tests/store/1wv9lkgzxfs0f0qhbwkyjz59qp4i7haw-squashfs-tools-4.5-checkout.drv /tmp/guix-tests/store/fc3ksvjvblm1x2k1ycrmc3j39zis69sv-u-boot-tools-2021.10.drv /tmp/guix-tests/store/07n9ps8hpmbkbhwsbmkd6jk8jx9j5mqj-bc-1.07.1.drv /tmp/guix-tests/store/4w46qd2mgv12i9xrp7rrknsgx9xgvgzy-bc-1.07.1.tar.xz.drv /tmp/guix-tests/store/b3js201yr9f5iqs9frwq49hrlrbap0ja-bc-1.07.1.tar.gz.drv /tmp/guix-tests/store/6mqwsfbvl7920zmhkbpy11vian08irbr-libxdamage-1.1.5.drv /tmp/guix-tests/store/hhdgkq70mm1y3l7djrzlaihqr7fd8hpw-libXdamage-1.1.5.tar.bz2.drv /tmp/guix-tests/store/aakk35y3iiskxcis0k4kprvimmplbrda-libvdpau-1.4.drv /tmp/guix-tests/store/lharpkh073cnbsi3rxrp70r3zgvgxiy0-libvdpau-1.4-checkout.drv /tmp/guix-tests/store/fl2nwddxvck92m1r34azkwx6bppvqqqm-python-pycryptodomex-3.11.0.drv /tmp/guix-tests/store/0ikzbggbxsxnaw0anr2pd4c210d47sar-libtommath-1.2.0.drv /tmp/guix-tests/store/qsd4vs0qswgs6hh9rkfya7cx9qgjli0j-ltm-1.2.0.tar.xz.drv /tmp/guix-tests/store/25wwj0icd11m5wqnyfhyj1vbn081rw8z-pycryptodomex-3.11.0.tar.xz.drv /tmp/guix-tests/store/d206cwib577j0ckp9g5mhlscw2ira2jn-pycryptodomex-3.11.0.tar.gz.drv /tmp/guix-tests/store/immfvxjj20npmmz66j28i8m5nj94kabb-libtomcrypt-1.18.2.drv /tmp/guix-tests/store/c2dfzxrzczcmw5ijdvpgqzcnszczkr4q-crypt-1.18.2.tar.xz.drv /tmp/guix-tests/store/62p8g0kf19vmhibzjddyvjg68r4079y8-crypt-1.18.2.tar.xz.drv /tmp/guix-tests/store/iaf48jk9vsr5z7pxmk2in7izyc4gvvz0-sdl2-2.0.14.drv /tmp/guix-tests/store/0ldj9ylwxp5gj6wclzrm6g7p403s3bj1-SDL2-2.0.14.tar.gz.drv /tmp/guix-tests/store/2wq417gjv0inl2967yzh6wdd9fgn7m1v-fcitx-4.2.9.8.drv /tmp/guix-tests/store/0242g2kynspcrapaxcpjx3hcgya2syin-libxkbfile-1.1.0.drv /tmp/guix-tests/store/4dvrn7g9rna3b7qwabinffrpxy9izfg4-kbproto-1.0.7.drv /tmp/guix-tests/store/i06sm0vcw3fdhxj2rdcq2nyvsqgywraz-kbproto-1.0.7.tar.bz2.drv /tmp/guix-tests/store/is286vwd9yhi3rbm1hsnym42s8w2r4ih-libxkbfile-1.1.0.tar.bz2.drv /tmp/guix-tests/store/02706ifnsq3aqgj97scyl1dmsgm9jvq6-json-c-0.15.drv /tmp/guix-tests/store/910cb21n9r9rhsxdspc3rm1zy3pa5flc-json-c-0.15.tar.gz.drv /tmp/guix-tests/store/0kz1l7grxh2svc2n6dzxyns1dg5cbbrk-gtk+-2.24.33.drv /tmp/guix-tests/store/5b5f15bbsrr5abjfvi1wv6h2lph85q4x-libxcomposite-0.4.5.drv /tmp/guix-tests/store/8zsn39cnnyrmc7b8ic4rd7ajm3hz6lp2-libXcomposite-0.4.5.tar.bz2.drv /tmp/guix-tests/store/6jm6dgzxbdi3viq4dg04q4gxvq44ycgb-libxrandr-1.5.2.drv /tmp/guix-tests/store/mka548gkivgws3s226k39ci3bvii4mvs-libXrandr-1.5.2.tar.bz2.drv /tmp/guix-tests/store/89ngbjyv26prha3mh6a59d0xmcklw9wp-xorg-server-21.1.1.drv /tmp/guix-tests/store/112b8g7ry03pjcyf98yw62kya9ypc225-xcb-util-keysyms-0.4.0.drv /tmp/guix-tests/store/vl57lf5kpxmjj1zcl7z2ckxb1lrwvcv8-xcb-util-keysyms-0.4.0.tar.bz2.drv /tmp/guix-tests/store/22y54jf1dv107v89ivg1ig3nwkmm36kg-xkbcomp-1.4.5.drv /tmp/guix-tests/store/mil8b60i9b1js4iw90jzymq54w35rz6j-xkeyboard-config-2.34.drv /tmp/guix-tests/store/cr5ij6qgci0x7idrj0600r7dw723yp8h-xkeyboard-config-2.34.tar.bz2.drv /tmp/guix-tests/store/s4c5cnr256bz1lk2lm79q2b9vl1dqg6n-xkbcomp-intermediate-1.4.5.drv /tmp/guix-tests/store/pgfdhk3da8iihlb0frv361m95hdxsik5-xkbcomp-1.4.5.tar.bz2.drv /tmp/guix-tests/store/85cxvlf08f9ijzfv2g4cjqv41hpkh5z3-xcb-util-image-0.4.0.drv /tmp/guix-tests/store/h2xg0sfgyhxmkiciqjf6ajzkmbmzkkd4-xcb-util-0.4.0.drv /tmp/guix-tests/store/p1la79193dzxx4n5j260fbb4v915bsr5-xcb-util-0.4.0.tar.bz2.drv /tmp/guix-tests/store/q4irq6w3z4irxim8s8mrfqljd8r4q6ym-xcb-util-image-0.4.0.tar.bz2.drv /tmp/guix-tests/store/a8yyhj9xn53xgcafgzxrzpg8rcl58pw8-xcb-util-renderutil-0.3.9.drv /tmp/guix-tests/store/96y2r2spdffz329sad8zjkmjqi6agmwm-xcb-util-renderutil-0.3.9.tar.bz2.drv /tmp/guix-tests/store/av6jbpini5r1gw6l7vyx54805iy0qqbn-libxv-1.0.11.drv /tmp/guix-tests/store/j5s8f49hz6wdbdcv7vfnv6kbnibf15w3-libXv-1.0.11.tar.bz2.drv /tmp/guix-tests/store/bw36n824l74wqlxcgjsbh3pqafl9hgds-xcb-util-wm-0.4.1.drv /tmp/guix-tests/store/vvlnfl3gjfirdfrhj9sblrmz9l81ysds-xcb-util-wm-0.4.1.tar.bz2.drv /tmp/guix-tests/store/lhi8hky4b60i2swd7ip85pw7fcv2kfzh-libxshmfence-1.3.drv /tmp/guix-tests/store/xvdl64qkzlxd1brvx9i78i6blf338qim-libxshmfence-1.3.tar.bz2.drv /tmp/guix-tests/store/lnj9brddrvsx8w1cwdgfblcbg3alqrgs-libdmx-1.1.4.drv /tmp/guix-tests/store/l53smvl87r0h497mghchhr5d9kd4jhw2-libdmx-1.1.4.tar.bz2.drv /tmp/guix-tests/store/rgg4fpwk3wjk5g1vzmbwn0fqp8h4ci20-mesa-21.2.5.drv /tmp/guix-tests/store/60jw4s11bmqq50mx486mha870lgj993p-llvm-11.0.0.drv /tmp/guix-tests/store/wslfjx88gvlb7cizj0pw65by8h0cy3sf-llvm-11.0.0.src.tar.xz.drv /tmp/guix-tests/store/75dazwvi6njz6nj49433m7nzqrgjvmbi-python-mako-1.1.3.drv /tmp/guix-tests/store/yfxg9pfg88nbc41cbjzl02s11ak5v7n0-Mako-1.1.3.tar.gz.drv /tmp/guix-tests/store/77hnwm8qkdrk9kqva42hz8q1b5v0a4z3-elfutils-0.183.drv /tmp/guix-tests/store/lshhrjlv19fi8nzwd9dd6ma8nzx7gs7r-elfutils-0.183.tar.xz.drv /tmp/guix-tests/store/j188gxqdvzjh0pkrf2xgnginallxg49a-elfutils-0.183.tar.bz2.drv /tmp/guix-tests/store/kajmjxdpj552alfy0yvv01g0sy6d5d4b-wayland-1.19.0.drv /tmp/guix-tests/store/dn4ngpfqw2fkfnwjmnk0c0ya9xxxgyjd-wayland-1.19.0.tar.xz.drv /tmp/guix-tests/store/n42gl0r3rg7c9fk8gqj42lbs1cbmjr27-glslang-10-11.0.0.drv /tmp/guix-tests/store/v4j4g5skcj8gh1ysvdyvk7qidy8v6w2y-glslang-10-11.0.0-checkout.drv /tmp/guix-tests/store/r4lc1sq6n2ym15189qzn2djdqn1czxci-wayland-protocols-1.23.drv /tmp/guix-tests/store/1rcip87y8vnf8rpzlaiwm9x4frzpnjz0-wayland-protocols-1.23.tar.xz.drv /tmp/guix-tests/store/r99ih3gwfkmdfys07whvzpnz12phs3zx-mesa-21.2.5.tar.xz.drv /tmp/guix-tests/store/8f7h3xaimxwhgmddi7gkwmnbfbrbj8zz-mesa-21.2.5.tar.xz.drv /tmp/guix-tests/store/wcmlq4nifvj31a6b74mak4c7cfpk1z58-libva-without-mesa-2.13.0.drv /tmp/guix-tests/store/i1p2bvycbhfp58w9z489szi8mhlyvz8g-libva-2.13.0.tar.bz2.drv /tmp/guix-tests/store/ww60vxx2y1jh92pmsin1gdjb32r89ynl-libxvmc-1.0.12.drv /tmp/guix-tests/store/bkb953r6s98f2pmiy8akpamqbrdp8jiv-libXvMC-1.0.12.tar.bz2.drv /tmp/guix-tests/store/yyiw68ya5300h10vp671dppa5s6y9ss1-libxxf86vm-1.1.4.drv /tmp/guix-tests/store/l2klf72ywcfsdgc8dskr84xlqkdc76cl-libXxf86vm-1.1.4.tar.bz2.drv /tmp/guix-tests/store/s5bhqms3vhv584p1h7wfy562s1av1ww7-libxcvt-0.1.1.drv /tmp/guix-tests/store/8m0wclr8kah7akgcb7gvcz0dvrmv57vr-libxcvt-0.1.1.tar.xz.drv /tmp/guix-tests/store/sdwradfjm675a3lj7xznfzqb6a8dcr40-libxres-1.2.1.drv /tmp/guix-tests/store/sfyb84mwlh3a1bhpasilhglx0mgp5nm0-libXres-1.2.1.tar.bz2.drv /tmp/guix-tests/store/vakx8328r7y1n3h1hwh7qc7971dad6gz-libepoxy-1.5.5.drv /tmp/guix-tests/store/pd2alhk34aq0i5n1jdlpk6ybkjl5ayqm-libepoxy-1.5.5.tar.xz.drv /tmp/guix-tests/store/zqi2n34r35gkr47d5hivr20y4b0hqybw-xorg-server-21.1.1.tar.xz.drv /tmp/guix-tests/store/n0mwrdy5wsdpn9r4mgx2y18dkrq6mhly-xorg-server-21.1.1.tar.xz.drv /tmp/guix-tests/store/y16hpc0qvgpxyv4n1d4wnyabl9a8c2gx-xorg-server-use-intel-only-on-pre-gen4.diff.drv /tmp/guix-tests/store/8lzbr6m2h67xql4hh56gqc9mgjrg6qyj-libxinerama-1.1.4.drv /tmp/guix-tests/store/fh8w9yi1zcysy311120wych7db3n78zd-libXinerama-1.1.4.tar.bz2.drv /tmp/guix-tests/store/a0pxdi1vfz317ms0c812z8357xxgs8xr-cups-2.3.3op2.drv /tmp/guix-tests/store/gmvj16vndjyhyfqkh6n2yw6j99x73vjf-cups-filters-1.28.9.drv /tmp/guix-tests/store/8ip7i5j2c69fgzan3i1rphdx4902rysk-ghostscript-with-cups-9.54.0.drv /tmp/guix-tests/store/8z8d5nni8q9rw4gqbq7ldzk8668g3hkk-cups-minimal-2.3.3op2.drv /tmp/guix-tests/store/kbxih53z6hksi6bbbj9956izdpswbsrb-cups-minimal-2.3.3op2-checkout.drv /tmp/guix-tests/store/inl6j4q2b682w1k93663pn4x1w3vzbv3-cups-filters-1.28.9.tar.xz.drv /tmp/guix-tests/store/l77aqg6hzn4i2mdgf3wn0ha5dd3fns21-cups-filters-1.28.9.tar.xz.drv /tmp/guix-tests/store/msbxcxqh5wjgswahsi2dah581yvfpqp4-qpdf-10.0.1.drv /tmp/guix-tests/store/ln7l1nz8b7whxxsrxc7dkxc905rzia7x-qpdf-10.0.1.tar.gz.drv /tmp/guix-tests/store/plwp5ir2xaln7ffd9syfhk6d8m882k5y-ijs-9.54.0.drv /tmp/guix-tests/store/is3gn0h0zjvg11gjrzj9i1pfvf9dw8z4-atk-2.36.0.drv /tmp/guix-tests/store/zd74cfmqfcps99lw7x0rc87phkww8mq8-atk-2.36.0.tar.xz.drv /tmp/guix-tests/store/j4b912r65vsqmbhq5f9ladja2d19iq0d-gtk+-2.24.33.tar.xz.drv /tmp/guix-tests/store/nal9xpj51d227xgdda4458cdlalibd8b-gtk+-2.24.33.tar.xz.drv /tmp/guix-tests/store/xz1bs852bpbnv3q8fji8my1aiarvs6n4-libxkbcommon-1.3.0.drv /tmp/guix-tests/store/shk13fr21d2nw3gcrnwribkipvqykh23-libxkbcommon-1.3.0.tar.xz.drv /tmp/guix-tests/store/zmz647jls2d4rjwsggpwilisnzp3xr9p-libxcursor-1.2.0.drv /tmp/guix-tests/store/6qxacvvacq6srhfwflrs9whb0yzf2pv9-libXcursor-1.2.0.tar.bz2.drv /tmp/guix-tests/store/2wyhxyh081zi65pipslbd5a0vxw5s7v3-iso-codes-4.5.0.drv /tmp/guix-tests/store/3yab4djyskpcfqqrpi3v4szh15y9428j-iso-codes-4.5.0-checkout.drv /tmp/guix-tests/store/7jqr6jjapmapapbynipwwq48rqa4ijbm-libxtst-1.2.3.drv /tmp/guix-tests/store/938b3my99rmdlrjyc1j8b6hyx8zlbp23-libXtst-1.2.3.tar.bz2.drv /tmp/guix-tests/store/ak1xv6wrzjmcs292zwf5sci8fwcszhqd-enchant-1.6.0.drv /tmp/guix-tests/store/a93yh0raz698p6dxjfv8rjaaq7qmfscl-hunspell-1.7.0.drv /tmp/guix-tests/store/4ns47qsgfwf64s3rfn1znk7656215rkf-hunspell-1.7.0-checkout.drv /tmp/guix-tests/store/kc7paqqc6hkxm704k0kqb8ikniigscqq-enchant-1.6.0.tar.gz.drv /tmp/guix-tests/store/xcc3w83ipc7zysg0gpsmnf8ng7d0j1dh-aspell-0.60.8.drv /tmp/guix-tests/store/w8fgf8cgz9xnwbc0b7wrsrhfzd2qp5qn-aspell-0.60.8.tar.xz.drv /tmp/guix-tests/store/yq761hm160d0prj7252123mk3sp0z2jy-aspell-0.60.8.tar.gz.drv /tmp/guix-tests/store/aly8m8ln4wbfqph902qywcidshggpxm1-at-spi2-atk-2.38.0.drv /tmp/guix-tests/store/c12i2pzpvy9d5hixf0b91mcxqazp42qd-at-spi2-core-2.40.0.drv /tmp/guix-tests/store/8mkc41a2vdl35pv962aihgmhs02jjakr-at-spi2-core-2.40.0.tar.xz.drv /tmp/guix-tests/store/f3zq62rvq1h94yw35244sp6w6b39dkpl-at-spi2-atk-2.38.0.tar.xz.drv /tmp/guix-tests/store/bnazxgffckbl2jfzxj9l7lgxgp1kk85r-gtk+-3.24.30.drv /tmp/guix-tests/store/0jmp7g9m6jhmlqsbrb05n37hjbzn13aw-graphene-1.10.6.drv /tmp/guix-tests/store/gaf065y20vzn7y0ni9xh5xvy74kdxxpn-mutest-0.0.0.drv /tmp/guix-tests/store/kxnz9zq7fclfvsz56q8xr05hj4250hkd-mutest-0.0.0-checkout.drv /tmp/guix-tests/store/j81x4wry2h66qg0i5l2xlh60f1ckfxj2-git-minimal-2.33.1.drv /tmp/guix-tests/store/vwdih22sscz6agfisazfqh4p11gybrfr-git-2.33.1.tar.xz.drv /tmp/guix-tests/store/jdpdzgaywn7310cmzq69a9mdg30ilhfv-graphene-1.10.6-checkout.drv /tmp/guix-tests/store/1953wjqf3sw2lwc7x207rnhy4pkp8bzd-libpsl-0.21.1.drv /tmp/guix-tests/store/npx78j0nqw43j8h6gkx5v8q537x0zkm9-libpsl-0.21.1.tar.gz.drv /tmp/guix-tests/store/337jzrwv31gs5c2i3j2zpvyrnx3vp950-gtk+-3.24.30.tar.xz.drv /tmp/guix-tests/store/y470jr0b736h62n9jplma15wb0cvpanx-gtk+-3.24.30.tar.xz.drv /tmp/guix-tests/store/3r0hhs24914k4w23q1g1wy0y9s5g22il-hicolor-icon-theme-0.17.drv /tmp/guix-tests/store/2j6c7gsq4wcbjdi895k36rlqnqgwccxp-hicolor-icon-theme-0.17.tar.xz.drv /tmp/guix-tests/store/9nccwbrvif02xxdw0fb0cxj0s4s7b13q-colord-minimal-1.4.5.drv /tmp/guix-tests/store/cpxzs0p59d5w4bdzmg0wb4s6izzxpb5y-libgudev-236.drv /tmp/guix-tests/store/2vsq760q0fwd1pw0s6ahfhh30ssh9znr-libgudev-236.tar.xz.drv /tmp/guix-tests/store/f94i9rlkn9w4i76ph9spxy6dn7n7bhn9-colord-1.4.5.tar.xz.drv /tmp/guix-tests/store/i8hxz8bqlv70vv1bssfzws1z05pi4q7x-sane-backends-1.0.32.drv /tmp/guix-tests/store/kdgy3rwn09xj6wrncf8gzrmmkjnhfyrj-autoconf-archive-2021.02.19.drv /tmp/guix-tests/store/5319mkj0w7kyrixl1d8v6852rhyp2rbz-autoconf-archive-2021.02.19.tar.xz.drv /tmp/guix-tests/store/mjzdzmb6565bkbxzr3m4d8kl8vxwyvyi-hplip-minimal-3.21.10.drv /tmp/guix-tests/store/0x393jcfkj7rlck0c3xirc4j8dmzhbk8-sane-backends-minimal-1.0.32.drv /tmp/guix-tests/store/nyvbwmp5r4fvhvzikcf8b4kig7pd3g3g-libusb-1.0.24.drv /tmp/guix-tests/store/wminr6yzj5j504qx7s5k0zm1q3l9d8yl-libusb-1.0.24.tar.bz2.drv /tmp/guix-tests/store/z2a2hrzqybwmz2i41p7wqb524xlsxcq0-sane-backends-minimal-1.0.32-checkout.drv /tmp/guix-tests/store/nrmzdkk4lzw29ivxaf3ww7mlgpq63ynk-sane-backends-minimal-1.0.32-checkout.drv /tmp/guix-tests/store/jidxq8fvwqda65rzili4ld4nvw5bxkly-hplip-3.21.10.tar.xz.drv /tmp/guix-tests/store/qrqk2b5i3b63xpr0hm2sx58dxwnm90y9-hplip-3.21.10.tar.gz.drv /tmp/guix-tests/store/w8h45wgk21mqcj4pjk2mfi12nfky16gf-polkit-duktape-0.120.drv /tmp/guix-tests/store/1ahv9biwiqjpw9ap24s7qmdnz1gwmywk-elogind-246.10.drv /tmp/guix-tests/store/082awpzp75l8s1pqf31yym1y5lvlg1g5-shadow-4.8.1.drv /tmp/guix-tests/store/446k6zyrxk1wafj1g7cyh9gzblbqm85z-elogind-246.10-checkout.drv /tmp/guix-tests/store/17nk73prqc8inw38vi5wcswpkx7627c5-elogind-246.10-checkout.drv /tmp/guix-tests/store/g9r9d57bxxgqsr953vfi5pddcfq8zl7n-kexec-tools-2.0.23.drv /tmp/guix-tests/store/c191x4dggyr1wg2cps4d82q933a9y8gw-binutils-next-2.37.drv /tmp/guix-tests/store/hcaf3pss2w1idlp79raigxg8mckzlzm2-ld-wrapper-0.drv /tmp/guix-tests/store/y45mhq799sw29ss8p1zrw10431aw5xm1-kexec-tools-2.0.23.tar.xz.drv /tmp/guix-tests/store/4kbc815i2qqrf0v7w82x91mnmh5p0v4k-duktape-2.6.0.drv /tmp/guix-tests/store/si9di59v8h2ffasn53v6c3apm7mjpc2g-duktape-2.6.0.tar.xz.drv /tmp/guix-tests/store/5kkjvpn88fmqcs7n7x3ii0py8wbh54l3-polkit-0.120.tar.xz.drv /tmp/guix-tests/store/qm12dh10fkig6xrhnaw6r80n038rznwx-polkit-0.120.tar.gz.drv /tmp/guix-tests/store/xszgf0vjvmkigawqyl8g13qwnc9dndkq-nspr-4.31.drv /tmp/guix-tests/store/54iajabrw4ml29ga7nms0a8cdkrv74iw-nspr-4.31.tar.gz.drv /tmp/guix-tests/store/wdygi599pw3n3xb0d0kimc54bpq26ysx-vala-0.54.2.drv /tmp/guix-tests/store/v3k2cjh75v89ln1gqrnfgaxiq723lfpd-vala-0.54.2.tar.xz.drv /tmp/guix-tests/store/wv5lk4cpdxy625x04mighymlvvb1f3rs-dbus-glib-0.110.drv /tmp/guix-tests/store/1kyaamk4k5rzwd4d3ad6flyw0m8g3856-dbus-glib-0.110.tar.gz.drv /tmp/guix-tests/store/z6ynrgrgzqlwbm28w22g2h7ca3dp1030-gusb-minimal-0.3.5.drv /tmp/guix-tests/store/cayiipbhr1ywbjaq7089kxifwvdniy61-gusb-minimal-0.3.5-checkout.drv /tmp/guix-tests/store/9xqcgq7j6477w57088ps8b2y017h0bgj-sassc-3.6.2.drv /tmp/guix-tests/store/fggwzjk8spv55nw71ablxlqf5xxjkgch-sassc-3.6.2-checkout.drv /tmp/guix-tests/store/shamg168gyvk597fr27mc26zh8qqfz8x-libsass-3.6.4.drv /tmp/guix-tests/store/kp45f9q1ljsxp295phpkizyricbdry98-libsass-3.6.4-checkout.drv /tmp/guix-tests/store/gamlxl7jj7p707vn7ni35qywij50r73v-libcloudproviders-minimal-0.3.1.drv /tmp/guix-tests/store/nlrdxjz5waw9gihj2kf8r6k8hipgdrjf-glib-networking-2.70.0.drv /tmp/guix-tests/store/8gpp53y8xhshnr5k57l71fmmcafyjd2i-libproxy-0.4.17.drv /tmp/guix-tests/store/xakdq8snqi10vhfmphyf27l7gky3fis1-libproxy-0.4.17.tar.xz.drv /tmp/guix-tests/store/9piia7lk2294nh1rz9970gfn51njm521-glib-networking-2.70.0.tar.xz.drv /tmp/guix-tests/store/n873rd6w6fi4yksq2jzr9law846z5gxm-glib-networking-2.70.0.tar.xz.drv /tmp/guix-tests/store/lhlg5ihx4q1pma319hirj9l4wz6lzshd-gsettings-desktop-schemas-41.0.drv /tmp/guix-tests/store/nqqcxxy2kngfyapc7m5bfjbxy77dxigd-gsettings-desktop-schemas-41.0.tar.xz.drv /tmp/guix-tests/store/q8w365ifjm7ikcr8y0af88d2z3nii12m-gnome-backgrounds-40.1.drv /tmp/guix-tests/store/b3cn2ky29asrkidfsr9zn7lv6raljkw0-gnome-backgrounds-40.1.tar.xz.drv /tmp/guix-tests/store/riv2lg1dhznfwpkfsm5x0p3gbg13yakr-libcloudproviders-0.3.1.tar.xz.drv /tmp/guix-tests/store/lxsyx955wgklzhhbxnkp4qk72j6q1gbh-json-glib-minimal-1.6.2.drv /tmp/guix-tests/store/yz45iwpqml2chkyxnqx5xfnlva2ffrqc-json-glib-1.6.2.tar.xz.drv /tmp/guix-tests/store/p849b27h90zv6qd80bg2ygmz97s41qcr-rest-0.8.1.drv /tmp/guix-tests/store/is52g8h2dcgvr0k7d9xrjgnqylxsi9ak-rest-0.8.1.tar.xz.drv /tmp/guix-tests/store/q3xix2q60zc4cw05fr22yglnx5kgffdd-libsoup-minimal-2.72.0.drv /tmp/guix-tests/store/6zy6mzpmqx8cqcncqispwjlcaidsd0bs-samba-4.13.10.drv /tmp/guix-tests/store/00mjcznbdwhirl3lr1vxhajpxp4fw5g6-gamin-0.1.10.drv /tmp/guix-tests/store/sza3vij6wlxg4z5vr1xr6vnjgv0jcp93-gamin-0.1.10.tar.bz2.drv /tmp/guix-tests/store/7ssbz6wl5lj4b3q88fchigx67rcsrbff-samba-4.13.10.tar.xz.drv /tmp/guix-tests/store/1rfz8k9zgv5s6ld1vx1wbrv8afas9nvv-samba-4.13.10.tar.gz.drv /tmp/guix-tests/store/82jkmdwj1d53wwa6bdyhnn90r3abiq2q-openldap-2.4.57.drv /tmp/guix-tests/store/81l7fdpcbb6wfz44rxr5si8apcyb6dpl-bdb-5.3.28.drv /tmp/guix-tests/store/fsb8j2wcgp0qz6c44cgqh028qpi6sak2-db-5.3.28.tar.xz.drv /tmp/guix-tests/store/akhcawvpvwjk4arrzcm0xawlqjs39xld-db-5.3.28.tar.gz.drv /tmp/guix-tests/store/a82yvd9rsqlmagir880npckdwkhgjsvx-openldap-2.4.57.tgz.drv /tmp/guix-tests/store/gdy8gamw9jjhlin0iwyzqlf2sbsrfk5z-cyrus-sasl-2.1.27.drv /tmp/guix-tests/store/wnpnkdy9dai5n4k3xpjnjd61s316n21g-cyrus-sasl-2.1.27.tar.xz.drv /tmp/guix-tests/store/kf93w9r4v3fwgcy5jvpy9fkaspgw6d6g-cyrus-sasl-2.1.27.tar.gz.drv /tmp/guix-tests/store/889jddavy0bqvldqfihv1ma9l48dp25b-gpgme-1.15.1.drv /tmp/guix-tests/store/hdmad6msgm00yds6rf171y5c27v9jhh9-gnupg-2.2.30.drv /tmp/guix-tests/store/5dx0qbsmw5bmckcsklja5ir2lga6300b-gnupg-2.2.30.tar.xz.drv /tmp/guix-tests/store/viyc43nny3nfb31s7f1c34mrmy6gxl97-gnupg-2.2.30.tar.bz2.drv /tmp/guix-tests/store/anzyihil4m1vkp8xba9kqzh1qbxp4f5m-pcsc-lite-1.9.3.drv /tmp/guix-tests/store/zvp4pkgj253ssjlblbhnv5acp2p1rcm5-pcsc-lite-1.9.3.tar.bz2.drv /tmp/guix-tests/store/cgzkx7crwj45x4c4nc3sdfjbc5y3cjzh-npth-1.6.drv /tmp/guix-tests/store/rp53sikc2550rbrawqna1p4mwzi11qcv-npth-1.6.tar.bz2.drv /tmp/guix-tests/store/q0jvqx07lvkmz5ihg03psjsvikk0a3yp-pth-2.0.7.drv /tmp/guix-tests/store/hxpgw1azlzxla19jfb0gskp2gzhsabdk-pth-2.0.7.tar.gz.drv /tmp/guix-tests/store/qz2cxdahz57cidzvipqj2pp5rhaypmp9-libassuan-2.5.5.drv /tmp/guix-tests/store/gigpn2afmnzgk3vwrwsl622maw9jbml9-libassuan-2.5.5.tar.bz2.drv /tmp/guix-tests/store/yvm0pp043209wkhqxi9av5zjziyapn36-libksba-1.6.0.drv /tmp/guix-tests/store/g0b876rlivwx8p8jcsqfc93vx79w0vyz-libksba-1.6.0.tar.bz2.drv /tmp/guix-tests/store/vs03h3mvgf47n6pazqbhr4zl33az2zj4-gpgme-1.15.1.tar.bz2.drv /tmp/guix-tests/store/d8xq55ycr2bvc44w9vvga561sr34y960-libtirpc-1.3.1.drv /tmp/guix-tests/store/g90vvcz1pzdwq9acnjl0rahzl1xp5byl-heimdal-7.7.0.drv /tmp/guix-tests/store/sjwx9pxi83dadixqz47lp366jmxjs90j-heimdal-7.7.0.tar.xz.drv /tmp/guix-tests/store/mbv16jxdpbyn93bmzh0lf3l0hzhmj5yy-heimdal-7.7.0.tar.gz.drv /tmp/guix-tests/store/jsz5zjs20k0g0vavp9akjr14z3wfhfpb-ldb-2.4.1.drv /tmp/guix-tests/store/l791laaszj8d3mpx64zsdv342l23hvic-tevent-0.11.0.drv /tmp/guix-tests/store/iabkr1r1zk3kdipiif95gkjw0rkkls60-tevent-0.11.0.tar.gz.drv /tmp/guix-tests/store/w5fn1mq0srplwrmk31rm2i2bqb7kivv8-talloc-2.3.3.drv /tmp/guix-tests/store/2sx3dj6ryb40761pbda831yad2hi4v5w-talloc-2.3.3.tar.gz.drv /tmp/guix-tests/store/q3j3d63rranmsqv5gyghv0x3l5vs8dh1-lmdb-0.9.29.drv /tmp/guix-tests/store/ifjp6z3skby94d4n6cfnaz7ijrpaj3dl-lmdb-0.9.29-checkout.drv /tmp/guix-tests/store/y5ry8z36pwasdqfyfw3ammygwzb12c4m-tdb-1.4.5.drv /tmp/guix-tests/store/cw7w2v0q58hx32zw61py6phy60yr1cph-tdb-1.4.5.tar.gz.drv /tmp/guix-tests/store/znp234pfz6m9g47gnr6hbb1lcmpv0swx-ldb-2.4.1.tar.xz.drv /tmp/guix-tests/store/im9bjc6a0570vg10zj601m1l195wdafh-ldb-2.4.1.tar.gz.drv /tmp/guix-tests/store/pq6wk99f6i2i5lm1p843w834y1fafjpz-perl-parse-yapp-1.21.drv /tmp/guix-tests/store/5rzpnxpbvyg58cn6vxmx04kzi2ycl1d5-Parse-Yapp-1.21.tar.gz.drv /tmp/guix-tests/store/xn6x56jls7nwqaz95wdwi25v880g91z8-rpcsvc-proto-1.4.drv /tmp/guix-tests/store/sxmz0f3w0s9s8n7f5wabkzkvlm93fqwb-rpcsvc-proto-1.4.tar.xz.drv /tmp/guix-tests/store/gcjf1waa4zl9d2w36s9diwm46l9ffph4-httpd-2.4.52.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/xbmxwzhcj11xclcy1x5jqwjcmvckkkvv-httpd-2.4.52.tar.bz2.drv /tmp/guix-tests/store/i8q22dnqbia3ck614icvcma0ly1vyq63-vala-0.52.0.drv /tmp/guix-tests/store/234cqyri7aywx9v24s6szp5x5aiaarlq-vala-0.52.0.tar.xz.drv /tmp/guix-tests/store/nf25gh5aryj4z6ar59r75hssfp5kn6n4-libsoup-2.72.0.tar.xz.drv /tmp/guix-tests/store/xc7lnbrhghak50iahzmqkg9z5g8mry45-brotli-1.0.9.drv /tmp/guix-tests/store/4bkqcc1pi7w5bbwpac7sbp1m38fwn5bk-brotli-1.0.9-checkout.drv /tmp/guix-tests/store/smkqflb4kpmzfg7ivhcdh0m96zykzw5c-brotli-1.0.9-checkout.drv /tmp/guix-tests/store/chlp2bkxgbpa9glwg4c66q4z1j2gpqys-extra-cmake-modules-5.70.0.drv /tmp/guix-tests/store/i5bqb3rhhjm9w619wl2ckbig2qwymxk6-extra-cmake-modules-5.70.0.tar.xz.drv /tmp/guix-tests/store/m5z5xr5vjywi6a19mq7vglgyldq2jzzd-qtbase-5.15.2.drv /tmp/guix-tests/store/2ykha2hc632p50zxk1qir4r9y0qiqnjw-xdg-utils-1.1.3.drv /tmp/guix-tests/store/48vzxfmnwvgkzwvhxyvpfq3pwjajm117-perl-file-desktopentry-0.22.drv /tmp/guix-tests/store/4q65h7xhy8kbkzj30s7rh1s8nlggf259-perl-uri-5.05.drv /tmp/guix-tests/store/mxnkl5rzx474bzfqh5i6p89d3f60k7ps-URI-5.05.tar.gz.drv /tmp/guix-tests/store/8d2k45s981sp0lp8lvdyjcbgasbyjzxx-File-DesktopEntry-0.22.tar.gz.drv /tmp/guix-tests/store/9zlv79ywj7ir8fxf4dnhsxjaia536cs6-perl-file-basedir-0.08.drv /tmp/guix-tests/store/8w33xjjv3n1k2mpl5h3simwqxbcjzav4-File-BaseDir-0.08.tar.gz.drv /tmp/guix-tests/store/b23fdfp2awhv5g9p8zxg1kkzw5lggyjw-perl-devel-symdump-2.18.drv /tmp/guix-tests/store/gh9vb3zjzri8wxfwrsx2hnhyv88z9358-Devel-Symdump-2.18.tar.gz.drv /tmp/guix-tests/store/ja2p1cdy0s9nqiqvcm7vd906nr932dvj-perl-pod-coverage-0.23.drv /tmp/guix-tests/store/dqgfn54qafr39x1h689cz60ww4akr9sk-Pod-Coverage-0.23.tar.gz.drv /tmp/guix-tests/store/mxm0rz4k1hdal56fkjzbw7qwfm94bp39-perl-ipc-system-simple-1.26.drv /tmp/guix-tests/store/jakpxym1b9pwblklb5wacqjbs77bj88m-IPC-System-Simple-1.26.tar.gz.drv /tmp/guix-tests/store/sw6zaqnwi9d9b1wyzqafm2zxq0vbva8s-xdg-user-dirs-0.17.drv /tmp/guix-tests/store/1bb47n7i4196z2zdvw9rdzzi35mfsa6f-xdg-user-dirs-0.17.tar.gz.drv /tmp/guix-tests/store/w4vc9lccrqhs7c6hcdxs142im8834k9y-perl-file-which-1.23.drv /tmp/guix-tests/store/232l7wlzqbi198hajlslgrq9yn0mnc9q-perl-capture-tiny-0.48.drv /tmp/guix-tests/store/swv64x3kzxxc95zbj7iqkx5c2qbx5ps6-Capture-Tiny-0.48.tar.gz.drv /tmp/guix-tests/store/5l44dn2g3spxx5cxhv85759z6fi6wzy1-perl-test-script-1.20.drv /tmp/guix-tests/store/dbcp6aahqjlzh1dh09pmq41gyjgclmsz-Test-Script-1.20.tar.gz.drv /tmp/guix-tests/store/x8lhjfcn07xfq2fbfhk7rzfxsjpdmbsr-perl-probe-perl-0.03.drv /tmp/guix-tests/store/0nry2askypi4qhbbf27lqjwc46falcar-Probe-Perl-0.03.tar.gz.drv /tmp/guix-tests/store/6j1p2arznbp8frl0wzv0shas81il5n85-File-Which-1.23.tar.gz.drv /tmp/guix-tests/store/yx7151hk8mlbip7p7zrfd7dmp4g10sm4-perl-test-pod-coverage-1.10.drv /tmp/guix-tests/store/rv2cazqa4hzkhh5yq7alhly1pjr5rz3i-Test-Pod-Coverage-1.10.tar.gz.drv /tmp/guix-tests/store/g5vzh6a63kl79m419dmb0c3050zkm1d5-inetutils-2.0.drv /tmp/guix-tests/store/jjm9nw4i3sy0hdms679p0saq3ns99hih-w3m-0.5.3+git20210102.drv /tmp/guix-tests/store/014q6ksw63335cc2y5kgyc5rnp2cgw3p-imlib2-1.7.1.drv /tmp/guix-tests/store/ihwvdfz4hf11bbvmchwcj4g57qx8iyi4-giflib-5.2.1.drv /tmp/guix-tests/store/cvh8ar9yqg8q2fysn7di52liij5i74jr-giflib-5.2.1.tar.gz.drv /tmp/guix-tests/store/mda32pqx2prwcbcw9r1si48abch0gdks-libid3tag-0.15.1b.drv /tmp/guix-tests/store/gbc5c8mxdwgk156myc119dzc52nm234m-libid3tag-0.15.1b.tar.gz.drv /tmp/guix-tests/store/mr8dnx52vjd9ydcwzz5qj5xxsvchsjpj-imlib2-1.7.1.tar.bz2.drv /tmp/guix-tests/store/szsh0rd1kj9nfy2cgcg77m3hbhjlb81v-libwebp-1.2.0.drv /tmp/guix-tests/store/364m882wv6aqihvzwxr0xbf2wgdr64gi-libwebp-1.2.0-checkout.drv /tmp/guix-tests/store/6kax0nfrhbv11sw07pir4fc3pdbik2lv-glu-9.0.1.drv /tmp/guix-tests/store/lw2grwgmw3fsbh3ff7j0i4jsxa53ifr6-glu-9.0.1.tar.gz.drv /tmp/guix-tests/store/9vdmlbazk57wghszwp25anksnp6aqkzc-freeglut-3.2.1.drv /tmp/guix-tests/store/8c1qvjaja4kq58bsb6vl8rhz89h0xpjd-freeglut-3.2.1.tar.xz.drv /tmp/guix-tests/store/bwjhgan4wcfr1m40q28bf67vzrknnljc-freeglut-3.2.1.tar.gz.drv /tmp/guix-tests/store/kacy6af34527hhx42f7cdaiss8iszf0w-w3m-0.5.3+git20210102-checkout.drv /tmp/guix-tests/store/pc7qcjlchsbq9ki9zz3bldg790kqiwlr-xdg-utils-1.1.3.tar.gz.drv /tmp/guix-tests/store/q05drnblwylfn0drbyh2h9a14yj6bsdr-perl-file-mimeinfo-0.29.drv /tmp/guix-tests/store/vw5793s9n3qfpy1hgnfsvps2zpxrkx99-File-MimeInfo-0.29.tar.gz.drv /tmp/guix-tests/store/q0jzw0gqypbbqdxrjgjzr8f2214kcnvj-xset-1.2.4.drv /tmp/guix-tests/store/b1lgzbxvd7rpvf9in9xkc5x2z9fi9p48-xset-1.2.4.tar.bz2.drv /tmp/guix-tests/store/vl19cfr2f3k8474gi1g6a2b33blk84wi-xprop-1.2.5.drv /tmp/guix-tests/store/r18j86ykrrzr7vkb3mkck0lpadry0nyw-xprop-1.2.5.tar.bz2.drv /tmp/guix-tests/store/8680wmn44cz4jziczyi5h39f3cjk7b6k-libinput-minimal-1.19.2.drv /tmp/guix-tests/store/gkcq3x9lkg79znprv7zkqy3m83v1zzlr-libevdev-1.11.0.drv /tmp/guix-tests/store/wqqgnmhp8wx8hcb1rgvm8ydinyzdrv2a-libevdev-1.11.0.tar.xz.drv /tmp/guix-tests/store/ib4y8qszcpdk57xnzlzjz1rp7fw4dcyj-libinput-1.19.2.tar.xz.drv /tmp/guix-tests/store/sq21f5a20qk6gx27ap537dvlshdljmwr-mtdev-1.1.6.drv /tmp/guix-tests/store/ir6f6f0r0sfhmi6dvavjijbhcpq3h8q7-mtdev-1.1.6.tar.bz2.drv /tmp/guix-tests/store/v4jdzzzdf5hrk78av329kw96c5i3qfng-check-0.15.2.drv /tmp/guix-tests/store/mwwv2j5mnksv90mg1pkqmgfzhkfcbzcb-check-0.15.2.tar.xz.drv /tmp/guix-tests/store/f9d57xqxkdwalirc3k45yc73gqnln6j5-check-0.15.2.tar.gz.drv /tmp/guix-tests/store/wxmwi621zbgi19mwg6s7nrrshyr4ifjs-check-fix-test-precision-for-ppc.patch.drv /tmp/guix-tests/store/ddybzv36lxqqbp9jkr6p73wgf6gnss5k-double-conversion-3.1.5.drv /tmp/guix-tests/store/wa9950s1i1k4hbgyx1v99avcz62llq37-double-conversion-3.1.5-checkout.drv /tmp/guix-tests/store/plaz442b4a06dfq0bilgci5353j6zajw-nss-3.71.drv /tmp/guix-tests/store/cgrhypv7k6422xd9k9nfvjni8wvpqb0q-nss-3.71.tar.xz.drv /tmp/guix-tests/store/zzvbcjmp1rykcwblk0w4w2lbvqs826q9-nss-3.71.tar.gz.drv /tmp/guix-tests/store/qvhlraqz5cskinffqjhsz66x2s64ypg9-libmng-2.0.3.drv /tmp/guix-tests/store/mwk82cpav4d2k0xlka67xpm9i6mxxdgv-libmng-2.0.3.tar.xz.drv /tmp/guix-tests/store/qvkiw8z94qxmdbhbjkmgz62vkbjmc721-unixodbc-2.3.9.drv /tmp/guix-tests/store/xf0s9qlgl83xmlrvp3p5l7gnnrjb6ccl-unixODBC-2.3.9.tar.gz.drv /tmp/guix-tests/store/r6hxzh4fp6b6y5imjdqkqv0w6kx02hs6-vulkan-headers-1.2.164.drv /tmp/guix-tests/store/kfqxpg143nv2l7b37qgmvpgixdmsgasv-vulkan-headers-1.2.164-checkout.drv /tmp/guix-tests/store/ya8gi7spl2124ybyqq7md4hskw0zfm5l-postgresql-13.4.drv /tmp/guix-tests/store/mh9dp0gm243q1s3vwkbjsv1h56rqrvwh-postgresql-13.4.tar.xz.drv /tmp/guix-tests/store/zij1gi8ggcy67r5h21csfm8kviqrvn99-postgresql-13.4.tar.bz2.drv /tmp/guix-tests/store/yfkbg3xlv37g2nfh3a81simikyxhdf7m-pulseaudio-15.0.drv /tmp/guix-tests/store/0x5wmlws09v536q1kpc0gyhayh06a6qm-bluez-5.61.drv /tmp/guix-tests/store/67sn1cq3gspwafgzz4m1pvkmmbgyckpv-bluez-5.61.tar.xz.drv /tmp/guix-tests/store/lpqxxgs5lkwlxmmcgbhl4zlrcdwgygph-libical-3.0.10.drv /tmp/guix-tests/store/73aln1lasdrydl6p398jd6rwx0dwgaad-libical-3.0.10.tar.gz.drv /tmp/guix-tests/store/dvaqliizqwlfb1pp2sqhpmj5dd7l18n8-gtk-doc-1.33.2.drv /tmp/guix-tests/store/1x1grvk9b3wgwmgaw5pwsdmw60z1677m-dblatex-0.3.12.drv /tmp/guix-tests/store/028k30w4f5x79s8y0anrqwfxlms28lgd-texlive-generic-etexcmds-59745.drv /tmp/guix-tests/store/4pfwphwlrncjmjs4g43vpszsmmmkk1x5-texlive-generic-etexcmds-59745-checkout.drv /tmp/guix-tests/store/h98y2qvkgx48x9lh3364gv6da8hzpwg1-texlive-generic-iftex-59745.drv /tmp/guix-tests/store/jkfyavsrm63sjgljqzy7kqyj3ccbjhkq-texlive-generic-iftex-59745-checkout.drv /tmp/guix-tests/store/ly8liqjqxdrsyc0ld23h0h7lpmrfz21j-texlive-generic-infwarerr-59745.drv /tmp/guix-tests/store/ndpkhmvx5sjmlj2g6hq8lgli35h1wqk8-texlive-generic-infwarerr-59745-checkout.drv /tmp/guix-tests/store/10a44g0ghdj0y4ngyf817hw47yiiwc4l-texlive-latex-atveryend-59745.drv /tmp/guix-tests/store/1cnn0llrg6cki3nlxlawmksvwkrwsbqr-texlive-latex-atveryend-59745-checkout.drv /tmp/guix-tests/store/1z0q2n6c2h36w79q110ppmz8hzqazv4l-texlive-latex-fancyvrb-59745.drv /tmp/guix-tests/store/37ms0ffrqlwqbamwiynin86wddyk5pn4-texlive-latex-fancyvrb-59745-checkout.drv /tmp/guix-tests/store/2rpqnivd9vx2klsmvall8n7lqlx9xhi7-texlive-generic-bigintcalc-59745.drv /tmp/guix-tests/store/552f3dw1jbhpms825zcdwc5jnghssjig-texlive-generic-bigintcalc-59745-checkout.drv /tmp/guix-tests/store/9y41z5xbh13619kd0b73q95r0myidfr5-texlive-generic-ltxcmds-59745.drv /tmp/guix-tests/store/x2n9zrpcfyj97rdbp2n0n3v91jclv0ni-texlive-generic-ltxcmds-59745-checkout.drv /tmp/guix-tests/store/lcyim7isxyggdkp7bjzbkami1ys08xgy-texlive-latex-pdftexcmds-59745.drv /tmp/guix-tests/store/f44sh4fiivjrra5j52r4yqgk6prn0l38-texlive-latex-pdftexcmds-59745-checkout.drv /tmp/guix-tests/store/2vgkkrrrds2pm1q7gplan2ppl20973hq-texlive-generic-intcalc-59745.drv /tmp/guix-tests/store/q73qxphsnqg3zbjfzgrv5fbavdi2m5w7-texlive-generic-intcalc-59745-checkout.drv /tmp/guix-tests/store/38lfj5p4bj98azs0nml9an6wrcg4f5v0-texlive-latex-hycolor-59745.drv /tmp/guix-tests/store/vifi4s234y4b92ygxbwidhdsq5w0ddxq-texlive-latex-hycolor-59745-checkout.drv /tmp/guix-tests/store/39fpfyjrrnki45b9y034pifmwnfzy8ab-texlive-latex-auxhook-59745.drv /tmp/guix-tests/store/q53x3jsbj0ikb4xssqx5yf1ii9r6j3xq-texlive-latex-auxhook-59745-checkout.drv /tmp/guix-tests/store/3p1dvk67gd7cwhnj37vcag8pa7h2qn3q-texlive-latex-overpic-59745.drv /tmp/guix-tests/store/alj8rf2akh9nccdzh454k64fq60wvqxr-texlive-latex-overpic-59745-checkout.drv /tmp/guix-tests/store/3wkrlp79j5xvswfvcn0glsl457s5gd2s-texlive-latex-listings-59745.drv /tmp/guix-tests/store/5cjjbb3ifnpdxavqafyi1dayqzq30w12-texlive-latex-listings-59745-checkout.drv /tmp/guix-tests/store/3xmrqgagh2qld8il7qayx2rk0pa9var1-texlive-latex-titlesec-59745.drv /tmp/guix-tests/store/6lf7n45h6gmb16spb11hkv1hixbvmlzy-texlive-latex-titlesec-59745-checkout.drv /tmp/guix-tests/store/47n364957cizzh4y8ix19k2sv597vcyf-texlive-generic-gettitlestring-59745.drv /tmp/guix-tests/store/fy3mqqczka6wjwi2r01v415pvl3kb44z-texlive-generic-gettitlestring-59745-checkout.drv /tmp/guix-tests/store/51nlarl0j7w8xqpl0chcrh04ly6xcxfd-texlive-latex-fancybox-59745.drv /tmp/guix-tests/store/rikdpl9i6dg44lwilnf28n4pfw1lq2gv-texlive-latex-fancybox-59745-checkout.drv /tmp/guix-tests/store/57vk89arbn0d6fz18k98rrywib70n286-texlive-amsfonts-59745.drv /tmp/guix-tests/store/jmxxq0fx491z3b19vxh4xl04spzfk285-texlive-updmap.cfg-59745.drv /tmp/guix-tests/store/kir5zzp8la3mdjkd8hv45xbili33i95i-texlive-fontinst-59745.drv /tmp/guix-tests/store/ds0vcppkczcmikg2vfx1a4md6d16r7h0-texlive-fontinst-59745-checkout.drv /tmp/guix-tests/store/sc06dgzi2mqs5mddqvxa4myy7n45gy9a-texlive-amsfonts-59745-checkout.drv /tmp/guix-tests/store/5r26vgjj1cmf406317px89kq43jw1baq-texlive-hyperref-59745.drv /tmp/guix-tests/store/84v5kgi34y7dsaxqwjf5bc33q037y1jz-texlive-generic-pdfescape-59745.drv /tmp/guix-tests/store/x2kh4lp5wxixq971sswc7q7jls5sd8gr-texlive-generic-pdfescape-59745-checkout.drv /tmp/guix-tests/store/88ywms5jm4jv9lb2prrwhi01qidgdfk4-texlive-hyperref-59745-checkout.drv /tmp/guix-tests/store/g1ifc9kcghrav5s0yj62il4d4si7fm47-texlive-generic-atbegshi-59745.drv /tmp/guix-tests/store/cya9fb6sqbpij9ww3viq1qg7g8lvnzss-texlive-generic-atbegshi-59745-checkout.drv /tmp/guix-tests/store/h1yb0kh5c9g6gxvxqm1s0bk87xy91nx7-texlive-latex-refcount-59745.drv /tmp/guix-tests/store/28vh8s32vjjnnx1gch0if3a39h2q46n2-texlive-latex-refcount-59745-checkout.drv /tmp/guix-tests/store/ixx3z3xaavqw70plj7cvr5gqf58kv9gz-texlive-generic-bitset-59745.drv /tmp/guix-tests/store/40ws55x9bbwmzb744mr02d7q0kclrybj-texlive-generic-bitset-59745-checkout.drv /tmp/guix-tests/store/jja6nshn7nascafwmikv42lznwnakxks-texlive-generic-kvsetkeys-59745.drv /tmp/guix-tests/store/0fdphls99dpyyimdw6dhvky7v86gvahz-texlive-generic-kvsetkeys-59745-checkout.drv /tmp/guix-tests/store/mw1x9fac2r319wvv9rffq6h28mfj1rcf-texlive-url-59745.drv /tmp/guix-tests/store/fkx7i2dr74dvaawrm323pqi6bbfx0np9-texlive-url-59745-checkout.drv /tmp/guix-tests/store/n5swg9k6i2nz69cg8pscqd26lbj36sf2-texlive-generic-kvdefinekeys-59745.drv /tmp/guix-tests/store/sp83swx4m9q1d7h5f1kp7cim9wsdn711-texlive-generic-kvdefinekeys-59745-checkout.drv /tmp/guix-tests/store/phc664sk9sbiqxl7qfm2947ixacy3yi0-texlive-latex-letltxmacro-59745.drv /tmp/guix-tests/store/r59cpc939ppshdz7fbwdc9m2kkvlfbx7-texlive-latex-letltxmacro-59745-checkout.drv /tmp/guix-tests/store/pxg43pyrmjn2yzn9y8cfyjd8l2kj5y3l-texlive-latex-kvoptions-59745.drv /tmp/guix-tests/store/k2j6lrnni83b04j1h2p4gdbvv2zafnxf-texlive-latex-kvoptions-59745-checkout.drv /tmp/guix-tests/store/q1va4096249nvqs6wvyplywjw30f5ki0-texlive-latex-rerunfilecheck-59745.drv /tmp/guix-tests/store/by8wfs6f6s177nw35wgxxjvqhwjwkzd5-texlive-latex-rerunfilecheck-59745-checkout.drv /tmp/guix-tests/store/zfard3vh41zqdrvfa4dka28fgcc4pmng-texlive-generic-uniquecounter-59745.drv /tmp/guix-tests/store/04fd2gbla04q2v6ksziql07zyvciys99-texlive-generic-uniquecounter-59745-checkout.drv /tmp/guix-tests/store/6p0gpdrdncs8980a5q1d8f229wb4vpfm-texlive-latex-subfigure-59745.drv /tmp/guix-tests/store/7n58zr4pqzd02jhqd2fgsj87m2ip1c40-texlive-latex-subfigure-59745-checkout.drv /tmp/guix-tests/store/7aqgvkm1wrnxsbsmbpcmd4rn9nnkgvxk-texlive-latex-fancyhdr-59745.drv /tmp/guix-tests/store/x55icf4yc3bl1aw4fprvddx9r6na1kl6-texlive-latex-fancyhdr-59745-checkout.drv /tmp/guix-tests/store/81l43lxn4gl693dpnm72lhnjm1jsgc71-inkscape-1.1.1.drv /tmp/guix-tests/store/0zf7i2fjqxlw6pmd0gvfyp1cj2gx5jnh-libsigc++-2.9.3.drv /tmp/guix-tests/store/9s6q4md79x4av5vbdisxg7jkwbldkg13-libsigc++-2.9.3.tar.xz.drv /tmp/guix-tests/store/ick5yqyfq4lkg9pmqrhhp3wkqdzyhdsx-mm-common-1.0.3.drv /tmp/guix-tests/store/fjmidvb43rzdyqhkrhc4rwvqmlfa1aan-mm-common-1.0.3.tar.xz.drv /tmp/guix-tests/store/33clhsbd69c4hlsmi29gg1k32jc69ljc-atkmm-2.28.1.drv /tmp/guix-tests/store/10jgiv65k8mwkh7w0xhbhanp1qsp974r-atkmm-2.28.1.tar.xz.drv /tmp/guix-tests/store/78q79qz8ch98x3swc04i0mr52j70lcc8-glibmm-2.64.5.drv /tmp/guix-tests/store/j1i6x1sapsaxpqvvk3cq94dmnvyx0ac4-glibmm-2.64.5.tar.xz.drv /tmp/guix-tests/store/z2hqfm6ml0rk166wx8v338jkr9g15i51-libsigc++-3.0.6.drv /tmp/guix-tests/store/na2gs48240w241yhc85rp55rln1ibwm3-libsigc++-3.0.6.tar.xz.drv /tmp/guix-tests/store/wp3wj8y9vyz07f3bm6xwvmdqcnhqhxcs-glibmm-2.68.0.drv /tmp/guix-tests/store/dr35md9s8gkv2sm2wa0qrhad8l689aav-glibmm-2.68.0.tar.xz.drv /tmp/guix-tests/store/3kp8ajqcmyy0sm6k8gm3cm2nhjswc0yh-cairomm-1.14.2.drv /tmp/guix-tests/store/6wr614wf28sr493rf8fpl04mril03pi7-cairomm-1.14.2.tar.xz.drv /tmp/guix-tests/store/3xi11l0ahwpi0pvyicmvk8jz222b17wp-libwpg-0.3.3.drv /tmp/guix-tests/store/7f5mgkchabaahj9pgziakpg0w43bvaxk-librevenge-0.0.4.drv /tmp/guix-tests/store/sj1j1n4av24xkvmmggl5f7mk5zd2x856-cppunit-1.15.1.drv /tmp/guix-tests/store/qn2ks28l0j2h3zda5374iw0jzqgbjvw6-cppunit-1.15.1.tar.gz.drv /tmp/guix-tests/store/z0h6j4wn0bl6j6mgx45f7jp00hgvpyaz-librevenge-0.0.4.tar.xz.drv /tmp/guix-tests/store/alb2hk702findb0swgwfa0cxp5pvk3j7-libwpd-0.10.3.drv /tmp/guix-tests/store/w6zxjycvlj25slhkgkbczzv14p4hajsv-libwpd-0.10.3.tar.xz.drv /tmp/guix-tests/store/s86zrdf590dnjx171bd5m8y2p3vi8v77-libwpg-0.3.3.tar.xz.drv /tmp/guix-tests/store/488nl6q7rgrx80m4i1cnmhwn42jznp23-gdl-minimal-3.34.0.drv /tmp/guix-tests/store/0fkacmbnvpciwndmw15kgb29zxmi500s-gnome-common-3.18.0.drv /tmp/guix-tests/store/nsfaiwhr2nrha4bds35lnrqxfvwwnwf4-gnome-common-3.18.0.tar.xz.drv /tmp/guix-tests/store/qqlvm2bsvasr6xigv385hqpxx9qdxv26-gdl-3.34.0-checkout.drv /tmp/guix-tests/store/bixpafc2h0kksdawn12w93ya372gay2j-gtkmm-3.24.5.drv /tmp/guix-tests/store/fmrf46w5yhfwixhjkbis2pnwc8sg0f49-meson-0.59.4.drv /tmp/guix-tests/store/i3ps43jc87jmdcljyy9zg8sbl2f6sjg2-meson-0.59.4.tar.xz.drv /tmp/guix-tests/store/adi03782zr66l30l8wr94si7nmm8sxkv-meson-0.59.4.tar.gz.drv /tmp/guix-tests/store/sc4s8viwr9rjxhnixwdg5my9cxiq8pii-pangomm-2.46.0.drv /tmp/guix-tests/store/94az8zdbiyhwgn8phbjvqlf5w8mrfc04-pangomm-2.46.0.tar.xz.drv /tmp/guix-tests/store/y2c4xfdi8ycx42kw7g855x14c3mda7m5-gtkmm-3.24.5.tar.xz.drv /tmp/guix-tests/store/d51a280zi4f4rvc1930v75hcbxg95kby-python-pyserial-3.5.drv /tmp/guix-tests/store/s7iqi6y576vfj4kbvrblyfn6l0f17lwr-pyserial-3.5.tar.gz.drv /tmp/guix-tests/store/h0d6j5a2gz5n5d6579blb4pyq0lak5b3-module-import-compiled.drv /tmp/guix-tests/store/jqvls4w99cx1yhh3csk3cr5vbrv51js5-lib2geom-1.1.drv /tmp/guix-tests/store/5llixsmzx8pgn3kz68hdqdd6wihfpysj-python-pycairo-1.20.0.drv /tmp/guix-tests/store/8adm6jz019sg0rlgr8bzz8njpknl587r-pycairo-1.20.0.tar.gz.drv /tmp/guix-tests/store/fkd3rn18ar9ikcgbk7y1ni9q7i7djqvc-lib2geom-1.1-checkout.drv /tmp/guix-tests/store/n4zpirl6xr5g2i84i2xvxvs0676mqsqn-module-import-compiled.drv /tmp/guix-tests/store/paq19mhg77pm5731kfz13rwd31038ihh-googletest-1.11.0.drv /tmp/guix-tests/store/nl68mc2pz8cfibxqrb1b5r0bzgibnvak-googletest-1.11.0-checkout.drv /tmp/guix-tests/store/vz95plc4nhvk6h5wv9n95wykcv2xvql6-gsl-2.7.drv /tmp/guix-tests/store/da0zaj0rfbmviy0cizxh7piv3cmrrr5z-gsl-2.7.tar.gz.drv /tmp/guix-tests/store/lyvanq8kglinkkx4vjzb5m7s6y0fmrah-python-numpy-1.20.3.drv /tmp/guix-tests/store/080zix5k1sg79sy3rz2haiqfi44l65xv-openblas-0.3.18.drv /tmp/guix-tests/store/7f7ms282j9zh1ilyy1wl6k7qsibxcg5z-gfortran-10.3.0.drv /tmp/guix-tests/store/cs2xmi9m8nqja90i1iikm10f483wqm1x-openblas-0.3.18-checkout.drv /tmp/guix-tests/store/7f7ms282j9zh1ilyy1wl6k7qsibxcg5z-gfortran-10.3.0.drv /tmp/guix-tests/store/9db64pl12dz96ghzm3v4i8j0g1x98rah-python-cython-0.29.24.drv /tmp/guix-tests/store/g44in3p3lhq3gfcd40n19phhinpxx2lc-Cython-0.29.24.tar.gz.drv /tmp/guix-tests/store/9rxyw6i4zwg2w1xhykfrpr2blmv80srq-python-pytest-forked-1.3.0.drv /tmp/guix-tests/store/x423520n06q3xnjbd0i2gb3cg87wbg7v-python-pytest-forked-1.3.0-checkout.drv /tmp/guix-tests/store/bij7w0gcchm9rlazvcw9fk13x6z7a6p3-numpy-1.20.3.tar.gz.drv /tmp/guix-tests/store/ip2rvwmb41skrrb86xzwp9rsi1i2p29n-python-execnet-1.9.0.drv /tmp/guix-tests/store/3jkpgybhb10wkzdijvqsb29im1p2z323-execnet-1.9.0.tar.xz.drv /tmp/guix-tests/store/fm9hvbrkfxirwv5nhvc6ffdggajvviz2-execnet-1.9.0.tar.gz.drv /tmp/guix-tests/store/n0b54apfg5ljpk3ygl0nbs6vskm36h9d-python-pytest-xdist-2.1.0.drv /tmp/guix-tests/store/ki6m42q0jcb2ss91na9ckb1wncwv1r90-pytest-xdist-2.1.0.tar.xz.drv /tmp/guix-tests/store/n3zzp7vjbglnv5mivv2jhh0lfvfxqp5v-pytest-xdist-2.1.0.tar.gz.drv /tmp/guix-tests/store/r4a432vbfhilzbg00d59xd5nh0zvrkcp-libcdr-0.1.7.drv /tmp/guix-tests/store/wn0z2363a3w975197p7mnwphylh958xf-libcdr-0.1.7.tar.xz.drv /tmp/guix-tests/store/vf5q0gad0w0ll1y5lb8492056v816w8g-autotrace-0.40.0-20190624.59.drv /tmp/guix-tests/store/ac3wjif4f8z5bdxbz88ss121zd6vliq5-autotrace-0.40.0-20190624.59-checkout.drv /tmp/guix-tests/store/1gqabshydg70hkdraj6v05fn9nxz8hbl-autotrace-0.40.0-20190624.59-checkout.drv /tmp/guix-tests/store/k6lcv6pqnlm0gv5lrzgix9zminamr7a0-pstoedit-3.77.drv /tmp/guix-tests/store/2xv5is1j35lny7f1w38v9q160j69cdzj-pstoedit-3.77.tar.gz.drv /tmp/guix-tests/store/c3513whdiyi8vfwjbjsah8vx31yf79cg-plotutils-2.6.drv /tmp/guix-tests/store/m54iymc596lxggznmxwdwrzkh9aybfdc-plotutils-2.6.tar.xz.drv /tmp/guix-tests/store/9a42if7ax6ccn5adv5ayapg95bfr2jrf-plotutils-2.6.tar.gz.drv /tmp/guix-tests/store/vmqbvrrf51q3lmk5a1asbmd3k5ym27kw-inkscape-1.1.1.tar.xz.drv /tmp/guix-tests/store/rfn36qn2ifdmmv4mrcirz27a9g572hrp-inkscape-1.1.1.tar.xz.drv /tmp/guix-tests/store/xj9j10qj2sgcd8gy03y524dbh0ldmqpj-python-scour-0.38.2.drv /tmp/guix-tests/store/c65rphn2vc7h508v0k4q0c48sdw34c55-python-scour-0.38.2-checkout.drv /tmp/guix-tests/store/xvrzjz4wkryigmwd78mz9y0j52wawjva-gtkspell3-3.0.10.drv /tmp/guix-tests/store/s9lg9p1yi961ga708rkahh6ql9an6rf3-gtkspell3-3.0.10.tar.xz.drv /tmp/guix-tests/store/y3y3jx4wnzvngzpk8nc925hklfdyfqaw-enchant-2.2.15.drv /tmp/guix-tests/store/adxmrw7rkg0aavvqkd8k3xd4w8wc9d4f-unittest-cpp-2.0.0.drv /tmp/guix-tests/store/j2fvbalfzi53vwpagzjkxs12maaw45ff-unittest-cpp-2.0.0-checkout.drv /tmp/guix-tests/store/mgnsc1zilmbm8d1ip40nk038cw6dnp9x-enchant-2.2.15.tar.gz.drv /tmp/guix-tests/store/z3njc1ijvk1w64nd3j2cx3799i0613cn-libvisio-0.1.7.drv /tmp/guix-tests/store/2c16yi4divzvznhjgxqmxngrf0ysacrb-libvisio-0.1.7.tar.xz.drv /tmp/guix-tests/store/bwff5k48v4lwf3xq5c58bw0z4q768w98-texlive-latex-changebar-59745.drv /tmp/guix-tests/store/f451704ssqa5sg800dq5ffms1myy5x2z-texlive-latex-changebar-59745-checkout.drv /tmp/guix-tests/store/bwkb1xjk43phsz2jnfzhyzzbka6cxgvz-texlive-latex-jknapltx-59745.drv /tmp/guix-tests/store/qxswcdf7jinly2fjiqhhp9gz8h0j2cyk-texlive-latex-jknapltx-59745-checkout.drv /tmp/guix-tests/store/dnday04nlhbaignq1n9i2cz2ay9inr6d-texlive-latex-pdfpages-59745.drv /tmp/guix-tests/store/d9fvwzr58kln7f4hwx54qkzhjpmc8sk1-texlive-latex-pdfpages-59745-checkout.drv /tmp/guix-tests/store/fz273lyy4vbvxd933xzkaqd5lpll091r-imagemagick-6.9.11-48.drv /tmp/guix-tests/store/n45nscprsy97cyig2675rf6nc9hwqvaw-ImageMagick-6.9.11-48.tar.xz.drv /tmp/guix-tests/store/i2rbwxcvx8acac1ccrg38hbqjis155wv-texlive-latex-float-59745.drv /tmp/guix-tests/store/ckw4xlib46zh5igy7wnxz8sqg19jp2yy-texlive-latex-float-59745-checkout.drv /tmp/guix-tests/store/jp40zd4nv27x76a6l5ckwlyqxw22g8al-texlive-latex-anysize-59745.drv /tmp/guix-tests/store/9xhpan5abb9063yzm5vjhrc1a9in81lz-texlive-latex-anysize-59745-checkout.drv /tmp/guix-tests/store/jpvx7n5wsdffina7iy3sv3g3xl8b0kvm-texlive-latex-colortbl-59745.drv /tmp/guix-tests/store/s7xmakf85jxckzm37a64jack8il2kjna-texlive-latex-colortbl-59745-checkout.drv /tmp/guix-tests/store/mcjgksip4z6bknqn1ms3g918afsd21vq-texlive-latex-appendix-59745.drv /tmp/guix-tests/store/7qy05h4786r8vp3j9bv9gq2nd61z7gf6-texlive-latex-appendix-59745-checkout.drv /tmp/guix-tests/store/n708wzkj1kfqm5bqjmbam8lqq1na7qpg-texlive-wasysym-59745.drv /tmp/guix-tests/store/1ip8a4mbz7jjsa1cccqb3g773k44jwl5-texlive-wasysym-59745-checkout.drv /tmp/guix-tests/store/q9awysva9kl76ny3na5ylkvw4l1l6kv7-texlive-fonts-rsfs-59745.drv /tmp/guix-tests/store/f3qz8w0jc6i2jklkg01yjwbsls22v9s9-texlive-fonts-rsfs-59745-checkout.drv /tmp/guix-tests/store/qgylcxgqlhvf8g73dwy0i4vmg11kidc3-dblatex3-0.3.12.tar.bz2.drv /tmp/guix-tests/store/rk6v7vnkmzifbb7h6x6qqair57i97vfr-texlive-latex-bookmark-59745.drv /tmp/guix-tests/store/9h9pz97nfjva7dm7n96aqvh6mqdwzanl-texlive-latex-bookmark-59745-checkout.drv /tmp/guix-tests/store/ryanc4lpmzi419z0k5ykwglikrmigj2b-texlive-updmap.cfg-59745.drv /tmp/guix-tests/store/rz166f670ay1ipcm35y7x4s5nflbh6iq-texlive-latex-multirow-59745.drv /tmp/guix-tests/store/kkwimxs9jmyp06w25rriqas5pydnbzxg-texlive-latex-multirow-59745-checkout.drv /tmp/guix-tests/store/wr0qfr1a9wr2i42hckffqfg6h16wbx1w-texlive-stmaryrd-59745.drv /tmp/guix-tests/store/27slp2n4fgfgapipdsky4apsdc65c15k-texlive-stmaryrd-59745-checkout.drv /tmp/guix-tests/store/yn7g8z60zk090hp33rr7gkiswqbk8dfr-texlive-latex-footmisc-59745.drv /tmp/guix-tests/store/72xrg5d5hprn3cb1nlnf6bp4iasfsina-texlive-latex-footmisc-59745-checkout.drv /tmp/guix-tests/store/3jwr4x8hqigbnkxzjdmijz4d8g9c9vph-gtk-doc-1.33.2.tar.xz.drv /tmp/guix-tests/store/p0nghm08n1xy5w5qsf9srs89nsa00lfg-gtk-doc-1.33.2.tar.xz.drv /tmp/guix-tests/store/83509x1fmiq5x14p2v7yad681a53pr4l-python-traceback2-1.4.0.drv /tmp/guix-tests/store/0ndy7lgjx0qgj83f4pd11y68gacdzw89-traceback2-1.4.0.tar.gz.drv /tmp/guix-tests/store/9nf2dy3q4fsnibkmr6zngxy3d39ygcr9-python-linecache2-1.0.0.drv /tmp/guix-tests/store/hnwqxhrkljvsaa7hsd662i292j2y07b4-linecache2-1.0.0.tar.gz.drv /tmp/guix-tests/store/z45y4hndg2pvqh894ijsadxfgjnqk9h8-python-pbr-minimal-5.5.1.drv /tmp/guix-tests/store/65jri73rpklmv2293kwcyanjx6q9yrkj-pbr-5.5.1.tar.gz.drv /tmp/guix-tests/store/g385qsx8fj3s7qfr9k699sh87b1ysvvk-source-highlight-3.1.9.drv /tmp/guix-tests/store/1d8l3fah02iw660x9k43925l6labimw9-source-highlight-3.1.9.tar.gz.drv /tmp/guix-tests/store/jkmhrb17gz351yprx01mz6mwd66cizjj-python-anytree-2.8.0.drv /tmp/guix-tests/store/lk5qln1mh7n2zdnvwj1lpm4sd3xb7z8g-anytree-2.8.0.tar.gz.drv /tmp/guix-tests/store/mjxrp973ximc3dlkaki5ysa33cbjkyvg-python-unittest2-1.1.0.drv /tmp/guix-tests/store/cm8s27mdqnc4i43p5qfy8d1fnnqn0whx-unittest2-1.1.0.tar.xz.drv /tmp/guix-tests/store/2slskfrnbl4sqj5jbd4xz5kn3wgxa4y1-unittest2-1.1.0.tar.gz.drv /tmp/guix-tests/store/v90k8nayfdd8rd2l4rh8c1acnzbm04ya-python-parameterized-0.7.4.drv /tmp/guix-tests/store/1ff34jyzygsfx2gqgyhmz5b4wfmi19cd-parameterized-0.7.4.tar.gz.drv /tmp/guix-tests/store/52i08rf16kmpyfxhib1526bgabrn28c8-libogg-1.3.5.drv /tmp/guix-tests/store/16qwdhhkzlkpd8wvsxv0xzqrvg8yc814-libogg-1.3.5.tar.xz.drv /tmp/guix-tests/store/53y6fad0d59jmnkcz544wbq38fjip7zk-libsndfile-1.0.30.drv /tmp/guix-tests/store/lqclr88wcxhj6ijkaqc3sdbfl3sz7ch2-flac-1.3.3.drv /tmp/guix-tests/store/zyanng5z4ksq329x4shlgdr6j5rh8ygv-flac-1.3.3.tar.xz.drv /tmp/guix-tests/store/pkz609irqk1d0lxkzd8krn9z9vpp794b-libsndfile-1.0.30.tar.xz.drv /tmp/guix-tests/store/zg1blp87srv2bw1r5qfz9yhksvjlms30-libsndfile-1.0.30.tar.bz2.drv /tmp/guix-tests/store/wijgv951ph20wn4l43yz4rj2mv2axcjy-libvorbis-1.3.7.drv /tmp/guix-tests/store/7qik7fi5i09c9cd6b71hfhg617dfpnb1-libvorbis-1.3.7.tar.xz.drv /tmp/guix-tests/store/yf42yz2b3cam6cagcmdzhk5vpwjkps4p-opus-1.3.1.drv /tmp/guix-tests/store/dz208rym5vxhkhl6zx9v2fvs1f8ks650-opus-1.3.1.tar.gz.drv /tmp/guix-tests/store/91nq9h430xgmnkvkq1176bsaq4m5sa2s-jack-0.125.0.drv /tmp/guix-tests/store/imf50gd2klbp77j7g3w3k5sfj94smv4n-jack-audio-connection-kit-0.125.0.tar.gz.drv /tmp/guix-tests/store/a30dy1gmj3sfpqn44f196b804sk2kx1n-pulseaudio-15.0.tar.xz.drv /tmp/guix-tests/store/na2drx6djnk997hnzg8l6kdbf4s2nrp0-pulseaudio-15.0.tar.xz.drv /tmp/guix-tests/store/f1pi4cqm62jd76hvm484nfnzc59v2px6-speexdsp-1.2.0.drv /tmp/guix-tests/store/7clzrbgbx44f9ss0c3pl332adqnkamis-speexdsp-1.2.0.tar.gz.drv /tmp/guix-tests/store/gxrimiijggal78766my8rc667v87d5ms-sbc-1.5.drv /tmp/guix-tests/store/jkbfd6992asmqrfrwiman8n91y0rxiz3-sbc-1.5.tar.xz.drv /tmp/guix-tests/store/mgavfyvndchgd6p07jmwsppzm95achca-sbc-1.5.tar.xz.drv /tmp/guix-tests/store/kdv0g421pf1r0p69c2nyw3893dc968zx-fftwf-3.3.8.drv /tmp/guix-tests/store/xbpn1a18ql8phbk0rb3jwlniv2giaqp6-webrtc-audio-processing-0.3.1.drv /tmp/guix-tests/store/vz5awm6w4qzw8mhdgwkhp4vhfqwzah3c-webrtc-audio-processing-0.3.1.tar.xz.drv /tmp/guix-tests/store/z8xhjvcjq3ghygca7y4zjn3kkgj1n1yq-qtbase-everywhere-src-5.15.2.tar.xz.drv /tmp/guix-tests/store/srw7md5lmjkyxsnwqsbh9zvzjv8srhhd-qtbase-everywhere-src-5.15.2.tar.xz.drv /tmp/guix-tests/store/iwvscqbfnswggmjr459qjmzn7kg968v6-fcitx-4.2.9.8_dict.tar.xz.drv /tmp/guix-tests/store/nrfjw0if301vxi5h96s5zrp76gfsa0d7-ibus-1.5.24.drv /tmp/guix-tests/store/0xlcg73ca7300y87qmaz6ply26bgbxdn-dconf-0.40.0.drv /tmp/guix-tests/store/3r8nrp2qhw275gjzrzmm0983b8cy741g-dconf-0.40.0.tar.xz.drv /tmp/guix-tests/store/2b2sq4s5xvs65ifj2wilh081mx2l13kx-xmodmap-1.0.10.drv /tmp/guix-tests/store/lmzp11j9842fs6x4n4wm7489z4lp8vbf-xmodmap-1.0.10.tar.bz2.drv /tmp/guix-tests/store/2c6ycx35jj1acgdvhw0p68zgw4b6x417-unicode-cldr-common-36.0.drv /tmp/guix-tests/store/6jns9hmxibbh18g67ms7wjjfvfbhf8xx-cldr-common-36.0.zip.drv /tmp/guix-tests/store/yh9rng71wvb2jjn5wfzd3c2w27lx960h-zipbomb-cldr-common-36.0.zip.drv /tmp/guix-tests/store/8dmh91aybcjspa9r8vm29ncyxq6jqxwf-ucd-12.0.0.drv /tmp/guix-tests/store/dmfw4d7si3pm7hxgzl0j193s55cda3zs-UCD.zip.drv /tmp/guix-tests/store/a1maanbbmgbxi4npym91pyw99b089jxw-zipbomb-UCD.zip.drv /tmp/guix-tests/store/awc90iccycqdp42w1zi069an6jml9s8n-ibus-1.5.24.tar.gz.drv /tmp/guix-tests/store/b733gf3gka919zs3q1839v41pdbh5hn2-json-glib-1.6.2.drv /tmp/guix-tests/store/pqkzqsk34db4qwv083pcczyvp3vyr4d8-gtk-doc-1.33.2.drv /tmp/guix-tests/store/4cvbgknh71wbip3543kzdmi6rdrdrqbx-dblatex-0.3.12.drv /tmp/guix-tests/store/bnazxgffckbl2jfzxj9l7lgxgp1kk85r-gtk+-3.24.30.drv /tmp/guix-tests/store/cd3gjbbyjb1xrnhdp1qj2rfipiyki4ya-unicode-emoji-12.0.drv /tmp/guix-tests/store/2zpbjd0kjfnhzfn8avphsxbwnrcsaqrz-emoji-test.txt.drv /tmp/guix-tests/store/6zlny5dnkk6dc8p4n38ykv25kgs1xs13-emoji-zwj-sequences.txt.drv /tmp/guix-tests/store/av98dk2vmlx3jcp36rfky51ba95iq5g4-emoji-sequences.txt.drv /tmp/guix-tests/store/fclymkakzzi88yzw4g2g1h125zaanwyc-emoji-variation-sequences.txt.drv /tmp/guix-tests/store/pkf1c3znwmj6nnkvpzpyj755jww06xgs-emoji-data.txt.drv /tmp/guix-tests/store/ch1vzr8wzgbv4hrq8kd1f16dwpq5agdn-python-pygobject-3.40.1.drv /tmp/guix-tests/store/9czdlgd84xqh6v2fc1kjl0kc9ackglx3-pygobject-3.40.1.tar.xz.drv /tmp/guix-tests/store/k3pvrx9kwj0yzqr8156fxqf5bghy7rd0-pygobject-3.40.1.tar.xz.drv /tmp/guix-tests/store/h162h7r3jr6g0kgpbzc55ygfhzb8nhr4-python-dbus-1.2.18.drv /tmp/guix-tests/store/2422ri1svgbwfg5kj3a0cqmbddmj7vn6-dbus-python-1.2.18.tar.gz.drv /tmp/guix-tests/store/jb373dls7c0slrly74xxifiqq2vv5i36-setxkbmap-1.3.2.drv /tmp/guix-tests/store/n1y57ixm2h6w7r4p0wmd1slgki52s38k-setxkbmap-1.3.2.tar.bz2.drv /tmp/guix-tests/store/rsz4srk11x4a707y4z1pa5hqy5vqrrn3-libnotify-0.7.9.drv /tmp/guix-tests/store/bf0p6hb1rzzncd7mrwpmm8bcz18xiidm-libnotify-0.7.9.tar.xz.drv /tmp/guix-tests/store/kvipshbagjr0clsfbxs0bpli750b6mwj-u-boot-2021.10.tar.xz.drv /tmp/guix-tests/store/3s3z7499lfl87nch7ax8s5mzlrvv3s6c-u-boot-2021.10.tar.bz2.drv /tmp/guix-tests/store/zx4xkcmbg5sz9akviwb1rfnxvwdqlshv-dtc-1.6.1.drv /tmp/guix-tests/store/9gbmsqsk32ynqzp1hkmxrf03zyi2sj5a-dtc-1.6.1.tar.xz.drv /tmp/guix-tests/store/fcb2zajdf60zzqsjz64n2rypxww1x1m0-libyaml-0.2.5.drv /tmp/guix-tests/store/sc53x2q3h4sss6vmasrpk81zaflw9c1b-yaml-0.2.5.tar.gz.drv /tmp/guix-tests/store/rxbccqlx39snsycc4sfgdbj3s9zhagli-cpio-2.13.drv /tmp/guix-tests/store/shz8cm6iwvfg6sm0bdlcp97a6iv4x8xl-cpio-2.13.tar.xz.drv /tmp/guix-tests/store/y9nbw83qbnln93pr1951wjlvlyra5iwy-cpio-2.13.tar.bz2.drv /tmp/guix-tests/store/wkp2vszn11d1hpnrrbvi5fraai1z270b-cdrkit-libre-1.1.11.drv /tmp/guix-tests/store/f3n8dq4gbbs2zn5i26pn34xs01vhrvkf-cdrkit-libre-1.1.11.tar.xz.drv /tmp/guix-tests/store/j0wnaj19kzyv3ad4d4s5v9mdh2wjdr2s-cdrkit-libre-1.1.11.tar.gz.drv /tmp/guix-tests/store/y6qxr5sbapvvl5ybl4wwsj9y42mqf0cx-genext2fs-1.4.1-4.drv /tmp/guix-tests/store/sn1jysjx1csgls0r4k1cr9p1z74axlkv-genext2fs-1.4.1-4-checkout.drv + for example in gnu/system/examples/*.tmpl + grep hurd + echo gnu/system/examples/beaglebone-black.tmpl + target= + guix system -n disk-image gnu/system/examples/beaglebone-black.tmpl accepted connection from pid 13487, user nixbld guix system: warning: 'disk-image' is deprecated: use 'image' instead spurious SIGPOLL spurious SIGPOLL substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable substitute: guix substitute: warning: authentication and authorization of substitutes disabled! The following derivations would be built: /tmp/guix-tests/store/4gbm310sbvamkifp5lcl06g9zd3avfib-disk-image.drv /tmp/guix-tests/store/23k5bd2sk1mlimyvv2hvihbki4i8j8cl-guile-gcrypt-0.3.0.drv /tmp/guix-tests/store/21pmnj5l8wwv9j6565ami62ql6rdbivp-gzip-1.10.drv /tmp/guix-tests/store/5rffkc4lx8d86gj4fa4rvg0spps1p4v0-file-boot0-5.39.drv /tmp/guix-tests/store/3drxkc76igrw1fi4hblngm7lmwzvhbfg-gcc-bootstrap-0.drv /tmp/guix-tests/store/d6f0fa8x4if8asg5sf69aqma7nm265a0-glibc-bootstrap-0.drv /tmp/guix-tests/store/jvxnnz4bmgqfh6m8cgmmlv94pi68gwxl-glibc-2.25.tar.xz.drv /tmp/guix-tests/store/hcvxcl1hwj875z5f1h35f32khxafr9lc-gcc-5.4.0.tar.xz.drv /tmp/guix-tests/store/5h5z1far1zz5lb9z2aqj8w711z3qisnx-module-import-compiled.drv /tmp/guix-tests/store/6lwnac3ga3qs598j99n3vfc96fqi554h-file-5.39.tar.gz.drv /tmp/guix-tests/store/8j2q9fv5azb6sclr1b6ypjybpjybwb84-make-boot0-4.3.drv /tmp/guix-tests/store/irmyrsqw0m0mk8swb00ryf3ic6pqw2jf-bootstrap-binaries-0.drv /tmp/guix-tests/store/4x2n9xjb3qqm34vc9k2c1w9b9xm46agx-static-binaries.tar.xz.drv /tmp/guix-tests/store/msy4c035ih8ss7w3mazn0y6cvrwrmazj-binutils-bootstrap-0.drv /tmp/guix-tests/store/zr43wy48bl6lhld21ajilvj895q7jsqa-binutils-2.27.tar.xz.drv /tmp/guix-tests/store/vdg7a9kpy8rs12abqjyxr7d5idcwci68-make-4.3.tar.xz.drv /tmp/guix-tests/store/wy7isgmjyiwbzsyx1f3bmhw4kdi65l7i-make-4.3.tar.gz.drv /tmp/guix-tests/store/5rx3i7c94a787lns10xwgim1hq84m7v1-binutils-cross-boot0-2.37.drv /tmp/guix-tests/store/gp2iyp8vzj2904mha81vsx3a5l9ndkcq-binutils-2.37.tar.xz.drv /tmp/guix-tests/store/vj5dqqhka5p7qi20kh32396bd1y127al-binutils-2.37.tar.bz2.drv /tmp/guix-tests/store/p677ngbz80k4ld9dn87s65ni32v6lmjn-diffutils-boot0-3.8.drv /tmp/guix-tests/store/cpsrirfv2871swvx7slsdabnyma4h781-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/xsmnf0jmi7p4n60i8p1mkvpm05sp6a6w-findutils-boot0-4.8.0.drv /tmp/guix-tests/store/xl0b647qzhamil3s0w46970xp4lqzc09-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/m0hxwnqk3j0v7333n3ii2jqix1da025s-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/5w71j1ahwqsicxm3kvwcfak690fsdwm3-guile-3.0.7.drv /tmp/guix-tests/store/00rl26bz9iy645lfvjz3wz8zv2813cjj-pkg-config-0.29.2.drv /tmp/guix-tests/store/bhan5y2nxnwnz9bcxdy76h9rfq20wml2-pkg-config-0.29.2.tar.gz.drv /tmp/guix-tests/store/dp1ja89a8vkxgf1p4jc6r5ymaf3zf8qc-linux-libre-headers-5.10.35.drv /tmp/guix-tests/store/0nqx5jlmc5mk9nrfvab8sn3g33fssycs-m4-boot0-1.4.18.drv /tmp/guix-tests/store/6d9fq4zyksi8my2avvmf4ccca6x353am-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/wfv4vwpw1xv13b7yff3siichmhifi8j3-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/cxfvgfda8b95ld7yb98472bzr487akfl-bison-boot0-3.7.6.drv /tmp/guix-tests/store/dsmw8wfsxlq3nk1vrc8ni7a6387k0695-perl-boot0-5.34.0.drv /tmp/guix-tests/store/q45vcwi1vdnl1ivwaxk6v2xcd8xa4ang-perl-5.34.0.tar.xz.drv /tmp/guix-tests/store/aaqnz7s3w73pb173krlx673qpmism8f5-perl-5.34.0.tar.gz.drv /tmp/guix-tests/store/mzllf2r2i5rzjqy79fs13ny8vgn86qpr-bison-3.7.6.tar.xz.drv /tmp/guix-tests/store/k8iplw0kw2dmly8v5lamgplx04ggn15j-linux-libre-5.10.35-gnu.tar.xz.drv /tmp/guix-tests/store/s9pg6r6jza7r5f3m94k7sgwpynwpxwcd-flex-2.6.4.drv /tmp/guix-tests/store/d1zzhllih6bhzvnc80jsm43r9kmflr9z-flex-2.6.4.tar.gz.drv /tmp/guix-tests/store/ffc5rg7wnrjrpzrmbg22h351280xijm6-ld-wrapper-boot0-0.drv /tmp/guix-tests/store/fm6ink06dpxk87bqc6lgxx8ky74ia62x-gcc-10.3.0.drv /tmp/guix-tests/store/7khqqxqxi03q8abfi49crphk30wm65i8-mpc-1.2.1.tar.gz.drv /tmp/guix-tests/store/97d6m61x48g8n8fnrn0pqrhx2209110m-gcc-cross-boot0-wrapped-10.3.0.drv /tmp/guix-tests/store/ah3g5mnihalpr1sccip82sxfrr0vr1pz-gcc-cross-boot0-10.3.0.drv /tmp/guix-tests/store/a4v61rcb2masds25m6i38bk66xn7zgbg-gmp-6.0.0a.tar.xz.drv /tmp/guix-tests/store/xmsm1kzrmrari5chwcil4dgmrq8xjcqf-gmp-6.0.0a.tar.xz.drv /tmp/guix-tests/store/flzxa3z4k5qv55km5gwn4w4b5ncnsmwm-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/ix1j66481xr2xy267qj0b8c36a9yd7g7-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/vasq2n0j43fxvhr1gz3r8h7gfasq8j5r-libstdc++-boot0-4.9.4.drv /tmp/guix-tests/store/4pn6afwyavhi2fwggq250b9dkf4j9lj8-gcc-4.9.4.tar.xz.drv /tmp/guix-tests/store/ciw3b48qvhb5fx35hllb74czfcjp2zn0-gcc-4.9.4.tar.bz2.drv /tmp/guix-tests/store/z4vfg9vv6w1ak3j942b50z7a86f37qn3-mpfr-4.1.0.tar.xz.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/gm3v790gmxrcssw929w1dhinzph12gdy-gettext-boot0-0.19.8.1.drv /tmp/guix-tests/store/lvp6i19y0xxszb921nckl5hy0jwp3dlh-gettext-0.19.8.1.tar.gz.drv /tmp/guix-tests/store/gx0cfkdlx8ani5v80y7rcn25wcsak11j-texinfo-6.7.drv /tmp/guix-tests/store/v1diq15pcscjp1g1nba5difq7i5a8444-texinfo-6.7.tar.xz.drv /tmp/guix-tests/store/hnr0xg3bd3ba4qzrc71br1pywls01z9r-python-minimal-3.5.9.drv /tmp/guix-tests/store/dl06g703krs6wsjh13cil554baifr5v2-expat-2.4.1.drv /tmp/guix-tests/store/gckzpnh0im4a98l1c5r44g3442b20f13-expat-2.4.1.tar.xz.drv /tmp/guix-tests/store/ma9dns8jdkkvy3kvbiv0h6wbac88pi8a-Python-3.5.9.tar.xz.drv /tmp/guix-tests/store/qy27syldpl7c5amch4fx70b79pmxh0fi-Python-3.5.9.tar.xz.drv /tmp/guix-tests/store/j8bhbikxlay3j3q41qw0yl0gay5yrs6w-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/1yl394nf5ndwikn9c48d17fmbxfvcbgk-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/lrl0dhhb4072c0hrs81jl5sgks7a5nh4-bash-static-5.1.8.drv /tmp/guix-tests/store/0s1f5gk80rgqpvjbxf4ayf7vnjw71mxr-bash-5.1.tar.xz.drv /tmp/guix-tests/store/0614ryjqzr489495nq6d99jajmhqjiab-bash51-003.drv /tmp/guix-tests/store/2agrqh7i0sywnfv7f7b9m7mmgvmn8skw-bash51-007.drv /tmp/guix-tests/store/2rs4l6v390s5ybkypvpdikk34bfsb2wi-bash51-008.drv /tmp/guix-tests/store/8cd3hyh9h1dj3cndzrjwg82ry3k9fywr-bash51-004.drv /tmp/guix-tests/store/8cjan671yq08m76d7l0qrfjg5kg0i0f4-bash51-006.drv /tmp/guix-tests/store/90is400r9i58rv532wj0cm1yxyhfsw1k-bash51-002.drv /tmp/guix-tests/store/agfndag1jx1rlxnjzxm3ab4ncyk0ihb9-bash51-001.drv /tmp/guix-tests/store/hain1z6c9v2zgkxm57vabb8qiasgc44r-bash51-005.drv /tmp/guix-tests/store/vpym9p0qg5brhi62jqzjhggar0ika4zc-bash-5.1.tar.gz.drv /tmp/guix-tests/store/36i906s7ib2nj0gzzvw0hfyirrbx5lp7-glibc-intermediate-2.33.drv /tmp/guix-tests/store/7ky23iywrg5winwlpbgj5hl129qx13jw-gcc-cross-boot0-wrapped-10.3.0.drv /tmp/guix-tests/store/36i906s7ib2nj0gzzvw0hfyirrbx5lp7-glibc-intermediate-2.33.drv /tmp/guix-tests/store/d1b92fz4y431r62xsvkqbdd13i93lzfh-zlib-1.2.11.drv /tmp/guix-tests/store/ji48bhh10nv6djiz16a1cljnq08fdck7-zlib-1.2.11.tar.gz.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/fbn7qarm6adak53jg4dz1gy4p064gy9y-binutils-2.37.drv /tmp/guix-tests/store/lrc73gzhggn1l16dlsdj1lv34qsjfan7-libstdc++-10.3.0.drv /tmp/guix-tests/store/r94pzhn6yx0knmnlbn49134yrvwbs29b-ld-wrapper-boot3-0.drv /tmp/guix-tests/store/gkl3anjfh20qqp73mq0hmdknjsqp1zfa-bash-minimal-5.1.8.drv /tmp/guix-tests/store/4lxlikg47slp0mrcd25rlcm6qcii6kqj-libunistring-0.9.10.drv /tmp/guix-tests/store/w9zlnd1lsfx9i24f59im4zfrgr86qyif-libunistring-0.9.10.tar.xz.drv /tmp/guix-tests/store/gc355jps6lvgnhny001hs7zf7k6rbn3m-libffi-3.3.drv /tmp/guix-tests/store/40qj4rc7c1rjhbh4yl21z5qi8md2ialv-libffi-3.3.tar.xz.drv /tmp/guix-tests/store/1km3h7zb41pjrldqgq6gjny5f0aissi0-libffi-3.3.tar.gz.drv /tmp/guix-tests/store/nrn3byjrdgf1c0icybmisrkcn28ypjyx-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/7gnpyf9a1i789jvz9j8cr69jaj0x5p28-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/rcp4r9nkzi1jhb4z8bgmhq0cmqlmgqxa-libgc-8.0.4.drv /tmp/guix-tests/store/ifxf227928p46a44kadh3qwc3xgi7kll-gc-8.0.4.tar.gz.drv /tmp/guix-tests/store/91z5zk9cv2bryzxa94zqpbph3i5x0v0d-gzip-1.10.tar.xz.drv /tmp/guix-tests/store/bmzp76q0a1ihpd044dfjj160wb8fqgs8-grep-3.6.drv /tmp/guix-tests/store/2bxdmf4galrb85yv3gkdhkrcw8jxyidg-grep-3.6.tar.xz.drv /tmp/guix-tests/store/1zk1y70l49d03g9czi6w1pzngc43g212-grep-3.6.tar.xz.drv /tmp/guix-tests/store/dyvkgvsbx1iz19ad4vmjp8f25k70bziw-module-import-compiled.drv /tmp/guix-tests/store/rj6lyl5dpik9kp20q04lbpr1aq6jx466-glibc-utf8-locales-2.33.drv /tmp/guix-tests/store/3xx3dcm5zyfgjkvyal7azvkr13981w4j-module-import-compiled.drv /tmp/guix-tests/store/6623qs8y2ddd3fbgy4fhagkphx28pdq6-gzip-1.10.drv /tmp/guix-tests/store/m0xiw3dznzaaxw8izp2ywc1hc5hd3blj-coreutils-8.32.drv /tmp/guix-tests/store/afbnqhzv3bam6n593027krw63kjlppd0-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/bik73j39d1bb6ksn3x2xdc9h133kiigf-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/2pqyydqw0z0zf2vhdw6xs3wfnbhza0qd-guile-3.0.7.drv /tmp/guix-tests/store/3w6zpyvj10b7yj0zjskixwkxaf49q48w-libunistring-0.9.10.drv /tmp/guix-tests/store/50h57gnjb225z2qzh580zcpqniiz07jb-diffutils-3.8.drv /tmp/guix-tests/store/55n6pa2bks7fk13p12bchw8lpi2sy88m-perl-5.34.0.drv /tmp/guix-tests/store/p0p0ab2zq1p1332h5x07wixh0r7am998-coreutils-minimal-8.32.drv /tmp/guix-tests/store/z2x6zgpv6gzyp12b4a5ikr6n75yws86b-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/6ank9bknb1f95kcvir5v0jnpzxa07ir3-tar-1.34.drv /tmp/guix-tests/store/vgkjb9gr1mc39k5c46arbjbks15b35cj-tar-1.34.tar.xz.drv /tmp/guix-tests/store/bnnng57rswby8xhvzy9vjwmwh1xc80m1-tar-1.34.tar.xz.drv /tmp/guix-tests/store/cj7y0ngqdj3r2yx6grcqb1ppkgpyb8b8-bzip2-1.0.8.drv /tmp/guix-tests/store/5dpcig3kzm5vrskw80977ifgblkcffwr-bzip2-1.0.8.tar.gz.drv /tmp/guix-tests/store/dpgm59v7m8p8hi1ci2jv43a84l67qlqa-file-5.39.drv /tmp/guix-tests/store/g3vzcjpysp0hcl7wnwjykpi3ps1fgjyk-make-4.3.drv /tmp/guix-tests/store/9mk3x98kxqdz034rj1rmilij0grz3kc7-pkg-config-0.29.2.drv /tmp/guix-tests/store/g6hrlky5sy7nz3kg0whxq44xfpc6r8z8-patch-2.7.6.drv /tmp/guix-tests/store/600hnwvm1w09da6mrjfdvqkl0ld96gg7-ed-1.17.drv /tmp/guix-tests/store/5z89n7v0b8mnswpaiw3j9anva591lbva-ed-1.17.tar.lz.drv /tmp/guix-tests/store/6zfa9zfpig9kxc1ciaxhxlif7rj96h6k-lzip-1.22.drv /tmp/guix-tests/store/i2a9klhfkfyfrqfsqbmyy60mdgbxjb34-lzip-1.22.tar.gz.drv /tmp/guix-tests/store/a7b5882ma5bii2isrc81wad9qig922m9-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/h9837470b7xbdc5045rfq4q8p50pnayr-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/jqlmsrpnnww1qq08n9dm8wnk4y2jcl8f-findutils-4.8.0.drv /tmp/guix-tests/store/p62d7v83mfzh9q2gr238iw1iwzaa54bb-gawk-5.1.0.drv /tmp/guix-tests/store/jnl5s25mlvhhx7513mf7wxnjf9k12bwb-gawk-5.1.0.tar.xz.drv /tmp/guix-tests/store/lddc2s21apl8jzayr0qh8z4jv37qzgk6-libsigsegv-2.13.drv /tmp/guix-tests/store/p7ch1zpda76ng44lcylkmvkqj9p6rrbj-libsigsegv-2.13.tar.gz.drv /tmp/guix-tests/store/xdjpbx97b8xwxv0y5f3vbj269512m5za-sed-4.8.drv /tmp/guix-tests/store/a8fn7nd882wxpcxmfmlhdy9nn3hxq3h5-sed-4.8.tar.xz.drv /tmp/guix-tests/store/6a35xdllgbxwfk369rmz03qqh76m1i83-sed-4.8.tar.gz.drv /tmp/guix-tests/store/zirq8ypbjch79fc9xrkpm0d6lbb9im9q-ld-wrapper-0.drv /tmp/guix-tests/store/zvam0j9fwpnd11c43lawwamw1fxhdq8z-xz-5.2.5.drv /tmp/guix-tests/store/c2p3ba4bkm2ddllr61lf83ksy2ji326g-xz-5.2.5.tar.gz.drv /tmp/guix-tests/store/8k44mfp0hsvy3q4yxfrb0m6495zjf7dp-pkg-config-0.29.2.drv /tmp/guix-tests/store/azrmgrz2mshmic3hmiwmbl81x6v719d0-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/c7dmh3kaihk8n1ya0b4bqdmgmjjzyham-libgc-8.0.4.drv /tmp/guix-tests/store/k9jkyk4qwbcwh9nd9yvhghgkmpz8wrg5-libffi-3.3.drv /tmp/guix-tests/store/94iz0h14l7wvg9m7kwv9sycs0bq1khnb-libffi-3.3.tar.xz.drv /tmp/guix-tests/store/pgvp468v34dplcwzcw4km0j03wj73lz6-bash-minimal-5.1.8.drv /tmp/guix-tests/store/fshyvm6adcq7hw62v89zisypdl5ilxd9-bash-5.1.tar.xz.drv /tmp/guix-tests/store/8l20rv7jrwmb0lbrljj1q16dlqr5gsb0-libgpg-error-1.42.drv /tmp/guix-tests/store/k1wvwaxbn0zxdkn42ipghkjk3ralg5db-libgpg-error-1.42.tar.bz2.drv /tmp/guix-tests/store/lyb9a6nkfl8g0bgyjnn239w8ikrjjgib-gettext-minimal-0.21.drv /tmp/guix-tests/store/3hdq83yb29ijw91bqijzx896y06a11m5-gettext-0.21.tar.gz.drv /tmp/guix-tests/store/8jiqwcn2fxs6zjp71pr4iz0l7kq62jgi-zlib-1.2.11.drv /tmp/guix-tests/store/hizh2pv4afqhci3fspmnwkl24qvz7mmf-libxml2-2.9.12.drv /tmp/guix-tests/store/20icgpa30z6rlkbqwn141p9pbi14n37m-libxml2-2.9.12.tar.xz.drv /tmp/guix-tests/store/7rpjscyfv3gwj8fwc39xhymq0qxrngrh-libxml2-2.9.12.tar.gz.drv /tmp/guix-tests/store/fy16mi1xm2vmbhj017ggfxg4a0h77nim-xz-5.2.5.drv /tmp/guix-tests/store/hwppn7f1mws18zsk2n53klrwlpmlr124-perl-5.34.0.drv /tmp/guix-tests/store/gqx7l2gzp88gif0az3dqg0r3wl0yij3w-coreutils-minimal-8.32.drv /tmp/guix-tests/store/jcn6z8hnhyls6g48hk8y5x5kzhliv6d5-coreutils-8.32.tar.xz.drv /tmp/guix-tests/store/wb6kx05hi2a99pbcac0i6yd176sll04i-perl-5.34.0.tar.xz.drv /tmp/guix-tests/store/wc435c6jb85m8f3xmcz5avwnqza1id91-ncurses-6.2.20210619.drv /tmp/guix-tests/store/3dgf4kwi1nvcy95nn020di0klkjg9s19-ncurses-6.2.tar.gz.drv /tmp/guix-tests/store/rzh9fakqivjd02wpx26wis4dh5mhmjjr-ncurses-6.2-20210619-patch.sh.bz2.drv /tmp/guix-tests/store/bha2smigk61y51cl0brvr1ds6wiscrik-texinfo-6.7.drv /tmp/guix-tests/store/kjfzhznvhq6ygrqn76zwxpnyq746n3az-libgcrypt-1.8.8.drv /tmp/guix-tests/store/0272fnn9cjcp9lkv586jsim8qq7aq8if-libgcrypt-1.8.8.tar.bz2.drv /tmp/guix-tests/store/lcfbv652p20b6rcm3w61z1dg3bi4z94q-guile-gcrypt-0.3.0-checkout.drv /tmp/guix-tests/store/11jcipdfmlnygkksr489gq0420lsnq7p-guile-zlib-0.1.0.drv /tmp/guix-tests/store/pnhz6swwip33aa2pzp16jqjb6p1nvcaa-automake-1.16.3.drv /tmp/guix-tests/store/pwnhk4lmjcb626qj1d9l4zhi87gfns5p-autoconf-wrapper-2.69.drv /tmp/guix-tests/store/dwpdx1cxzk3yxxlxzpxl7ykj3hsqx6ky-autoconf-2.69.tar.xz.drv /tmp/guix-tests/store/pl3xwmvlg60isx6aq8gn52h7jamq0c07-m4-1.4.18.drv /tmp/guix-tests/store/xjsp9pbxvr0hwpi5ykzlz1kinkjcxybb-m4-1.4.18.tar.xz.drv /tmp/guix-tests/store/ry30lchbhfr56ddqxblgdy37ab7irxnj-autoconf-2.69.drv /tmp/guix-tests/store/qry2r79hhzyl31nr6ry1pqs4b86ykv09-automake-1.16.3.tar.xz.drv /tmp/guix-tests/store/9mhn9vqx0x9smnqkgd609mrh9r3m8w38-automake-1.16.3.tar.xz.drv /tmp/guix-tests/store/xhx26v8vkr3arnw630z4hjrsf2hzymq3-guile-zlib-0.1.0.tar.gz.drv /tmp/guix-tests/store/1nxdsds0mhd1lbgiar5qrd1yf2fpz4an-gnutls-3.7.2.drv /tmp/guix-tests/store/23j6x323q3rc4nqvapmw41h5p22vcxrk-which-2.21.drv /tmp/guix-tests/store/1nvf74rjkzjxp59kcck0wgjbdfn0vfs3-which-2.21.tar.gz.drv /tmp/guix-tests/store/3wrg5lcgzysjr5srqdfsl61svva1k3ks-gnutls-3.7.2.tar.xz.drv /tmp/guix-tests/store/rn6k3anl07fkgpsqgz9r478vw5dmdy81-gnutls-3.7.2.tar.xz.drv /tmp/guix-tests/store/bwdfif6x0805bv262gcg26yj0i8pmahc-libidn2-2.3.1.drv /tmp/guix-tests/store/g1gf7w2l8jqi2fvakfla7wsi30idhs1x-libidn2-2.3.1.tar.gz.drv /tmp/guix-tests/store/hnilzisybg688ddgizx3w5d63w8qs05g-gmp-6.2.1.drv /tmp/guix-tests/store/wwlwl85r9hg1cknaw9wjagp2qgqy62mm-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/y5m24mds14ncjlrwldfng8xkmmjhjj3h-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/k3sxxnpd3rpxb6c2idc1k4wj3ll1cyq8-nettle-3.7.3.drv /tmp/guix-tests/store/ash166sr7hzjjfh3kc8qrg8j9zd3bxac-nettle-3.7.3.tar.gz.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/3y8z12v0g2ai2hr9rfwlrvm25dxz3bm4-util-linux-2.37.1.tar.xz.drv /tmp/guix-tests/store/ksjqykwy7gykgdpjyc01bdh2fg3mmblr-util-linux-2.37.1.tar.xz.drv /tmp/guix-tests/store/h8828pl50ix2h5p87vykbqak1v9zq4rm-file-5.39.drv /tmp/guix-tests/store/z131mia9hl1qclyhsfyhh9jxm04c9gcf-net-base-5.3.drv /tmp/guix-tests/store/1b9jlbrqhjl1f6lmhb24h7v88jrsr0xi-netbase_5.3.tar.xz.drv /tmp/guix-tests/store/bd7scd6k3x51i3y9r7gbajqhd4a8jq7y-tar-1.34.drv /tmp/guix-tests/store/3hbcvhf4yl83hy918rv05rfq0yg16grv-tar-1.34.tar.xz.drv /tmp/guix-tests/store/nljx6lmvcpmvhysmykn7p34gbsisri10-socat-1.7.4.1.drv /tmp/guix-tests/store/npdcrdnmz4xc181ndn4lz5qy36ai2l5v-openssl-1.1.1l.drv /tmp/guix-tests/store/w49g2dpvf7ryrifm52gyv43mjm9gmadq-openssl-1.1.1l.tar.xz.drv /tmp/guix-tests/store/9cyf1qifhj2h699r562q4lflx66bqvws-openssl-1.1.1l.tar.gz.drv /tmp/guix-tests/store/rkfa70mbh893zvvgzkw7fxjskj27n5cm-socat-1.7.4.1.tar.bz2.drv /tmp/guix-tests/store/rhd80g918d5ig6z136wn6r809s4qp5wk-datefudge-1.23.drv /tmp/guix-tests/store/0yzp4sn3iddyjjszlxffd9n227yvms7z-datefudge_1.23.tar.xz.drv /tmp/guix-tests/store/dwcd2jc7jfnyl8kg4k0hs9722pilczjw-datefudge_1.23.tar.xz.drv /tmp/guix-tests/store/s4gbsg874c932hy6kvxzpv0khfc9ih5p-p11-kit-0.23.22.drv /tmp/guix-tests/store/8jmsds3s0j33mkr6wjni6ywzr0cribzd-p11-kit-0.23.22.tar.xz.drv /tmp/guix-tests/store/sxxpsj6q99zhxxzabqhc4nrk8ri05z55-libtasn1-4.17.0.drv /tmp/guix-tests/store/rbf07kjifkgxbs2dyns6k9qp00i9mm84-libtasn1-4.17.0.tar.gz.drv /tmp/guix-tests/store/vcyfmww6m86bh1hbbkf9c1s1mfcbdbl6-net-tools-1.60-0.479bb4a.drv /tmp/guix-tests/store/09k8xbs5m1d5b5i4xbr5xv4833ps0yyf-net-tools-1.60-0.479bb4a.zip.drv /tmp/guix-tests/store/amyqdn43835z8n4nr7mnm2v8438bfkrg-unzip-6.0.drv /tmp/guix-tests/store/5sfchzcg8c9jdly24h3hspbddfcxrgmv-unzip60.tar.xz.drv /tmp/guix-tests/store/g1laxgrn8h1zyrjy9gd9901sjzx69b33-unzip60.tar.gz.drv /tmp/guix-tests/store/hplrcllrlfjklmp6wi4pxq482gnvbqmi-bzip2-1.0.8.drv /tmp/guix-tests/store/wdmrfjybsq9nb2v1zagr9nc0gc2amxwf-iproute2-5.15.0.drv /tmp/guix-tests/store/3gzp4wxrxblp5z27kmknjqccg9zwvcan-iptables-1.8.7.drv /tmp/guix-tests/store/3dr5pwp604s695mx7zyzyygm5nfj3kl3-libnftnl-1.2.0.drv /tmp/guix-tests/store/hqadr2qrs8aj4w2cb8bhg49zgndw4vpa-libmnl-1.0.4.drv /tmp/guix-tests/store/zcxykwwyg4hd3a6g18g5hh27gsjmivkx-libmnl-1.0.4.tar.bz2.drv /tmp/guix-tests/store/y46dhypls1ygjnsskm9xm9gz1n6k9y4r-libnftnl-1.2.0.tar.bz2.drv /tmp/guix-tests/store/7vpjgw85wsraa2a7bp7ln5ilcdk3sbvx-bison-3.7.6.drv /tmp/guix-tests/store/90an45ybmxxdk2j5j9fv0ji8q7iyyiav-flex-2.6.4.drv /tmp/guix-tests/store/g6msfm26i8b5h396504c8110yibnh7l8-help2man-1.48.3.drv /tmp/guix-tests/store/0d6iv542mz1li1lai6v0dc6pzikq5b8r-help2man-1.48.3.tar.xz.drv /tmp/guix-tests/store/7xam65p8mwva5k7xf7fi931600x5qi93-perl-gettext-1.07.drv /tmp/guix-tests/store/468lblrdf3cv2w8a3j3r48blb7vb1ymk-gettext-1.07.tar.gz.drv /tmp/guix-tests/store/5bb0bvrqz67ijc9ihw938dlb0rrh0srw-module-import-compiled.drv /tmp/guix-tests/store/yzyjm7g0zaa5gzfqyyg2r4nqib0nj27f-bison-3.7.6.drv /tmp/guix-tests/store/znp4jcsv6rjw93am0db8c2smkaywj1ni-iptables-1.8.7.tar.bz2.drv /tmp/guix-tests/store/idxr9ffaks89mrbx1yjly4ibwhif0i0x-iproute2-5.15.0.tar.xz.drv /tmp/guix-tests/store/r754ad1aprcp89353a6qjakps2walryc-bdb-6.2.32.drv /tmp/guix-tests/store/h1wymwl4qwbcapsidm5zzglkhyq0cfpr-db-6.2.32.tar.gz.drv /tmp/guix-tests/store/f6lajahpqi1dd9crj60g1mbkik0yaamz-git-minimal-2.34.0.drv /tmp/guix-tests/store/14ri30vi1hxr0rsjv8pypbgvc4fvkvya-curl-7.79.1.drv /tmp/guix-tests/store/1nxdsds0mhd1lbgiar5qrd1yf2fpz4an-gnutls-3.7.2.drv /tmp/guix-tests/store/6va9q19n8h6j6h1cn9pkb8dwm9f0wvrk-mit-krb5-1.19.2.drv /tmp/guix-tests/store/ji5s8y4cw4nbf83h85h9lzs1fz1ljb0y-krb5-1.19.2.tar.xz.drv /tmp/guix-tests/store/mzyfxingdk4xvk4z37fsbk1192sdmf4w-krb5-1.19.2.tar.gz.drv /tmp/guix-tests/store/v7y9lvr7ca443v56c3rxvgm1rgwp81ci-tcl-8.6.11.drv /tmp/guix-tests/store/s1g0w4mmh61sjiwhby8xc5hd8jnx46xy-tcl8.6.11-src.tar.gz.drv /tmp/guix-tests/store/8hkyk814a2042g5cbmaz8d37kg6158bf-curl-7.79.1.tar.xz.drv /tmp/guix-tests/store/rr2517yxgyayknjyfv70j79m9k4gfn7d-curl-7.79.1.tar.xz.drv /tmp/guix-tests/store/8ngxgsybz3sfw773wj43v9hfdi8gk1m6-python-minimal-3.9.6.drv /tmp/guix-tests/store/19cjj4qn5nplk3x2sfammqpg9hlf9sbr-Python-3.9.6.tar.xz.drv /tmp/guix-tests/store/iria8q3qidpz2bjm49v2winn3vjxypp8-Python-3.9.6.tar.xz.drv /tmp/guix-tests/store/c9lcckp47bak9j8ksxjc6lac7fhlqi8r-zip-3.0.drv /tmp/guix-tests/store/ywkmbnkp6n7jpqx1j1q80lha47ivmr3a-zip30.tar.gz.drv /tmp/guix-tests/store/kkly0bjdn3vckm8daniz6y9jrs42idz0-expat-2.4.1.drv /tmp/guix-tests/store/lxp25j1rqh9g4akh9ya7ck8vhaiz0q8k-tzdata-2021e.drv /tmp/guix-tests/store/g6ssndxfwf9f2584zdyvd85hkxxhgs02-tzdata2021e.tar.gz.drv /tmp/guix-tests/store/yyajwl02cfrwaprvxxbn96wy6nzzgv6j-tzcode2021e.tar.gz.drv /tmp/guix-tests/store/jjzdbgvha4lxmxgihvm0iyj8hmkr9cap-nghttp2-1.44.0.drv /tmp/guix-tests/store/3qchlvj4csg1nd06ya59lxj5r5qq7bda-nghttp2-1.44.0.tar.xz.drv /tmp/guix-tests/store/4y27gha09kld75zshnmyia57xmq9mjjs-cunit-2.1-3.drv /tmp/guix-tests/store/fks2jq3fqflm3n0fvyrkcr3g4r1kb56z-libtool-2.4.6.drv /tmp/guix-tests/store/bphi7f415ca2fksfcjnixy661321llxb-libltdl-2.4.6.drv /tmp/guix-tests/store/r6d7n4ilf0f7cfaxyyikjcpmvjmcir5r-libtool-2.4.6.tar.xz.drv /tmp/guix-tests/store/r4rjin6gzz0bcaiwmsb2hvgcjq7hmag8-libtool-2.4.6.tar.xz.drv /tmp/guix-tests/store/s98b1fzvmhdziamv2858fz9k6g69xgzb-CUnit-2.1-3.tar.bz2.drv /tmp/guix-tests/store/60z6gh840cqa4lrnzfwx0iw2xnrqghph-jansson-2.13.1.drv /tmp/guix-tests/store/36fdhi8is3d52wcqpjk7sr7xh79xvb10-jansson-2.13.1.tar.bz2.drv /tmp/guix-tests/store/bwd5pzh2j9xqi7k5nndj52a78y0sq61a-python-3.9.6.drv /tmp/guix-tests/store/12ai3gxrj1m3ij8gv22sb5dgcpv3ng20-util-macros-1.19.3.drv /tmp/guix-tests/store/z4z0ha93rk5m4x9grynk62p7j054kry1-util-macros-1.19.3.tar.bz2.drv /tmp/guix-tests/store/1s6xwrs17i1nl62vabiz3gbgf3ljld88-readline-8.1.1.drv /tmp/guix-tests/store/ckb9nzpjh8qcrxi0izalc673a372zxsj-readline-8.1.tar.xz.drv /tmp/guix-tests/store/4zjjf1h3imnzd43nzbr29ws926chi6gy-readline-8.1.tar.gz.drv /tmp/guix-tests/store/pgz10hw4hia626xbjlyhzir277nw2934-readline81-001.drv /tmp/guix-tests/store/6d8ybzkz8rm5vcl79664443pqpa2hf2x-libxdmcp-1.1.3.drv /tmp/guix-tests/store/fkm1lq1yjjyi0g04qpp94c2g9z6zfq6v-xorgproto-2021.5.drv /tmp/guix-tests/store/gfn93s2dy2z4rqrbpmj3pz8gwfaf4wkd-xorgproto-2021.5.tar.bz2.drv /tmp/guix-tests/store/j63dxva124aj5n41h0g0g3h62wwdl04q-libbsd-0.10.0.drv /tmp/guix-tests/store/4qamifn14izjih5n74kaym42g0gbh1x3-libbsd-0.10.0.tar.xz.drv /tmp/guix-tests/store/jqgv2x635lvd45lkgizn8ww88mm38pkl-libXdmcp-1.1.3.tar.bz2.drv /tmp/guix-tests/store/b2axffmpy7xpra7ad1q05j47nvr1wvk4-libx11-1.7.2.drv /tmp/guix-tests/store/8kr3mbm12vs5h453w43mbv24qh2i369z-libX11-1.7.2.tar.bz2.drv /tmp/guix-tests/store/l1vjnxwvn0n2pj717i8ankxgqr37qjaq-libxcb-1.14.drv /tmp/guix-tests/store/1sv0g93b0fpbsqm91qrd8rzsi4ghprg1-libxcb-1.14.tar.xz.drv /tmp/guix-tests/store/ggdnn1b7zfnixx3y8p7pa5f7rrslgil0-xcb-proto-1.14.drv /tmp/guix-tests/store/4g0ciqbdh73xkcx6iyzvxx458fy72vj6-xcb-proto-1.14.tar.xz.drv /tmp/guix-tests/store/nicc7434l857m6pn1nldrl1iycvfa6z2-xcb-proto-1.14.tar.xz.drv /tmp/guix-tests/store/w0q72700i2v48ik05jaak38g4n1340pk-python-minimal-wrapper-3.9.6.drv /tmp/guix-tests/store/xdk1lfrcd51g7i2i7lkmbyjpyzipc2zm-bash-5.1.8.drv /tmp/guix-tests/store/vkixsak7qv5jsim76sa7zkq0sjm8ffv0-libpthread-stubs-0.4.drv /tmp/guix-tests/store/hwdxl7fny9sh7034hfkcxjma8pcy107n-libpthread-stubs-0.4.tar.bz2.drv /tmp/guix-tests/store/w0dwmy34rs10n7rh100j3c1v7fdk1q95-libxau-1.0.9.drv /tmp/guix-tests/store/5fdjjbsmgaf73lmfbwp1syzi9dpfj4ki-libXau-1.0.9.tar.bz2.drv /tmp/guix-tests/store/z4scfly9fws2q3k097x2fiyml2xjms6q-libxslt-1.1.34.drv /tmp/guix-tests/store/0fgn8iqagrz9d8hzakkjbcfyh95l7mm7-libxslt-1.1.34.tar.xz.drv /tmp/guix-tests/store/1da1kh5yvmxq3kspiqgsfdnrnqrh17qi-libxslt-1.1.34.tar.gz.drv /tmp/guix-tests/store/m79hnhjw3i1y99xwf7rg771xhf99hdvy-xtrans-1.4.0.drv /tmp/guix-tests/store/8jwhbqwafy7haqjkk15bmx8cg1ybyhp7-xtrans-1.4.0.tar.bz2.drv /tmp/guix-tests/store/di8hlsnfacip72sxzhi8k8fd0pzrv7zk-gdbm-1.20.drv /tmp/guix-tests/store/7yjcgjpgnh7szk10rdki8wqpnvnzhs8b-gdbm-1.20.tar.gz.drv /tmp/guix-tests/store/psxi5c3yvv4xm3mif8ddaswmjp0wbk28-sqlite-3.36.0.drv /tmp/guix-tests/store/zf5y36j726cfri6m6c7951hw0i499rrz-sqlite-autoconf-3360000.tar.xz.drv /tmp/guix-tests/store/a84rbsxnyx15jdg82xdn164qa96dnn9k-sqlite-autoconf-3360000.tar.gz.drv /tmp/guix-tests/store/pxrv528rakvqw4sjjlb0wmnvjyia39w9-libxext-1.3.4.drv /tmp/guix-tests/store/73whp8srb8nr5c5zn11xrrq0nl0sa1wh-libXext-1.3.4.tar.bz2.drv /tmp/guix-tests/store/xmb8zw25ydf9qncq91waj3c4hpdnbsjh-tk-8.6.11.1.drv /tmp/guix-tests/store/1kk2vqp36s9d5594hbd40f2pbzls7xnz-tk8.6.11.1-src.tar.xz.drv /tmp/guix-tests/store/8dnfigpzdy1hdhfa46gix97zfnvn2lv7-tk8.6.11.1-src.tar.gz.drv /tmp/guix-tests/store/2lbg1pwja5lnn0jd69pr7rqc1wf73mn4-libxft-2.3.3.drv /tmp/guix-tests/store/a42jslaiw3n7pbr73f9nqx5jga5lny9b-libXft-2.3.3.tar.bz2.drv /tmp/guix-tests/store/g1cg0xh5ii9mc9zwxf0ahlfj74zr9r5x-fontconfig-minimal-2.13.94.drv /tmp/guix-tests/store/b081xw509nqg9jchl062lllxsp3gixwf-font-dejavu-2.37.drv /tmp/guix-tests/store/0dm5a4akpbvz5adfck7z5n71k3grnq6h-dejavu-fonts-ttf-2.37.tar.bz2.drv /tmp/guix-tests/store/bw6h4j46crzwmw15xq1mj4fg2hwym9xi-module-import-compiled.drv /tmp/guix-tests/store/kwcb79jcnimag8dsp16p0xyivpz4yf9c-gzip-1.10.drv /tmp/guix-tests/store/gnn656w5ai6h3y71lzq6aflc69p5b8si-freetype-2.10.4.drv /tmp/guix-tests/store/913xvnkyjyr9wpy5yyq4ald01vynvxj2-freetype-2.10.4.tar.xz.drv /tmp/guix-tests/store/p218ymga1ixpjhqvkkwx5jr74ln7qcy7-libpng-1.6.37.drv /tmp/guix-tests/store/ds8l06mgv1llghrqqydj8v244ck0gss0-libpng-1.6.37.tar.xz.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/nh1kzsk0kaip51ys6yigh7za0b4n0abc-fontconfig-2.13.94.tar.xz.drv /tmp/guix-tests/store/3hzm9r3k2gzfinka6m0vfn3ny7fk734i-fontconfig-2.13.94.tar.xz.drv /tmp/guix-tests/store/w537jrzzh9517wcnq8dg4hkcf31yfri6-gperf-3.1.drv /tmp/guix-tests/store/avqyx04y2by5q8sh0bn658dm8l2gbf3i-gperf-3.1.tar.gz.drv /tmp/guix-tests/store/y567js4v5n504frabyip2lfbs3d8c9s9-libxrender-0.9.10.drv /tmp/guix-tests/store/aajf4cc26g4y84h7kzgmsxqz8pkvyica-libXrender-0.9.10.tar.bz2.drv /tmp/guix-tests/store/hmz6j0m3l356zwf5qhii500fgbxsl0vd-c-ares-1.17.2.drv /tmp/guix-tests/store/95p5v1wqiih9i1jwnrsc8vzvhjdxl8lk-c-ares-1.17.2.tar.gz.drv /tmp/guix-tests/store/irmq4qan6pd9irm70xalv20ygb1n7vqm-jemalloc-5.2.1.drv /tmp/guix-tests/store/b90sxmfg5bn0qmb6kz9vs2lxy12pq4f6-jemalloc-5.2.1.tar.bz2.drv /tmp/guix-tests/store/kgvidm7g4c95ayvyb9hidjqbrlwq2210-libev-4.33.drv /tmp/guix-tests/store/j9hk17nyqdv3pj81nsa77njxl3pr9jjj-libev-4.33.tar.gz.drv /tmp/guix-tests/store/kyc7hx0zj21kry7mxj8ks6sid1apvl6x-libidn-1.37.drv /tmp/guix-tests/store/6jcak9dw49dz4dl84206wzgr4n09vnk0-libidn-1.37.tar.gz.drv /tmp/guix-tests/store/gnj35c1cx3d65n0nffwb0vjskp8znxj1-git-2.34.0.tar.xz.drv /tmp/guix-tests/store/w3al8qd0l6y6h5ji67ampfck8qf25biy-guile-json-4.5.2.drv /tmp/guix-tests/store/2jsvq6g3mm0zd2bfysm3d5x0l9qignqh-guile-json-4.5.2.tar.gz.drv /tmp/guix-tests/store/zczss9jzfvg6w3218pyxf9rp3rc5p53k-module-import-compiled.drv /tmp/guix-tests/store/2q0vizlrfigfym166gjsxcm2v6zmjpzg-module-import.drv /tmp/guix-tests/store/8x5s2m9sqdk6sppr4382b93ygsbaijbw-config.scm.drv /tmp/guix-tests/store/40mp2k0naxpiapiq8dz8pzkhxcvvzx65-findutils-4.8.0.drv /tmp/guix-tests/store/kwlld6yi8abb567a1s52z11ravaiz3yn-findutils-4.8.0.tar.xz.drv /tmp/guix-tests/store/73yf2hpc6ck1ii1prqpby4zcfbi4szgy-u-boot-am335x-boneblack-2021.10.drv /tmp/guix-tests/store/00869marixcrqj5axm0bm3by8nxh1pd9-swig-4.0.2.drv /tmp/guix-tests/store/64vl8sv5q10x0wx5qz2yr1a966grs27k-boost-1.77.0.drv /tmp/guix-tests/store/6wf8ybg4ad5ndbsykaffzyrifh4rjxj6-boost_1_77_0.tar.bz2.drv /tmp/guix-tests/store/ahxbd7r4pwpz7plklqq9jr1rk48xv3zl-tcsh-6.22.03.drv /tmp/guix-tests/store/glxl883f74gazyldc9rjzqcnh1qgb1xk-tcsh-6.22.03.tar.xz.drv /tmp/guix-tests/store/5ggczxi2i04vd81yh42v7sg0lr0bv5fs-tcsh-6.22.03.tar.gz.drv /tmp/guix-tests/store/j4rdkmgmv5gf07mh13q2p8sizfqi0zcx-module-import-compiled.drv /tmp/guix-tests/store/mwgh318v1ma3idnj3l4vsbn71yh9rkhx-icu4c-69.1.drv /tmp/guix-tests/store/97bz00wrbbwn79skw5m5a22qz7hwrrlg-icu4c-69_1-src.tgz.drv /tmp/guix-tests/store/sdw1p14wrcjqjz0r3jmsywy0lh3nms0r-swig-4.0.2.tar.gz.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/hvih1zpzxk0mj9qpfwh02cxn0cn9zwj9-pcre-8.45.tar.bz2.drv /tmp/guix-tests/store/07n9ps8hpmbkbhwsbmkd6jk8jx9j5mqj-bc-1.07.1.drv /tmp/guix-tests/store/0yaz8903406bdjggf3qci4xfl3v9v1vw-ed-1.17.drv /tmp/guix-tests/store/11vvvvwwd3ssyla9jjsy0kal6jsg2kg1-lzip-1.22.drv /tmp/guix-tests/store/4w46qd2mgv12i9xrp7rrknsgx9xgvgzy-bc-1.07.1.tar.xz.drv /tmp/guix-tests/store/b3js201yr9f5iqs9frwq49hrlrbap0ja-bc-1.07.1.tar.gz.drv /tmp/guix-tests/store/0q6iqj1f05l9sv4nf99lgsl0jwh504zq-binutils-cross-arm-linux-gnueabihf-2.37.drv /tmp/guix-tests/store/crs3pvci2zd1dcgn3q42x4s7phz5pxf9-binutils-2.37.tar.xz.drv /tmp/guix-tests/store/1d43ppzhvv8ss51649knyyqqiy50zl0m-python-pyparsing-2.4.7.drv /tmp/guix-tests/store/2mjimlk8rz6yb79r9qbb3v2f232m9qkc-pyparsing-2.4.7.tar.gz.drv /tmp/guix-tests/store/cm8zp3pqpg7c94yhpzfmkrmhhsny6ykl-python-wrapper-3.9.6.drv /tmp/guix-tests/store/4im9x2mbmjl1cn21s7l9kl29kn5wmw0j-python-six-bootstrap-1.16.0.drv /tmp/guix-tests/store/fz8jx0fx1i03ax2sf3c33r9y069ixahm-six-1.16.0.tar.gz.drv /tmp/guix-tests/store/5p0bvvky448923k7fylsdzgsv8fdppww-python-py-1.10.0.drv /tmp/guix-tests/store/cvhnybips1n2cy2yaw0yfhy1ar4lqphv-py-1.10.0.tar.gz.drv /tmp/guix-tests/store/mqg9wwykz0dmqjmm6zdh9wp5iqg9x9yw-python-setuptools-scm-6.3.2.drv /tmp/guix-tests/store/pirnb59cw9wr18ar7h2d195zhr74l3sy-setuptools_scm-6.3.2.tar.gz.drv /tmp/guix-tests/store/sklgjna5vkzr1kd9rp8czvnd3yvqlqhr-python-tomli-1.2.2.drv /tmp/guix-tests/store/72ikfq0yinwmnhiyxjwcgvzp5bwq78zn-python-flit-core-3.4.0.drv /tmp/guix-tests/store/v5qfxqkfbigl8ls0jpiki8jjzsj0fwql-flit-3.4.0.tar.gz.drv /tmp/guix-tests/store/yqplrl93igh8b2j8l3lcgkmqky2rddna-python-toml-0.10.2.drv /tmp/guix-tests/store/vgq2xxs4ami7pwd2r00f9jqzhd2a2l4r-toml-0.10.2.tar.gz.drv /tmp/guix-tests/store/c66fzdc43r5gnxm5cw2cs51swhyq3imj-python-pypa-build-0.7.0.drv /tmp/guix-tests/store/jams5qd3hs82bjqa55x7r2wqzglgcyjz-build-0.7.0.tar.gz.drv /tmp/guix-tests/store/sbn7vfhnjf0dv6vw732k2vkwf9yvjjqs-python-pep517-bootstrap-0.9.1.drv /tmp/guix-tests/store/w0cz8xk3pf2nzgibfdf3i3i3yb20hcy6-pep517-0.9.1.tar.gz.drv /tmp/guix-tests/store/w2a8nw7lpi8jv4hbp1pa0xb9gv94c56f-python-wheel-0.33.6.drv /tmp/guix-tests/store/ghnsg29srfi8xhjzq069a667zb883cfc-wheel-0.33.6.tar.gz.drv /tmp/guix-tests/store/w893c4ik91b1a8lkziqnm18i6kgbvx5d-python-packaging-bootstrap-20.0.drv /tmp/guix-tests/store/qxvrgxg6q9smn6z8nlrqrwnif93x9pww-packaging-20.0.tar.xz.drv /tmp/guix-tests/store/13xp6id4887qq28b6sc6h9wzhlkbksc8-packaging-20.0.tar.gz.drv /tmp/guix-tests/store/rla4c0kgqjcm16l79hqc54hxscai5n7k-tomli-1.2.2.tar.gz.drv /tmp/guix-tests/store/7ln83xypzs1vl81qli6m5psqyndblllg-python-coverage-5.2.1.drv /tmp/guix-tests/store/dvcqm0016nbby836mhj99s0d34ngbyak-coverage-5.2.1.tar.gz.drv /tmp/guix-tests/store/83x000x8nqk95j7xcxiswn62fzq1l8g0-python-attrs-bootstrap-21.2.0.drv /tmp/guix-tests/store/73jn0glzgd211jicb55dfp81m55k255w-attrs-21.2.0.tar.gz.drv /tmp/guix-tests/store/9hjylqx90b24zc48i1rs87fn1laxcbaq-lz4-1.9.3.drv /tmp/guix-tests/store/5kyr84znk1llqw0hk0wfgq6pv94c90ys-valgrind-3.17.0.drv /tmp/guix-tests/store/s7njaa84r894m76jfq3gvv4k7iav4j5r-valgrind-3.17.0.tar.xz.drv /tmp/guix-tests/store/nkxjl1qkpnhh6wg6zklyf59qjk6cpx7d-valgrind-3.17.0.tar.bz2.drv /tmp/guix-tests/store/ncjw157s7k071ih8r48gvf5qjkq4skpk-lz4-1.9.3-checkout.drv /tmp/guix-tests/store/fl2nwddxvck92m1r34azkwx6bppvqqqm-python-pycryptodomex-3.11.0.drv /tmp/guix-tests/store/0ikzbggbxsxnaw0anr2pd4c210d47sar-libtommath-1.2.0.drv /tmp/guix-tests/store/qsd4vs0qswgs6hh9rkfya7cx9qgjli0j-ltm-1.2.0.tar.xz.drv /tmp/guix-tests/store/25wwj0icd11m5wqnyfhyj1vbn081rw8z-pycryptodomex-3.11.0.tar.xz.drv /tmp/guix-tests/store/d206cwib577j0ckp9g5mhlscw2ira2jn-pycryptodomex-3.11.0.tar.gz.drv /tmp/guix-tests/store/immfvxjj20npmmz66j28i8m5nj94kabb-libtomcrypt-1.18.2.drv /tmp/guix-tests/store/c2dfzxrzczcmw5ijdvpgqzcnszczkr4q-crypt-1.18.2.tar.xz.drv /tmp/guix-tests/store/62p8g0kf19vmhibzjddyvjg68r4079y8-crypt-1.18.2.tar.xz.drv /tmp/guix-tests/store/jknvfj1msw0c1qs0d3day2zc5244jsbq-python-more-itertools-8.2.0.drv /tmp/guix-tests/store/clv9p0c7v9l5y2v6yl9z23nl4psb6csx-more-itertools-8.2.0.tar.gz.drv /tmp/guix-tests/store/kvipshbagjr0clsfbxs0bpli750b6mwj-u-boot-2021.10.tar.xz.drv /tmp/guix-tests/store/3s3z7499lfl87nch7ax8s5mzlrvv3s6c-u-boot-2021.10.tar.bz2.drv /tmp/guix-tests/store/l5ghzm4xa5hp8bvrr7zk9hrmcrzk90nw-python-pytest-6.2.5.drv /tmp/guix-tests/store/2r79s4gaz7qp0310ky8ny9qzsxngl3g4-python-sortedcontainers-2.1.0.drv /tmp/guix-tests/store/4w8xkhsgjwr6xjr6jvmpcd16fxf8pfvs-python-filelock-3.0.12.drv /tmp/guix-tests/store/rmimazya2r7xxbivh7y2w5w49387abzb-filelock-3.0.12.tar.gz.drv /tmp/guix-tests/store/6wivz10hfixa5jy9788zdxcbv0l16wls-python-appdirs-1.4.3.drv /tmp/guix-tests/store/j79g0cbd6ijr44zqffdqwy4ps84wpal7-appdirs-1.4.3.tar.gz.drv /tmp/guix-tests/store/fqcnc4pm0nlpq4p9gjn23qqx8dnnns8m-python-distlib-0.3.1.drv /tmp/guix-tests/store/jv28qccm9b1byfsga3677rznvrawlgrr-distlib-0.3.1.zip.drv /tmp/guix-tests/store/ih7z1b3a6lrkrjr7zwvgq3cm0p09lhm6-sortedcontainers-2.1.0.tar.gz.drv /tmp/guix-tests/store/6hwhxayicrwk3lg9a8v2cb5nn7lvq3vv-python-mock-3.0.5.drv /tmp/guix-tests/store/acvv5nylvrrg6x6597nhybhv540gnv5m-python-six-1.16.0.drv /tmp/guix-tests/store/n6xfvp2qp1b6q8kmlxcbflgmn1vbq5ca-python-pytest-bootstrap-6.2.5.drv /tmp/guix-tests/store/6k7ji090bd9xgl89drg7mg72b38hfhmd-pytest-6.2.5.tar.gz.drv /tmp/guix-tests/store/p69x7vz4k9v8rzp07hqqznr1y7qvpi5b-python-iniconfig-1.1.1.drv /tmp/guix-tests/store/p5m9njda55z5wlahnxja3hxbd7hj1l26-iniconfig-1.1.1.tar.gz.drv /tmp/guix-tests/store/pgm55978kw09r2ymcl12wz12xaagl2ly-python-wcwidth-0.1.8.drv /tmp/guix-tests/store/w2cdb3kc9s3w00cfcir2ydlmljdb2k0r-wcwidth-0.1.8.tar.gz.drv /tmp/guix-tests/store/r8hhnw5h7n5dpyml45273ixag5vz290v-python-pluggy-0.13.1.drv /tmp/guix-tests/store/cyw49jzinnn3dysmlsff31j718p59y4s-pluggy-0.13.1.tar.gz.drv /tmp/guix-tests/store/wjdmpalck3l6df3f5ggdryhf90v4v3mj-mock-3.0.5.tar.gz.drv /tmp/guix-tests/store/9fjdiiy3rf18wgy9kw3q1n1nrs72m4s0-python-nose-1.3.7.drv /tmp/guix-tests/store/p6r6akibgmldl4rsqnm763mpsiqydmr5-nose-1.3.7.tar.gz.drv /tmp/guix-tests/store/cc907ag3kvv1qanzfzn512qxq4i5dabp-python-xmlschema-1.2.5.drv /tmp/guix-tests/store/16lzr4lakg8cdcjmif35jf0wknybf41q-python-xmlschema-1.2.5-checkout.drv /tmp/guix-tests/store/fybsdvq2d2vwm6k7jlk26k8nivbngp0n-python-elementpath-2.0.3.drv /tmp/guix-tests/store/yqynjpjmk3gndv32p4j54nx3zg3l1qdf-elementpath-2.0.3.tar.gz.drv /tmp/guix-tests/store/k841ad1fk364xn2i28457377x67aii3v-python-lxml-4.6.3.drv /tmp/guix-tests/store/kgll9h1rj15ja2k4wlikww4jnl2vh1yd-lxml-4.6.3.tar.xz.drv /tmp/guix-tests/store/rv5z8vvw51i198jfqmyn1nbmj1y9zhzz-lxml-4.6.3.tar.gz.drv /tmp/guix-tests/store/wvk1hnlgjljijvsiv7jqcn5w6kry8jpa-python-hypothesis-6.0.2.drv /tmp/guix-tests/store/g14wbkgrq2d5dxxk544s8s6qxpi00xkn-hypothesis-6.0.2.tar.gz.drv /tmp/guix-tests/store/zs6jh1b876j9y9vl05hc3aa69fy67j07-gcc-cross-sans-libc-arm-linux-gnueabihf-10.3.0.drv /tmp/guix-tests/store/1x5dx260g6h28n6az37hclpq9cdcgdfj-libstdc++-headers-10.3.0.drv /tmp/guix-tests/store/4bjmwzhm6q4fkfzr86bpckmmbjjxwr5n-libstdc++-10.3.0.drv /tmp/guix-tests/store/gxp7fnmlmcif375r9bwdj1r3ndcjqgaf-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/2r6rbqbvgqi0msmajqz1ylv3hgv18p2r-libelf-0.8.13.drv /tmp/guix-tests/store/jxrg02rgaymp91llhihyygvj2mnar895-libelf-0.8.13.tar.gz.drv /tmp/guix-tests/store/4dmmxbxr1s3mgw9xlqh256fv38p9jh1s-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/9jnsjis5r35yinyyawlc41hwb590gai6-isl-0.23.drv /tmp/guix-tests/store/wa4yvjq1svk7767z9c84pqpzs79ix10b-isl-0.23.tar.bz2.drv /tmp/guix-tests/store/bwjzclbg6khi2wb5ap4112285c3pd4lg-ld-wrapper-arm-linux-gnueabihf-0.drv /tmp/guix-tests/store/d8l1jxzqd20ma3d5nl3mchwgkm713w1y-module-import-compiled.drv /tmp/guix-tests/store/fdx1lj479fbqnc0vfgb351gb0km6jkg8-mpc-1.2.1.drv /tmp/guix-tests/store/fxmpyib9fp1bzlf7rprrp5b7y1shck6w-mpfr-4.1.0.drv /tmp/guix-tests/store/zx4xkcmbg5sz9akviwb1rfnxvwdqlshv-dtc-1.6.1.drv /tmp/guix-tests/store/9gbmsqsk32ynqzp1hkmxrf03zyi2sj5a-dtc-1.6.1.tar.xz.drv /tmp/guix-tests/store/fcb2zajdf60zzqsjz64n2rypxww1x1m0-libyaml-0.2.5.drv /tmp/guix-tests/store/sc53x2q3h4sss6vmasrpk81zaflw9c1b-yaml-0.2.5.tar.gz.drv /tmp/guix-tests/store/82npksqpdaahimifykl7rkqnni5vfl7n-genimage-14-1.11bb044.drv /tmp/guix-tests/store/2gvqyn8k7ywbkc3fqhwkzqjgvfcn6bds-e2fsprogs-1.46.4.drv /tmp/guix-tests/store/1i9rb17bz35zswpdics7q5pnk8hd6m66-procps-3.3.16.drv /tmp/guix-tests/store/xwdwvpgbkqk0afqnmn8vyivgr137305i-procps-ng-3.3.16.tar.xz.drv /tmp/guix-tests/store/60ajy8fhp2pfznlx5ippk3y5lh05rqgg-e2fsprogs-1.46.4.tar.xz.drv /tmp/guix-tests/store/5ckv3dlvj7nj1m9jsfhbpafbqcma4fj4-mtd-utils-2.1.2.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/hiaa99jhg9xibrw26a4gx07ncb1vp42m-zstd-1.5.0.tar.gz.drv /tmp/guix-tests/store/d2x8jblqpi962y5x2zj1svy3p746mf45-cmocka-1.1.5.drv /tmp/guix-tests/store/0hxqizv2mkz7k6h2v6gbka5jks7pn4kn-cmocka-1.1.5.tar.xz.drv /tmp/guix-tests/store/6rbfyfard7972xp7gdlai8hsv2hsq4zn-module-import-compiled.drv /tmp/guix-tests/store/ln972qkvma2g6qwwcba09g1gmh1pamnh-cmake-minimal-3.21.3.drv /tmp/guix-tests/store/1mwnr87746w4yw62b7jxbbmd8dbc9rsv-libuv-1.41.1.drv /tmp/guix-tests/store/jljx74ak5ql238hg9hxipa17wmchmq04-libuv-v1.41.1.tar.gz.drv /tmp/guix-tests/store/59qygq2wky37iyjq9jl39b9zgbaj6yd7-cmake-3.21.3.tar.xz.drv /tmp/guix-tests/store/q6wx3cw7cynrx74l67dyqcdvlrvsqf5k-cmake-3.21.3.tar.gz.drv /tmp/guix-tests/store/adzkdxigm9w7v6w26nrwpjzy50dzrhyb-libarchive-3.5.1.drv /tmp/guix-tests/store/3j5idg9r07m0bj5d3kr157y4h63z296l-libarchive-3.5.1.tar.xz.drv /tmp/guix-tests/store/sjk59gnkp4vmkp60rq02pb2z5c0nik9d-lzo-2.10.drv /tmp/guix-tests/store/n01vi6wwqgrcgfwblyj944g4wk3z1b76-lzo-2.10.tar.gz.drv /tmp/guix-tests/store/mapkpngb78vc71h6hidaq1y1haimy9r5-rhash-1.4.2.drv /tmp/guix-tests/store/0c7n3q8x5ayj5ll7m16b9cl8yiwzdrcm-rhash-1.4.2.tar.gz.drv /tmp/guix-tests/store/pg9qr99nqpl4ibhih23dvsly9srcrird-jsoncpp-1.9.4.drv /tmp/guix-tests/store/9ksb8j9yl8y3mw76c02isd5c1zi7kgbi-jsoncpp-1.9.4-checkout.drv /tmp/guix-tests/store/4mdija5vd7149a9v9mwdmznw1pjgdfvp-jsoncpp-1.9.4-checkout.drv /tmp/guix-tests/store/vrn18j4438yk8x266hxm9yj1h338ij5w-cmake-bootstrap-3.21.3.drv /tmp/guix-tests/store/mxdsa1lnahn5hah35dkwpvlhdidrb5b9-cmake-3.21.3.tar.xz.drv /tmp/guix-tests/store/gg0897h8bc5p6ljc4yq74b2c4x7qsdsh-acl-2.3.1.drv /tmp/guix-tests/store/bfqcx4ji79m0igvagplbhha9h3hkhqgb-attr-2.5.1.drv /tmp/guix-tests/store/2pn4vdkzbg5gwjqskby89v8nrn84b66y-attr-2.5.1.tar.gz.drv /tmp/guix-tests/store/fdrp2n3bzzjzdb8im056pgcp98ccscna-acl-2.3.1.tar.gz.drv /tmp/guix-tests/store/hcs4d0v1jfy9pm395zn7hcv4s7iamyfx-mtd-utils-2.1.2.tar.bz2.drv /tmp/guix-tests/store/6411pxr1kk4g0jnc13yak20q2ca8ks44-genimage-14-1.11bb044-checkout.drv /tmp/guix-tests/store/fl68dfywj008igyr9wa9fvmdbmlg8spg-genimage-14-1.11bb044-checkout.drv /tmp/guix-tests/store/6vm4apwi19sbnh1qhxjz5ndjyhzx1dlj-dosfstools-4.2.drv /tmp/guix-tests/store/vmx7m2m8ckk2ih8z0jvsgnvfxf6yrqw8-xxd-8.2.3487.drv /tmp/guix-tests/store/ib6pk0mhk8vnppzbiz1iv5y2bbxhwvp5-vim-8.2.3487-checkout.drv /tmp/guix-tests/store/yqcbbbanifkf14prmpgzk3212sh1jhbc-dosfstools-4.2-checkout.drv /tmp/guix-tests/store/br6gasx4f29jq55lcwn3qc9yg2l1lzyn-libconfuse-3.3.drv /tmp/guix-tests/store/j0c7pnq820r7r703nps68i5xj6q17hqw-confuse-3.3.tar.xz.drv /tmp/guix-tests/store/dw2gg8yj5hck33w5nkh7crdmkbqgfc13-squashfs-tools-4.5.drv /tmp/guix-tests/store/1wv9lkgzxfs0f0qhbwkyjz59qp4i7haw-squashfs-tools-4.5-checkout.drv /tmp/guix-tests/store/fc3ksvjvblm1x2k1ycrmc3j39zis69sv-u-boot-tools-2021.10.drv /tmp/guix-tests/store/0f4v143sf9hrkqmqs5ysjazlzhzi5sh0-libxfixes-6.0.0.drv /tmp/guix-tests/store/knm8n2122bxqf1dibappak4hpcc376q2-libXfixes-6.0.0.tar.bz2.drv /tmp/guix-tests/store/1vwqa9dkwhggp5i5c6f4r5mhrm9jnr05-libpciaccess-0.16.drv /tmp/guix-tests/store/1633zavvypdlxn33xscws5dixkxk2xvj-libpciaccess-0.16.tar.bz2.drv /tmp/guix-tests/store/fpmwwkafs0ppcp478m82vsk4qbqb6bxl-pciutils-3.7.0.drv /tmp/guix-tests/store/41lndimrmc5h40wjqwbdbsj98fkmpwgi-kmod-29.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/64i36988f5cw6y2cmjyvs70rqxhqxkqc-kmod-29.tar.xz.drv /tmp/guix-tests/store/fplbsi54rvw8krf6rqv86p5514p5lhbk-kmod-29.tar.xz.drv /tmp/guix-tests/store/p8bzhrqn88y4v6sysrkpld645vnv3mf1-pciutils-3.7.0.tar.xz.drv /tmp/guix-tests/store/7zj0chwvkz7bgkhvji1q7khz6538z2gv-pciutils-3.7.0.tar.xz.drv /tmp/guix-tests/store/6f82h68g03inanl5236x60vil6j76awg-libdrm-2.4.107.drv /tmp/guix-tests/store/22qy2xj02x5al8jxzq6i5zqcwfsx29yi-meson-0.60.0.drv /tmp/guix-tests/store/9mn0kdb31jrchnp3zzgnvmgzcm1cd7ij-ninja-1.10.2.drv /tmp/guix-tests/store/lg5j257z460kqn5y2zpq9095qpyvvdx8-ninja-1.10.2-checkout.drv /tmp/guix-tests/store/gkxhhd51vbqrrv4x3bycsy2k12f5d0fm-meson-0.60.0.tar.xz.drv /tmp/guix-tests/store/jv39rkg0s8lmmag8r5x30mai1x5136r6-meson-0.60.0.tar.gz.drv /tmp/guix-tests/store/8sx78yf9lfd5nx3f1yl4bbb271vxilqj-libdrm-2.4.107.tar.xz.drv /tmp/guix-tests/store/na8q08f52nzbhfq7k420yjbpbvcws9d1-module-import-compiled.drv /tmp/guix-tests/store/6mqwsfbvl7920zmhkbpy11vian08irbr-libxdamage-1.1.5.drv /tmp/guix-tests/store/hhdgkq70mm1y3l7djrzlaihqr7fd8hpw-libXdamage-1.1.5.tar.bz2.drv /tmp/guix-tests/store/aakk35y3iiskxcis0k4kprvimmplbrda-libvdpau-1.4.drv /tmp/guix-tests/store/lharpkh073cnbsi3rxrp70r3zgvgxiy0-libvdpau-1.4-checkout.drv /tmp/guix-tests/store/iaf48jk9vsr5z7pxmk2in7izyc4gvvz0-sdl2-2.0.14.drv /tmp/guix-tests/store/0ldj9ylwxp5gj6wclzrm6g7p403s3bj1-SDL2-2.0.14.tar.gz.drv /tmp/guix-tests/store/2bfkk8g82aphfxphbk8ak8lgcqv7wgyl-alsa-lib-1.2.4.drv /tmp/guix-tests/store/bsc41dnqy1g2g0s2g36ai2cambjpmf69-alsa-ucm-conf-1.2.4.drv /tmp/guix-tests/store/q3cf9m524ahanwzkg921s9nzjwmzc5yx-alsa-ucm-conf-1.2.4.tar.bz2.drv /tmp/guix-tests/store/z73n3cdwj0jbw5frn2jffyai2nzb6pld-module-import-compiled.drv /tmp/guix-tests/store/kwcp0mcd5zsg7qzwq4r88kijrpjmvxx8-alsa-topology-conf-1.2.4.drv /tmp/guix-tests/store/zsnmj62w05savi7v9qnyjy3v9abcrpk8-alsa-topology-conf-1.2.4.tar.bz2.drv /tmp/guix-tests/store/p1n4m081mi2nsmfwq0p5zppcg3yg71b5-alsa-lib-1.2.4.tar.bz2.drv /tmp/guix-tests/store/2wq417gjv0inl2967yzh6wdd9fgn7m1v-fcitx-4.2.9.8.drv /tmp/guix-tests/store/0242g2kynspcrapaxcpjx3hcgya2syin-libxkbfile-1.1.0.drv /tmp/guix-tests/store/4dvrn7g9rna3b7qwabinffrpxy9izfg4-kbproto-1.0.7.drv /tmp/guix-tests/store/i06sm0vcw3fdhxj2rdcq2nyvsqgywraz-kbproto-1.0.7.tar.bz2.drv /tmp/guix-tests/store/is286vwd9yhi3rbm1hsnym42s8w2r4ih-libxkbfile-1.1.0.tar.bz2.drv /tmp/guix-tests/store/02706ifnsq3aqgj97scyl1dmsgm9jvq6-json-c-0.15.drv /tmp/guix-tests/store/910cb21n9r9rhsxdspc3rm1zy3pa5flc-json-c-0.15.tar.gz.drv /tmp/guix-tests/store/0kz1l7grxh2svc2n6dzxyns1dg5cbbrk-gtk+-2.24.33.drv /tmp/guix-tests/store/2cz4hv6dgp1l25c4jjvrq0afbrbcma0s-gobject-introspection-1.66.1.drv /tmp/guix-tests/store/49i46bq4kmzasvkl55d2a7is0p5ygf8h-gobject-introspection-1.66.1.tar.xz.drv /tmp/guix-tests/store/wpk723agq2ywwsnrpjpfsllid19y9547-gobject-introspection-1.66.1.tar.xz.drv /tmp/guix-tests/store/akwd6b9vagad50v50plfa2j7q1mh6h0z-glib-2.70.0.drv /tmp/guix-tests/store/63wvgyi3jk3aa3vbbhx14cbqnqivxh0n-bash-completion-2.8.drv /tmp/guix-tests/store/rws4frwzrw3fwd8nk53axbxjjbwsim5j-bash-completion-2.8.tar.xz.drv /tmp/guix-tests/store/x5mynqylgv1vrs9gmf63dfdih7n63q0w-bash-completion-2.8.tar.xz.drv /tmp/guix-tests/store/lhrcf8n28hh7a70slzcjcbwv8x876k7q-dbus-1.12.20.drv /tmp/guix-tests/store/f1pv7sj0vb1f4cff2xrlyfh5yykrvdvv-itstool-2.0.6.drv /tmp/guix-tests/store/p94shj49z9m8j2wq3jmskxvi7gbpzia9-itstool-2.0.6.tar.bz2.drv /tmp/guix-tests/store/xdi5126485gsw6mvx37vc6n5wr36yhfy-python-libxml2-2.9.12.drv /tmp/guix-tests/store/ddwzrp96zh4fch63w0n81acc65dc5n1q-libxml2-2.9.12.tar.xz.drv /tmp/guix-tests/store/frv94krkjsrdy4n0h78zjhbygv6iza09-docbook-xsl-1.79.2.drv /tmp/guix-tests/store/5c1aprdmpq422i3lz6gavkirf1vz7xl9-docbook-xsl-1.79.2.tar.xz.drv /tmp/guix-tests/store/3bz1xi8mifzvvihbff8fjpp5fs4ybiib-docbook-xsl-1.79.2.tar.bz2.drv /tmp/guix-tests/store/igkmyldvyjb57jg0kwhjsm0ddksk700a-xmlto-0.0.28.drv /tmp/guix-tests/store/wppi02xzax3c4ivvbhhfpsn9j9j1l52m-xmlto-0.0.28.tar.bz2.drv /tmp/guix-tests/store/qvrk2k11sm7wfgzxlc7mh46lp2s5iybl-dbus-1.12.20.tar.xz.drv /tmp/guix-tests/store/43mj9x70809bvm0xds686lf0xn5id1n9-dbus-1.12.20.tar.gz.drv /tmp/guix-tests/store/w1df50wgkyql0b8sj1cn65qn1jn098kh-doxygen-1.9.1.drv /tmp/guix-tests/store/np2m2v8p5hv89ffc1xd8kkjmc9x6dwvx-doxygen-1.9.1.src.tar.gz.drv /tmp/guix-tests/store/w4s80qcss3rvlnrqaznrnc9xx2b4hzhk-yelp-tools-3.32.2.drv /tmp/guix-tests/store/h3bk6giywb5dzhmlk2y3ypgzbaif1b2h-yelp-xsl-41.0.drv /tmp/guix-tests/store/63k0rqrvvqk30d2z0xha13bwid3sh5si-intltool-0.51.0.drv /tmp/guix-tests/store/i10li6jbqagg9mg77pvh813bz1zwpa1z-intltool-0.51.0.tar.xz.drv /tmp/guix-tests/store/5d6qr6jjk5nkmgsnkj73asahwa4ync42-intltool-0.51.0.tar.gz.drv /tmp/guix-tests/store/y2ndd5cyxiwy2n48a0is6vzcnwlw60fn-perl-xml-parser-2.46.drv /tmp/guix-tests/store/rrrrxprhj5v5kdxi5yf0sljhi3gndzq6-XML-Parser-2.46.tar.gz.drv /tmp/guix-tests/store/fsfrm6cpnmjalwkygqpx95afj75w3vsb-yelp-xsl-41.0.tar.xz.drv /tmp/guix-tests/store/vdcv3rxkk4dj6n06kh25fpfpk48sa42r-mallard-ducktype-1.0.2.drv /tmp/guix-tests/store/jdq6fhxdf28djx2avfwlpppq1wp8miin-mallard-ducktype-1.0.2-checkout.drv /tmp/guix-tests/store/vwfl23gk5shi4bslm74bixm45y7lajfc-yelp-tools-3.32.2.tar.xz.drv /tmp/guix-tests/store/x6vqn652f2kkdg0wx4mckn6nspqz43dd-docbook-xml-4.4.drv /tmp/guix-tests/store/0ksyjfjvnwf0rw3xq4b43khd19dnqxsb-docbook-xml-4.4.zip.drv /tmp/guix-tests/store/lw3vp2q5gazfwjnfh9f5i9mxyrsaqjh6-glib-2.70.0.tar.xz.drv /tmp/guix-tests/store/dwqa9sp2cs7sphy7psa1sspw8zyqs0yz-glib-2.70.0.tar.xz.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/518rx93g9y0dq7mbwhdpr0dqyzxcd0bl-libdatrie-0.2.13.drv /tmp/guix-tests/store/cqp8x0bnpjkxiy949h7c5kyivyrj8s4k-libdatrie-0.2.13.tar.xz.drv /tmp/guix-tests/store/5b5f15bbsrr5abjfvi1wv6h2lph85q4x-libxcomposite-0.4.5.drv /tmp/guix-tests/store/8zsn39cnnyrmc7b8ic4rd7ajm3hz6lp2-libXcomposite-0.4.5.tar.bz2.drv /tmp/guix-tests/store/6jm6dgzxbdi3viq4dg04q4gxvq44ycgb-libxrandr-1.5.2.drv /tmp/guix-tests/store/mka548gkivgws3s226k39ci3bvii4mvs-libXrandr-1.5.2.tar.bz2.drv /tmp/guix-tests/store/6nnsb5ij49hqrb38j1xzd51mkignsygs-cairo-1.16.0.drv /tmp/guix-tests/store/950nfjl37002pjyxkzmb003mq5xlix6z-libspectre-0.2.9.drv /tmp/guix-tests/store/l07rpf0f1yvxzgn8yji1zc5ya2g2zqx2-ghostscript-9.54.0.drv /tmp/guix-tests/store/5rh6x6j9gfl82193sxlvb474pb3nkrwc-ghostscript-9.54.0.tar.xz.drv /tmp/guix-tests/store/xx5hnbs01aba5dk246zqmvl9qwh9j460-ghostscript-9.54.0.tar.xz.drv /tmp/guix-tests/store/5vnml2rg59fipa1r0akrdw6fdnjfy46c-font-ghostscript-8.11.drv /tmp/guix-tests/store/azlxx6qzgwjm6yyy0z05jbdxrpm02crq-ghostscript-fonts-std-8.11.tar.gz.drv /tmp/guix-tests/store/9vvj3igk13pfxfq47yamfw5vm7kvaz3l-libjpeg-turbo-2.0.5.drv /tmp/guix-tests/store/9300n7xf7nakazm93nkz4s2lmjznfw65-nasm-2.15.05.drv /tmp/guix-tests/store/0402pfph3s15mnib10rkxc3qx8wk1r7j-nasm-2.15.05.tar.xz.drv /tmp/guix-tests/store/zhvkblzv4r36kqi3dp5mizra85384a21-libjpeg-turbo-2.0.5.tar.gz.drv /tmp/guix-tests/store/jmliaf57fyx77wq1rk5ja0h05mn11sc9-jbig2dec-0.19.drv /tmp/guix-tests/store/xkis6w40kr8l1n91y8xhdyn3q0ngrggr-jbig2dec-0.19.tar.gz.drv /tmp/guix-tests/store/mnyf11gpi02b1j6b30282cksn6p29iw1-libpaper-1.1.24.drv /tmp/guix-tests/store/j2kvglmqz8k2lwkfc09l230fkrf825k9-libpaper_1.1.24.tar.gz.drv /tmp/guix-tests/store/rgr3isbphrcg13zwzc2xycg49604knf1-libtiff-4.3.0.drv /tmp/guix-tests/store/c28gr8dky7a1pv83rznvc7zc7xa63852-tiff-4.3.0.tar.gz.drv /tmp/guix-tests/store/p3nbj46s3pa9m8jpmq570jd0dfssb8h6-libspectre-0.2.9.tar.gz.drv /tmp/guix-tests/store/a551rjad05wa1j4fa6f6ria10w7wkzqg-module-import-compiled.drv /tmp/guix-tests/store/bb84qa9qwh8qgglq969nm40kgh7l8z7g-pixman-0.40.0.drv /tmp/guix-tests/store/2kppbr9qf9m8wjr4hnfmlwww2bp85xy9-pixman-0.40.0.tar.xz.drv /tmp/guix-tests/store/ig0j6nwczg9jl5xn2bvi9bczy71z00za-pixman-0.40.0.tar.gz.drv /tmp/guix-tests/store/qwhkcj6gifhipdx0bykh8k508iv20wv0-cairo-1.16.0.tar.xz.drv /tmp/guix-tests/store/5rl93jh93l4lk72ayjkvy9pk1k9q5wvp-cairo-1.16.0.tar.xz.drv /tmp/guix-tests/store/rxws90r8xdblf9zm6v85k5gnb72sjwag-poppler-21.07.0.drv /tmp/guix-tests/store/0gdx1ggq4bdvyzbiprl8akbx0qfag00f-lcms-2.12.drv /tmp/guix-tests/store/id06kx2lmfyzwygvai01njzgdpvgxmgi-lcms2-2.12.tar.gz.drv /tmp/guix-tests/store/6lnqgvpwjxlc0mdc3wnys6zvylpzy571-cairo-1.16.0.drv /tmp/guix-tests/store/8i18wrimi8q61nrvf3ldf3fir1m5kgjc-openjpeg-2.4.0.drv /tmp/guix-tests/store/2zjfjys3k0nbwmsnwzmm1hdg4n8kg5cb-openjpeg-data-2020.11.30.drv /tmp/guix-tests/store/dhvvb83w2mlqflgvy1600sicnn4ny7gm-openjpeg-data-2020.11.30-checkout.drv /tmp/guix-tests/store/54nawf3lmxbipflmpwzb0zwpkan6zpkh-openjpeg-2.4.0-checkout.drv /tmp/guix-tests/store/pjrd3y75k6s05mcvacawa1d1hjaqhiz6-poppler-21.07.0.tar.xz.drv /tmp/guix-tests/store/89ngbjyv26prha3mh6a59d0xmcklw9wp-xorg-server-21.1.1.drv /tmp/guix-tests/store/112b8g7ry03pjcyf98yw62kya9ypc225-xcb-util-keysyms-0.4.0.drv /tmp/guix-tests/store/vl57lf5kpxmjj1zcl7z2ckxb1lrwvcv8-xcb-util-keysyms-0.4.0.tar.bz2.drv /tmp/guix-tests/store/1zabz0ns5hza30yw81i99mqmcn2v0995-libfontenc-1.1.4.drv /tmp/guix-tests/store/zsd55ydb7knk2cz01f6d3hpgq2ph48c2-libfontenc-1.1.4.tar.bz2.drv /tmp/guix-tests/store/22y54jf1dv107v89ivg1ig3nwkmm36kg-xkbcomp-1.4.5.drv /tmp/guix-tests/store/mil8b60i9b1js4iw90jzymq54w35rz6j-xkeyboard-config-2.34.drv /tmp/guix-tests/store/cr5ij6qgci0x7idrj0600r7dw723yp8h-xkeyboard-config-2.34.tar.bz2.drv /tmp/guix-tests/store/s4c5cnr256bz1lk2lm79q2b9vl1dqg6n-xkbcomp-intermediate-1.4.5.drv /tmp/guix-tests/store/pgfdhk3da8iihlb0frv361m95hdxsik5-xkbcomp-1.4.5.tar.bz2.drv /tmp/guix-tests/store/5myq09qf466wka0b5fzpfmcvcikq2300-libxaw-1.0.14.drv /tmp/guix-tests/store/9ah006xxmdjr2hc9srmfnh55x0xslyn9-libxpm-3.5.13.drv /tmp/guix-tests/store/c81ixkb0abyckywhfmnp3966i2fnz40y-libxt-1.2.1.drv /tmp/guix-tests/store/h6yxfd4fm8zsvyygb3zzvna8hsys6536-libice-1.0.10.drv /tmp/guix-tests/store/l0ydvipidjilav2xkfc9d8x593scp7xh-libICE-1.0.10.tar.bz2.drv /tmp/guix-tests/store/mp66vbanf751fr8xslddhwsh9sw9jlwj-libsm-1.2.3.drv /tmp/guix-tests/store/7ir6rvz3ijm3bi7d6hyrnkpzxa3nibgg-libSM-1.2.3.tar.bz2.drv /tmp/guix-tests/store/pspndz27fi9lr0m7nafmbyy0vg44xsdf-libXt-1.2.1.tar.xz.drv /tmp/guix-tests/store/2jja5ci203vghx0g9va4wfak90rdjwfw-libXt-1.2.1.tar.bz2.drv /tmp/guix-tests/store/s97ngr3x783qxh2yk03lkjhka4vj0dqk-libXpm-3.5.13.tar.bz2.drv /tmp/guix-tests/store/gagrzik18ii9w65j4ki8zchcrx97i9dd-libXaw-1.0.14.tar.bz2.drv /tmp/guix-tests/store/wlpmac7biws74w8gfs4fd1bab65rg535-libxmu-1.1.3.drv /tmp/guix-tests/store/3qh8q3j64dfcdkscrmfspary1h0s4rk7-libXmu-1.1.3.tar.bz2.drv /tmp/guix-tests/store/85cxvlf08f9ijzfv2g4cjqv41hpkh5z3-xcb-util-image-0.4.0.drv /tmp/guix-tests/store/h2xg0sfgyhxmkiciqjf6ajzkmbmzkkd4-xcb-util-0.4.0.drv /tmp/guix-tests/store/p1la79193dzxx4n5j260fbb4v915bsr5-xcb-util-0.4.0.tar.bz2.drv /tmp/guix-tests/store/q4irq6w3z4irxim8s8mrfqljd8r4q6ym-xcb-util-image-0.4.0.tar.bz2.drv /tmp/guix-tests/store/a8yyhj9xn53xgcafgzxrzpg8rcl58pw8-xcb-util-renderutil-0.3.9.drv /tmp/guix-tests/store/96y2r2spdffz329sad8zjkmjqi6agmwm-xcb-util-renderutil-0.3.9.tar.bz2.drv /tmp/guix-tests/store/av6jbpini5r1gw6l7vyx54805iy0qqbn-libxv-1.0.11.drv /tmp/guix-tests/store/j5s8f49hz6wdbdcv7vfnv6kbnibf15w3-libXv-1.0.11.tar.bz2.drv /tmp/guix-tests/store/bw36n824l74wqlxcgjsbh3pqafl9hgds-xcb-util-wm-0.4.1.drv /tmp/guix-tests/store/vvlnfl3gjfirdfrhj9sblrmz9l81ysds-xcb-util-wm-0.4.1.tar.bz2.drv /tmp/guix-tests/store/lhi8hky4b60i2swd7ip85pw7fcv2kfzh-libxshmfence-1.3.drv /tmp/guix-tests/store/xvdl64qkzlxd1brvx9i78i6blf338qim-libxshmfence-1.3.tar.bz2.drv /tmp/guix-tests/store/lnj9brddrvsx8w1cwdgfblcbg3alqrgs-libdmx-1.1.4.drv /tmp/guix-tests/store/l53smvl87r0h497mghchhr5d9kd4jhw2-libdmx-1.1.4.tar.bz2.drv /tmp/guix-tests/store/pryrccddxpjp6rhg9dg63bfj1bxqr9ws-eudev-3.2.9.drv /tmp/guix-tests/store/96qg9y2lrwq5ai7n4dp6n5v5hg1rbhrc-docbook-xml-4.2.drv /tmp/guix-tests/store/4xa6bmg4fysxsi7fcaqcln3dzbch3jbq-docbook-xml-4.2.zip.drv /tmp/guix-tests/store/z3fp9gnyy3n3g27jqflhb7l46cqygxww-eudev-3.2.9-checkout.drv /tmp/guix-tests/store/j8rf89mfp8xklyz4c5fwpfrjmcm4031q-eudev-3.2.9-checkout.drv /tmp/guix-tests/store/rgg4fpwk3wjk5g1vzmbwn0fqp8h4ci20-mesa-21.2.5.drv /tmp/guix-tests/store/60jw4s11bmqq50mx486mha870lgj993p-llvm-11.0.0.drv /tmp/guix-tests/store/wslfjx88gvlb7cizj0pw65by8h0cy3sf-llvm-11.0.0.src.tar.xz.drv /tmp/guix-tests/store/75dazwvi6njz6nj49433m7nzqrgjvmbi-python-mako-1.1.3.drv /tmp/guix-tests/store/ivvc8pi1f4w06fgl4m9qw5jkg6h13w18-python-markupsafe-2.0.1.drv /tmp/guix-tests/store/vjfmxg648virpddqwk8f9p9zxk26406w-MarkupSafe-2.0.1.tar.gz.drv /tmp/guix-tests/store/yfxg9pfg88nbc41cbjzl02s11ak5v7n0-Mako-1.1.3.tar.gz.drv /tmp/guix-tests/store/77hnwm8qkdrk9kqva42hz8q1b5v0a4z3-elfutils-0.183.drv /tmp/guix-tests/store/lshhrjlv19fi8nzwd9dd6ma8nzx7gs7r-elfutils-0.183.tar.xz.drv /tmp/guix-tests/store/j188gxqdvzjh0pkrf2xgnginallxg49a-elfutils-0.183.tar.bz2.drv /tmp/guix-tests/store/kajmjxdpj552alfy0yvv01g0sy6d5d4b-wayland-1.19.0.drv /tmp/guix-tests/store/0zgpdz9ygz4sli5wwd429mnkd426ac4s-graphviz-2.49.0.drv /tmp/guix-tests/store/8i3kns3w97qgixhn4q7wb5n6yjyvy8sp-pango-1.48.10.drv /tmp/guix-tests/store/b1a1ndzgxjc5r856wqkp0m65yczvdy39-harfbuzz-2.8.2.drv /tmp/guix-tests/store/frbfs7dcw5rkrmny4iwxyv6s3whq8paa-harfbuzz-2.8.2.tar.xz.drv /tmp/guix-tests/store/wgjj3bjv2gx0xdml240cpj0ws558y29m-graphite2-1.3.13.drv /tmp/guix-tests/store/3vlz4jvai3ijrg5y196y528fkwfgzx6s-graphite2-1.3.13.tgz.drv /tmp/guix-tests/store/j02az1xlma527fwlnjq1h668q3y8vl3l-python-fonttools-4.6.0.drv /tmp/guix-tests/store/1h2lyrlgj97g3n16wwhc79c7ln2l024l-python-pytest-runner-5.2.drv /tmp/guix-tests/store/ggwznmj631clj16p3xjixh1x2yphbabg-pytest-runner-5.2.tar.gz.drv /tmp/guix-tests/store/rchdn7fkqzhkhyhc3vc16qfr8xr5lw4w-fonttools-4.6.0.zip.drv /tmp/guix-tests/store/bz0fz8qvgpd72zjnzpz5km09hdbzx2wn-libthai-0.1.28.drv /tmp/guix-tests/store/3cw20nvvzakssdrhiilwp0l0a7qwn6dz-libthai-0.1.28.tar.xz.drv /tmp/guix-tests/store/d5kih80xiplf7cmnslqgdyzcj8frn4zy-fribidi-1.0.9.drv /tmp/guix-tests/store/dd8n4rcqdlw1swx78ww2hyci13qci8lm-fribidi-1.0.9.tar.xz.drv /tmp/guix-tests/store/qb1nsf5jahi9444ng6g0navi9agsaskk-pango-1.48.10.tar.xz.drv /tmp/guix-tests/store/dy6hd89lb65wqf97wn6768pcs0yjfvvb-pango-1.48.10.tar.xz.drv /tmp/guix-tests/store/akwd6b9vagad50v50plfa2j7q1mh6h0z-glib-2.70.0.drv /tmp/guix-tests/store/kx2igpxh0yn94klc72w5q0j3iyaibfk6-gts-0.7.6.drv /tmp/guix-tests/store/7wdbwbs2lmq4ljp29kvj3n89lwlyhdbv-gts-0.7.6.tar.gz.drv /tmp/guix-tests/store/wj2wwpcgvsw0rljdwkjwgadqsrjiqqgx-graphviz-2.49.0.tar.xz.drv /tmp/guix-tests/store/xa7r2qdzcyl4mavpigr3jdf8bxpfxr27-gd-2.3.2.drv /tmp/guix-tests/store/wij1b56irx5hfbpc65l1fyyid7w4zlfx-libgd-2.3.2.tar.xz.drv /tmp/guix-tests/store/kjcf53firqwhmaah3ih1cwkkm6qk76mi-libgd-2.3.2.tar.xz.drv /tmp/guix-tests/store/dn4ngpfqw2fkfnwjmnk0c0ya9xxxgyjd-wayland-1.19.0.tar.xz.drv /tmp/guix-tests/store/x3yfjx440ziw2afiykklvczhbvcn1hfk-docbook-xml-4.5.drv /tmp/guix-tests/store/y7p9gwd0l4d1ljbb5arp3fc9gqbyh4f3-docbook-xml-4.5.zip.drv /tmp/guix-tests/store/n42gl0r3rg7c9fk8gqj42lbs1cbmjr27-glslang-10-11.0.0.drv /tmp/guix-tests/store/v4j4g5skcj8gh1ysvdyvk7qidy8v6w2y-glslang-10-11.0.0-checkout.drv /tmp/guix-tests/store/r4lc1sq6n2ym15189qzn2djdqn1czxci-wayland-protocols-1.23.drv /tmp/guix-tests/store/1rcip87y8vnf8rpzlaiwm9x4frzpnjz0-wayland-protocols-1.23.tar.xz.drv /tmp/guix-tests/store/r99ih3gwfkmdfys07whvzpnz12phs3zx-mesa-21.2.5.tar.xz.drv /tmp/guix-tests/store/8f7h3xaimxwhgmddi7gkwmnbfbrbj8zz-mesa-21.2.5.tar.xz.drv /tmp/guix-tests/store/wcmlq4nifvj31a6b74mak4c7cfpk1z58-libva-without-mesa-2.13.0.drv /tmp/guix-tests/store/i1p2bvycbhfp58w9z489szi8mhlyvz8g-libva-2.13.0.tar.bz2.drv /tmp/guix-tests/store/ww60vxx2y1jh92pmsin1gdjb32r89ynl-libxvmc-1.0.12.drv /tmp/guix-tests/store/bkb953r6s98f2pmiy8akpamqbrdp8jiv-libXvMC-1.0.12.tar.bz2.drv /tmp/guix-tests/store/yyiw68ya5300h10vp671dppa5s6y9ss1-libxxf86vm-1.1.4.drv /tmp/guix-tests/store/l2klf72ywcfsdgc8dskr84xlqkdc76cl-libXxf86vm-1.1.4.tar.bz2.drv /tmp/guix-tests/store/s5bhqms3vhv584p1h7wfy562s1av1ww7-libxcvt-0.1.1.drv /tmp/guix-tests/store/8m0wclr8kah7akgcb7gvcz0dvrmv57vr-libxcvt-0.1.1.tar.xz.drv /tmp/guix-tests/store/sdwradfjm675a3lj7xznfzqb6a8dcr40-libxres-1.2.1.drv /tmp/guix-tests/store/sfyb84mwlh3a1bhpasilhglx0mgp5nm0-libXres-1.2.1.tar.bz2.drv /tmp/guix-tests/store/vakx8328r7y1n3h1hwh7qc7971dad6gz-libepoxy-1.5.5.drv /tmp/guix-tests/store/pd2alhk34aq0i5n1jdlpk6ybkjl5ayqm-libepoxy-1.5.5.tar.xz.drv /tmp/guix-tests/store/vj75b102g8cvrwn17xj7mqzmpkzxg0xv-libxfont-2.0.4.drv /tmp/guix-tests/store/rypixq3myxcdh4ivj5574wlfvz5kpiw1-libXfont2-2.0.4.tar.bz2.drv /tmp/guix-tests/store/zqi2n34r35gkr47d5hivr20y4b0hqybw-xorg-server-21.1.1.tar.xz.drv /tmp/guix-tests/store/n0mwrdy5wsdpn9r4mgx2y18dkrq6mhly-xorg-server-21.1.1.tar.xz.drv /tmp/guix-tests/store/y16hpc0qvgpxyv4n1d4wnyabl9a8c2gx-xorg-server-use-intel-only-on-pre-gen4.diff.drv /tmp/guix-tests/store/8lzbr6m2h67xql4hh56gqc9mgjrg6qyj-libxinerama-1.1.4.drv /tmp/guix-tests/store/fh8w9yi1zcysy311120wych7db3n78zd-libXinerama-1.1.4.tar.bz2.drv /tmp/guix-tests/store/a0pxdi1vfz317ms0c812z8357xxgs8xr-cups-2.3.3op2.drv /tmp/guix-tests/store/gmvj16vndjyhyfqkh6n2yw6j99x73vjf-cups-filters-1.28.9.drv /tmp/guix-tests/store/27ic97iwcqsqcmrhj67lx16j8wi3x0qz-grep-3.6.drv /tmp/guix-tests/store/h15q26zy0r6f9jskz77bybi08myqliv0-grep-3.6.tar.xz.drv /tmp/guix-tests/store/8ip7i5j2c69fgzan3i1rphdx4902rysk-ghostscript-with-cups-9.54.0.drv /tmp/guix-tests/store/8z8d5nni8q9rw4gqbq7ldzk8668g3hkk-cups-minimal-2.3.3op2.drv /tmp/guix-tests/store/kbxih53z6hksi6bbbj9956izdpswbsrb-cups-minimal-2.3.3op2-checkout.drv /tmp/guix-tests/store/inl6j4q2b682w1k93663pn4x1w3vzbv3-cups-filters-1.28.9.tar.xz.drv /tmp/guix-tests/store/l77aqg6hzn4i2mdgf3wn0ha5dd3fns21-cups-filters-1.28.9.tar.xz.drv /tmp/guix-tests/store/msbxcxqh5wjgswahsi2dah581yvfpqp4-qpdf-10.0.1.drv /tmp/guix-tests/store/ln7l1nz8b7whxxsrxc7dkxc905rzia7x-qpdf-10.0.1.tar.gz.drv /tmp/guix-tests/store/plwp5ir2xaln7ffd9syfhk6d8m882k5y-ijs-9.54.0.drv /tmp/guix-tests/store/qqadvi6vj5hxn3i86w8nhswpl0r78z4d-avahi-0.8.drv /tmp/guix-tests/store/05mxrlvm0zl5rdhcnpncnfkwlzcccfwb-avahi-0.8.tar.xz.drv /tmp/guix-tests/store/kv5zjaqcw6m0dsqb6d1ifpsp6iza8mx7-avahi-0.8.tar.gz.drv /tmp/guix-tests/store/63hzg9lj4qbc0yzjcqldmkj0l5x4brjm-libdaemon-0.14.drv /tmp/guix-tests/store/cizg1dvmf4l2n1vyr2p9rdi1hc0g8m1f-libdaemon-0.14.tar.gz.drv /tmp/guix-tests/store/jvdj9bd8wdw01qvsh6cwlznfwg1xmf3f-libevent-2.1.12.drv /tmp/guix-tests/store/w358xfjmb9w4ny9bd4p2rl0lf8smqp13-libevent-2.1.12-stable.tar.gz.drv /tmp/guix-tests/store/nyc558r8806f7b4f8cwp2mdxp1qgx0aj-libcap-2.51.drv /tmp/guix-tests/store/1l45dy2rjh880s0k4mij9iwj4b6lwzk0-libcap-2.51.tar.xz.drv /tmp/guix-tests/store/cpb9gxknn6zdszgwfmr2lplkrbpq2mmy-shared-mime-info-1.15.drv /tmp/guix-tests/store/849616pvharfhc6r4p8kflz647d4mm3b-shared-mime-info-1.15.tar.xz.drv /tmp/guix-tests/store/is3gn0h0zjvg11gjrzj9i1pfvf9dw8z4-atk-2.36.0.drv /tmp/guix-tests/store/zd74cfmqfcps99lw7x0rc87phkww8mq8-atk-2.36.0.tar.xz.drv /tmp/guix-tests/store/j4b912r65vsqmbhq5f9ladja2d19iq0d-gtk+-2.24.33.tar.xz.drv /tmp/guix-tests/store/nal9xpj51d227xgdda4458cdlalibd8b-gtk+-2.24.33.tar.xz.drv /tmp/guix-tests/store/l9ywwqvvdzwyf244618hprsclq2wazbj-librsvg-2.40.21.drv /tmp/guix-tests/store/0r7iyfdx2njcgqi4bsbgrncn0xmf58pr-libgsf-1.14.47.drv /tmp/guix-tests/store/scqlzp3wrmjxiiwqvd6z5vz10gskny78-libgsf-1.14.47.tar.xz.drv /tmp/guix-tests/store/xwgkkzn7v0lfjc5vjj5nbk73rfn74h9b-gdk-pixbuf-2.42.4.drv /tmp/guix-tests/store/6ms48d12d6h6p4mlbvy2pc92z7k59mag-gdk-pixbuf-2.42.4.tar.xz.drv /tmp/guix-tests/store/jv424rnsi01kjqrq04970gpk5cnqihw7-docbook-xml-4.3.drv /tmp/guix-tests/store/rym91smpacy7q9m2vlr0n23znr84lxq4-docbook-xml-4.3.zip.drv /tmp/guix-tests/store/hm5p7xl3ad97k70nqp9ydij4da2l31zk-libcroco-0.6.13.drv /tmp/guix-tests/store/03ddw7xmnib10zap1z2nyn9fpqpv8wmz-libcroco-0.6.13.tar.xz.drv /tmp/guix-tests/store/6cvwsd8snmnc25606gfvdmw7gf0c6l83-libcroco-0.6.13.tar.xz.drv /tmp/guix-tests/store/s21fp4h91fgjg1n2jmrjwmdkd5ijz05h-librsvg-2.40.21.tar.xz.drv /tmp/guix-tests/store/nmp0vl6aalsnqz0pbfzgb6pqgnjvi4zf-libxi-1.7.10.drv /tmp/guix-tests/store/xpwxn95cj41w1cmv4rfh1faccw57aqpi-libXi-1.7.10.tar.bz2.drv /tmp/guix-tests/store/xz1bs852bpbnv3q8fji8my1aiarvs6n4-libxkbcommon-1.3.0.drv /tmp/guix-tests/store/shk13fr21d2nw3gcrnwribkipvqykh23-libxkbcommon-1.3.0.tar.xz.drv /tmp/guix-tests/store/zmz647jls2d4rjwsggpwilisnzp3xr9p-libxcursor-1.2.0.drv /tmp/guix-tests/store/6qxacvvacq6srhfwflrs9whb0yzf2pv9-libXcursor-1.2.0.tar.bz2.drv /tmp/guix-tests/store/2wyhxyh081zi65pipslbd5a0vxw5s7v3-iso-codes-4.5.0.drv /tmp/guix-tests/store/3yab4djyskpcfqqrpi3v4szh15y9428j-iso-codes-4.5.0-checkout.drv /tmp/guix-tests/store/7jqr6jjapmapapbynipwwq48rqa4ijbm-libxtst-1.2.3.drv /tmp/guix-tests/store/938b3my99rmdlrjyc1j8b6hyx8zlbp23-libXtst-1.2.3.tar.bz2.drv /tmp/guix-tests/store/ak1xv6wrzjmcs292zwf5sci8fwcszhqd-enchant-1.6.0.drv /tmp/guix-tests/store/a93yh0raz698p6dxjfv8rjaaq7qmfscl-hunspell-1.7.0.drv /tmp/guix-tests/store/4ns47qsgfwf64s3rfn1znk7656215rkf-hunspell-1.7.0-checkout.drv /tmp/guix-tests/store/kc7paqqc6hkxm704k0kqb8ikniigscqq-enchant-1.6.0.tar.gz.drv /tmp/guix-tests/store/xcc3w83ipc7zysg0gpsmnf8ng7d0j1dh-aspell-0.60.8.drv /tmp/guix-tests/store/w8fgf8cgz9xnwbc0b7wrsrhfzd2qp5qn-aspell-0.60.8.tar.xz.drv /tmp/guix-tests/store/yq761hm160d0prj7252123mk3sp0z2jy-aspell-0.60.8.tar.gz.drv /tmp/guix-tests/store/aly8m8ln4wbfqph902qywcidshggpxm1-at-spi2-atk-2.38.0.drv /tmp/guix-tests/store/c12i2pzpvy9d5hixf0b91mcxqazp42qd-at-spi2-core-2.40.0.drv /tmp/guix-tests/store/8mkc41a2vdl35pv962aihgmhs02jjakr-at-spi2-core-2.40.0.tar.xz.drv /tmp/guix-tests/store/f3zq62rvq1h94yw35244sp6w6b39dkpl-at-spi2-atk-2.38.0.tar.xz.drv /tmp/guix-tests/store/bnazxgffckbl2jfzxj9l7lgxgp1kk85r-gtk+-3.24.30.drv /tmp/guix-tests/store/0jmp7g9m6jhmlqsbrb05n37hjbzn13aw-graphene-1.10.6.drv /tmp/guix-tests/store/gaf065y20vzn7y0ni9xh5xvy74kdxxpn-mutest-0.0.0.drv /tmp/guix-tests/store/kxnz9zq7fclfvsz56q8xr05hj4250hkd-mutest-0.0.0-checkout.drv /tmp/guix-tests/store/j81x4wry2h66qg0i5l2xlh60f1ckfxj2-git-minimal-2.33.1.drv /tmp/guix-tests/store/vwdih22sscz6agfisazfqh4p11gybrfr-git-2.33.1.tar.xz.drv /tmp/guix-tests/store/jdpdzgaywn7310cmzq69a9mdg30ilhfv-graphene-1.10.6-checkout.drv /tmp/guix-tests/store/1953wjqf3sw2lwc7x207rnhy4pkp8bzd-libpsl-0.21.1.drv /tmp/guix-tests/store/npx78j0nqw43j8h6gkx5v8q537x0zkm9-libpsl-0.21.1.tar.gz.drv /tmp/guix-tests/store/337jzrwv31gs5c2i3j2zpvyrnx3vp950-gtk+-3.24.30.tar.xz.drv /tmp/guix-tests/store/y470jr0b736h62n9jplma15wb0cvpanx-gtk+-3.24.30.tar.xz.drv /tmp/guix-tests/store/3r0hhs24914k4w23q1g1wy0y9s5g22il-hicolor-icon-theme-0.17.drv /tmp/guix-tests/store/2j6c7gsq4wcbjdi895k36rlqnqgwccxp-hicolor-icon-theme-0.17.tar.xz.drv /tmp/guix-tests/store/9nccwbrvif02xxdw0fb0cxj0s4s7b13q-colord-minimal-1.4.5.drv /tmp/guix-tests/store/cpxzs0p59d5w4bdzmg0wb4s6izzxpb5y-libgudev-236.drv /tmp/guix-tests/store/2vsq760q0fwd1pw0s6ahfhh30ssh9znr-libgudev-236.tar.xz.drv /tmp/guix-tests/store/f94i9rlkn9w4i76ph9spxy6dn7n7bhn9-colord-1.4.5.tar.xz.drv /tmp/guix-tests/store/i8hxz8bqlv70vv1bssfzws1z05pi4q7x-sane-backends-1.0.32.drv /tmp/guix-tests/store/kdgy3rwn09xj6wrncf8gzrmmkjnhfyrj-autoconf-archive-2021.02.19.drv /tmp/guix-tests/store/5319mkj0w7kyrixl1d8v6852rhyp2rbz-autoconf-archive-2021.02.19.tar.xz.drv /tmp/guix-tests/store/mjzdzmb6565bkbxzr3m4d8kl8vxwyvyi-hplip-minimal-3.21.10.drv /tmp/guix-tests/store/0x393jcfkj7rlck0c3xirc4j8dmzhbk8-sane-backends-minimal-1.0.32.drv /tmp/guix-tests/store/nyvbwmp5r4fvhvzikcf8b4kig7pd3g3g-libusb-1.0.24.drv /tmp/guix-tests/store/wminr6yzj5j504qx7s5k0zm1q3l9d8yl-libusb-1.0.24.tar.bz2.drv /tmp/guix-tests/store/z2a2hrzqybwmz2i41p7wqb524xlsxcq0-sane-backends-minimal-1.0.32-checkout.drv /tmp/guix-tests/store/nrmzdkk4lzw29ivxaf3ww7mlgpq63ynk-sane-backends-minimal-1.0.32-checkout.drv /tmp/guix-tests/store/jidxq8fvwqda65rzili4ld4nvw5bxkly-hplip-3.21.10.tar.xz.drv /tmp/guix-tests/store/qrqk2b5i3b63xpr0hm2sx58dxwnm90y9-hplip-3.21.10.tar.gz.drv /tmp/guix-tests/store/w8h45wgk21mqcj4pjk2mfi12nfky16gf-polkit-duktape-0.120.drv /tmp/guix-tests/store/1ahv9biwiqjpw9ap24s7qmdnz1gwmywk-elogind-246.10.drv /tmp/guix-tests/store/082awpzp75l8s1pqf31yym1y5lvlg1g5-shadow-4.8.1.drv /tmp/guix-tests/store/gf16p699ahr7vbz0hadybq22c928k5rv-linux-pam-1.5.1.drv /tmp/guix-tests/store/c92m79y0gc6m80gf926j38428b12f82i-Linux-PAM-1.5.1.tar.xz.drv /tmp/guix-tests/store/8qxkyympyn7imadwvgy4lzlqzbj8ganw-Linux-PAM-1.5.1.tar.xz.drv /tmp/guix-tests/store/m6dams3882kszqiwy4v4m4kkc1jybj8i-shadow-4.8.1.tar.xz.drv /tmp/guix-tests/store/jnmwcp0li2jbz9dp3bkmz9q91waqn1rb-shadow-4.8.1.tar.xz.drv /tmp/guix-tests/store/446k6zyrxk1wafj1g7cyh9gzblbqm85z-elogind-246.10-checkout.drv /tmp/guix-tests/store/17nk73prqc8inw38vi5wcswpkx7627c5-elogind-246.10-checkout.drv /tmp/guix-tests/store/g9r9d57bxxgqsr953vfi5pddcfq8zl7n-kexec-tools-2.0.23.drv /tmp/guix-tests/store/c191x4dggyr1wg2cps4d82q933a9y8gw-binutils-next-2.37.drv /tmp/guix-tests/store/hcaf3pss2w1idlp79raigxg8mckzlzm2-ld-wrapper-0.drv /tmp/guix-tests/store/y45mhq799sw29ss8p1zrw10431aw5xm1-kexec-tools-2.0.23.tar.xz.drv /tmp/guix-tests/store/sd3cwl4rq49ci499hpxhkgvixr1yz01s-shepherd-0.8.1.drv /tmp/guix-tests/store/g17zvd9vf2yyadylx3v4ic4c1wm2l5kz-guile-readline-3.0.7.drv /tmp/guix-tests/store/gk3x735dci3qaw541pl9l90z0f5w248b-shepherd-0.8.1.tar.xz.drv /tmp/guix-tests/store/xpcy4xvdh1psxz8s6rfa26hffblgykvs-shepherd-0.8.1.tar.gz.drv /tmp/guix-tests/store/4kbc815i2qqrf0v7w82x91mnmh5p0v4k-duktape-2.6.0.drv /tmp/guix-tests/store/si9di59v8h2ffasn53v6c3apm7mjpc2g-duktape-2.6.0.tar.xz.drv /tmp/guix-tests/store/5kkjvpn88fmqcs7n7x3ii0py8wbh54l3-polkit-0.120.tar.xz.drv /tmp/guix-tests/store/qm12dh10fkig6xrhnaw6r80n038rznwx-polkit-0.120.tar.gz.drv /tmp/guix-tests/store/xszgf0vjvmkigawqyl8g13qwnc9dndkq-nspr-4.31.drv /tmp/guix-tests/store/54iajabrw4ml29ga7nms0a8cdkrv74iw-nspr-4.31.tar.gz.drv /tmp/guix-tests/store/wdygi599pw3n3xb0d0kimc54bpq26ysx-vala-0.54.2.drv /tmp/guix-tests/store/v3k2cjh75v89ln1gqrnfgaxiq723lfpd-vala-0.54.2.tar.xz.drv /tmp/guix-tests/store/wv5lk4cpdxy625x04mighymlvvb1f3rs-dbus-glib-0.110.drv /tmp/guix-tests/store/1kyaamk4k5rzwd4d3ad6flyw0m8g3856-dbus-glib-0.110.tar.gz.drv /tmp/guix-tests/store/z6ynrgrgzqlwbm28w22g2h7ca3dp1030-gusb-minimal-0.3.5.drv /tmp/guix-tests/store/cayiipbhr1ywbjaq7089kxifwvdniy61-gusb-minimal-0.3.5-checkout.drv /tmp/guix-tests/store/9xqcgq7j6477w57088ps8b2y017h0bgj-sassc-3.6.2.drv /tmp/guix-tests/store/fggwzjk8spv55nw71ablxlqf5xxjkgch-sassc-3.6.2-checkout.drv /tmp/guix-tests/store/shamg168gyvk597fr27mc26zh8qqfz8x-libsass-3.6.4.drv /tmp/guix-tests/store/kp45f9q1ljsxp295phpkizyricbdry98-libsass-3.6.4-checkout.drv /tmp/guix-tests/store/b2w2g0nzs8mn945fpq0p2w8pb2q86p38-docbook-xml-4.1.2.drv /tmp/guix-tests/store/55v3by9g3l7afl0bl167acgwz3limirf-docbkx412.zip.drv /tmp/guix-tests/store/gamlxl7jj7p707vn7ni35qywij50r73v-libcloudproviders-minimal-0.3.1.drv /tmp/guix-tests/store/nlrdxjz5waw9gihj2kf8r6k8hipgdrjf-glib-networking-2.70.0.drv /tmp/guix-tests/store/8gpp53y8xhshnr5k57l71fmmcafyjd2i-libproxy-0.4.17.drv /tmp/guix-tests/store/xakdq8snqi10vhfmphyf27l7gky3fis1-libproxy-0.4.17.tar.xz.drv /tmp/guix-tests/store/9piia7lk2294nh1rz9970gfn51njm521-glib-networking-2.70.0.tar.xz.drv /tmp/guix-tests/store/n873rd6w6fi4yksq2jzr9law846z5gxm-glib-networking-2.70.0.tar.xz.drv /tmp/guix-tests/store/lhlg5ihx4q1pma319hirj9l4wz6lzshd-gsettings-desktop-schemas-41.0.drv /tmp/guix-tests/store/nqqcxxy2kngfyapc7m5bfjbxy77dxigd-gsettings-desktop-schemas-41.0.tar.xz.drv /tmp/guix-tests/store/q8w365ifjm7ikcr8y0af88d2z3nii12m-gnome-backgrounds-40.1.drv /tmp/guix-tests/store/b3cn2ky29asrkidfsr9zn7lv6raljkw0-gnome-backgrounds-40.1.tar.xz.drv /tmp/guix-tests/store/riv2lg1dhznfwpkfsm5x0p3gbg13yakr-libcloudproviders-0.3.1.tar.xz.drv /tmp/guix-tests/store/lxsyx955wgklzhhbxnkp4qk72j6q1gbh-json-glib-minimal-1.6.2.drv /tmp/guix-tests/store/yz45iwpqml2chkyxnqx5xfnlva2ffrqc-json-glib-1.6.2.tar.xz.drv /tmp/guix-tests/store/p849b27h90zv6qd80bg2ygmz97s41qcr-rest-0.8.1.drv /tmp/guix-tests/store/is52g8h2dcgvr0k7d9xrjgnqylxsi9ak-rest-0.8.1.tar.xz.drv /tmp/guix-tests/store/q3xix2q60zc4cw05fr22yglnx5kgffdd-libsoup-minimal-2.72.0.drv /tmp/guix-tests/store/6zy6mzpmqx8cqcncqispwjlcaidsd0bs-samba-4.13.10.drv /tmp/guix-tests/store/00mjcznbdwhirl3lr1vxhajpxp4fw5g6-gamin-0.1.10.drv /tmp/guix-tests/store/sza3vij6wlxg4z5vr1xr6vnjgv0jcp93-gamin-0.1.10.tar.bz2.drv /tmp/guix-tests/store/7ssbz6wl5lj4b3q88fchigx67rcsrbff-samba-4.13.10.tar.xz.drv /tmp/guix-tests/store/1rfz8k9zgv5s6ld1vx1wbrv8afas9nvv-samba-4.13.10.tar.gz.drv /tmp/guix-tests/store/82jkmdwj1d53wwa6bdyhnn90r3abiq2q-openldap-2.4.57.drv /tmp/guix-tests/store/81l7fdpcbb6wfz44rxr5si8apcyb6dpl-bdb-5.3.28.drv /tmp/guix-tests/store/fsb8j2wcgp0qz6c44cgqh028qpi6sak2-db-5.3.28.tar.xz.drv /tmp/guix-tests/store/akhcawvpvwjk4arrzcm0xawlqjs39xld-db-5.3.28.tar.gz.drv /tmp/guix-tests/store/a82yvd9rsqlmagir880npckdwkhgjsvx-openldap-2.4.57.tgz.drv /tmp/guix-tests/store/gdy8gamw9jjhlin0iwyzqlf2sbsrfk5z-cyrus-sasl-2.1.27.drv /tmp/guix-tests/store/wnpnkdy9dai5n4k3xpjnjd61s316n21g-cyrus-sasl-2.1.27.tar.xz.drv /tmp/guix-tests/store/kf93w9r4v3fwgcy5jvpy9fkaspgw6d6g-cyrus-sasl-2.1.27.tar.gz.drv /tmp/guix-tests/store/vrmjmliigr4cjjdg7rbadj4hzivasg62-groff-1.22.4.drv /tmp/guix-tests/store/p8lbfpyyqyx0qvx3pbhy84gzsc5yykhn-groff-1.22.4.tar.gz.drv /tmp/guix-tests/store/vrv2lnpjyh1hcrxjf66rr9a4zqz3x60i-psutils-17.drv /tmp/guix-tests/store/p8lxnszfcd4db52k2jgjgma6z261ccpn-psutils.tar.gz.drv /tmp/guix-tests/store/889jddavy0bqvldqfihv1ma9l48dp25b-gpgme-1.15.1.drv /tmp/guix-tests/store/hdmad6msgm00yds6rf171y5c27v9jhh9-gnupg-2.2.30.drv /tmp/guix-tests/store/5dx0qbsmw5bmckcsklja5ir2lga6300b-gnupg-2.2.30.tar.xz.drv /tmp/guix-tests/store/viyc43nny3nfb31s7f1c34mrmy6gxl97-gnupg-2.2.30.tar.bz2.drv /tmp/guix-tests/store/anzyihil4m1vkp8xba9kqzh1qbxp4f5m-pcsc-lite-1.9.3.drv /tmp/guix-tests/store/zvp4pkgj253ssjlblbhnv5acp2p1rcm5-pcsc-lite-1.9.3.tar.bz2.drv /tmp/guix-tests/store/cgzkx7crwj45x4c4nc3sdfjbc5y3cjzh-npth-1.6.drv /tmp/guix-tests/store/rp53sikc2550rbrawqna1p4mwzi11qcv-npth-1.6.tar.bz2.drv /tmp/guix-tests/store/q0jvqx07lvkmz5ihg03psjsvikk0a3yp-pth-2.0.7.drv /tmp/guix-tests/store/hxpgw1azlzxla19jfb0gskp2gzhsabdk-pth-2.0.7.tar.gz.drv /tmp/guix-tests/store/vwk86m4ighfxaajsn4l7682xhy2ymczv-config-0.0.0-1.c8ddc84.drv /tmp/guix-tests/store/s68h2c2i3ryhydxzf2ssblpmmxk5p66z-config-0.0.0-1.c8ddc84-checkout.drv /tmp/guix-tests/store/qz2cxdahz57cidzvipqj2pp5rhaypmp9-libassuan-2.5.5.drv /tmp/guix-tests/store/gigpn2afmnzgk3vwrwsl622maw9jbml9-libassuan-2.5.5.tar.bz2.drv /tmp/guix-tests/store/yvm0pp043209wkhqxi9av5zjziyapn36-libksba-1.6.0.drv /tmp/guix-tests/store/g0b876rlivwx8p8jcsqfc93vx79w0vyz-libksba-1.6.0.tar.bz2.drv /tmp/guix-tests/store/vs03h3mvgf47n6pazqbhr4zl33az2zj4-gpgme-1.15.1.tar.bz2.drv /tmp/guix-tests/store/94xqw5rkkpz8c1p2b2bswplm7i7piwmh-popt-1.18.drv /tmp/guix-tests/store/i26vs037bcwq7jnkq3ssgc8dg0n3avvc-popt-1.18.tar.gz.drv /tmp/guix-tests/store/d8xq55ycr2bvc44w9vvga561sr34y960-libtirpc-1.3.1.drv /tmp/guix-tests/store/l2r03nwqxqjf1851k25vq9jddm8y9d8f-libtirpc-1.3.1.tar.bz2.drv /tmp/guix-tests/store/g90vvcz1pzdwq9acnjl0rahzl1xp5byl-heimdal-7.7.0.drv /tmp/guix-tests/store/sjwx9pxi83dadixqz47lp366jmxjs90j-heimdal-7.7.0.tar.xz.drv /tmp/guix-tests/store/mbv16jxdpbyn93bmzh0lf3l0hzhmj5yy-heimdal-7.7.0.tar.gz.drv /tmp/guix-tests/store/jsz5zjs20k0g0vavp9akjr14z3wfhfpb-ldb-2.4.1.drv /tmp/guix-tests/store/l791laaszj8d3mpx64zsdv342l23hvic-tevent-0.11.0.drv /tmp/guix-tests/store/iabkr1r1zk3kdipiif95gkjw0rkkls60-tevent-0.11.0.tar.gz.drv /tmp/guix-tests/store/w5fn1mq0srplwrmk31rm2i2bqb7kivv8-talloc-2.3.3.drv /tmp/guix-tests/store/2sx3dj6ryb40761pbda831yad2hi4v5w-talloc-2.3.3.tar.gz.drv /tmp/guix-tests/store/q3j3d63rranmsqv5gyghv0x3l5vs8dh1-lmdb-0.9.29.drv /tmp/guix-tests/store/ifjp6z3skby94d4n6cfnaz7ijrpaj3dl-lmdb-0.9.29-checkout.drv /tmp/guix-tests/store/y5ry8z36pwasdqfyfw3ammygwzb12c4m-tdb-1.4.5.drv /tmp/guix-tests/store/cw7w2v0q58hx32zw61py6phy60yr1cph-tdb-1.4.5.tar.gz.drv /tmp/guix-tests/store/znp234pfz6m9g47gnr6hbb1lcmpv0swx-ldb-2.4.1.tar.xz.drv /tmp/guix-tests/store/im9bjc6a0570vg10zj601m1l195wdafh-ldb-2.4.1.tar.gz.drv /tmp/guix-tests/store/p3g1253jznnnv9m60fdafbvl4xaavp1k-python-iso8601-0.1.13.drv /tmp/guix-tests/store/aax0vmnzw2g0rvid773wkwg2f0wpka6k-iso8601-0.1.13.tar.gz.drv /tmp/guix-tests/store/pq6wk99f6i2i5lm1p843w834y1fafjpz-perl-parse-yapp-1.21.drv /tmp/guix-tests/store/5rzpnxpbvyg58cn6vxmx04kzi2ycl1d5-Parse-Yapp-1.21.tar.gz.drv /tmp/guix-tests/store/xn6x56jls7nwqaz95wdwi25v880g91z8-rpcsvc-proto-1.4.drv /tmp/guix-tests/store/sxmz0f3w0s9s8n7f5wabkzkvlm93fqwb-rpcsvc-proto-1.4.tar.xz.drv /tmp/guix-tests/store/gcjf1waa4zl9d2w36s9diwm46l9ffph4-httpd-2.4.52.drv /tmp/guix-tests/store/66d050g2wvpnsc493993jdcr0aax2mvy-apr-1.7.0.drv /tmp/guix-tests/store/n4iifygzr0z00q0yanfn2ilr49dvdwxi-apr-1.7.0.tar.xz.drv /tmp/guix-tests/store/mvmxxxv9329799j8k90mspfb3bs9fcjg-apr-1.7.0.tar.bz2.drv /tmp/guix-tests/store/w4brg4adv93gdk4mlx3v61jb4v2yll7k-pcre-8.45.drv /tmp/guix-tests/store/xbmxwzhcj11xclcy1x5jqwjcmvckkkvv-httpd-2.4.52.tar.bz2.drv /tmp/guix-tests/store/z3f881dri1cf7vycm2pw02vc628cgjbf-apr-util-1.6.1.drv /tmp/guix-tests/store/ix7s1881lq6rhnwf5999ad8h8lnqggik-apr-util-1.6.1.tar.bz2.drv /tmp/guix-tests/store/i8q22dnqbia3ck614icvcma0ly1vyq63-vala-0.52.0.drv /tmp/guix-tests/store/234cqyri7aywx9v24s6szp5x5aiaarlq-vala-0.52.0.tar.xz.drv /tmp/guix-tests/store/nf25gh5aryj4z6ar59r75hssfp5kn6n4-libsoup-2.72.0.tar.xz.drv /tmp/guix-tests/store/xc7lnbrhghak50iahzmqkg9z5g8mry45-brotli-1.0.9.drv /tmp/guix-tests/store/4bkqcc1pi7w5bbwpac7sbp1m38fwn5bk-brotli-1.0.9-checkout.drv /tmp/guix-tests/store/smkqflb4kpmzfg7ivhcdh0m96zykzw5c-brotli-1.0.9-checkout.drv /tmp/guix-tests/store/chlp2bkxgbpa9glwg4c66q4z1j2gpqys-extra-cmake-modules-5.70.0.drv /tmp/guix-tests/store/i5bqb3rhhjm9w619wl2ckbig2qwymxk6-extra-cmake-modules-5.70.0.tar.xz.drv /tmp/guix-tests/store/m5z5xr5vjywi6a19mq7vglgyldq2jzzd-qtbase-5.15.2.drv /tmp/guix-tests/store/2ykha2hc632p50zxk1qir4r9y0qiqnjw-xdg-utils-1.1.3.drv /tmp/guix-tests/store/48vzxfmnwvgkzwvhxyvpfq3pwjajm117-perl-file-desktopentry-0.22.drv /tmp/guix-tests/store/4q65h7xhy8kbkzj30s7rh1s8nlggf259-perl-uri-5.05.drv /tmp/guix-tests/store/mxnkl5rzx474bzfqh5i6p89d3f60k7ps-URI-5.05.tar.gz.drv /tmp/guix-tests/store/rk3pc5h676kyn657malaykjjjvzc1wk7-perl-test-needs-0.002009.drv /tmp/guix-tests/store/dd45gmkf8hkmw6cr5qy1m1hsz2m48qn7-Test-Needs-0.002009.tar.gz.drv /tmp/guix-tests/store/8d2k45s981sp0lp8lvdyjcbgasbyjzxx-File-DesktopEntry-0.22.tar.gz.drv /tmp/guix-tests/store/9zlv79ywj7ir8fxf4dnhsxjaia536cs6-perl-file-basedir-0.08.drv /tmp/guix-tests/store/04kg0x46kjrjhxrmwqddd0kmzg6yskfd-perl-cpan-meta-2.150010.drv /tmp/guix-tests/store/3xbblh9q03wkinhppx94lsyw4cznd9pq-CPAN-Meta-2.150010.tar.gz.drv /tmp/guix-tests/store/7cxa6x3fs3mb2hblvnzigjnzskmdx2ih-perl-parse-cpan-meta-2.150010.drv /tmp/guix-tests/store/gyxah97nb34z2l70ghyzgc0ypn86l5dx-perl-cpan-meta-yaml-0.018.drv /tmp/guix-tests/store/5ngr6g0iqi4dj8s27yrfybv38nqrzzz6-CPAN-Meta-YAML-0.018.tar.gz.drv /tmp/guix-tests/store/vca8zzap8k41maynsxbxna3ldmcn4gkd-perl-cpan-meta-requirements-2.140.drv /tmp/guix-tests/store/kd2gq3315fyp62vik956s13kbm05fsqn-CPAN-Meta-Requirements-2.140.tar.gz.drv /tmp/guix-tests/store/6dlq1zx8f87palkjqs1q2x962lpjl5kr-perl-module-build-0.4231.drv /tmp/guix-tests/store/3dr2z7qcc09pjcw2n85c92awr67v0d34-Module-Build-0.4231.tar.gz.drv /tmp/guix-tests/store/8w33xjjv3n1k2mpl5h3simwqxbcjzav4-File-BaseDir-0.08.tar.gz.drv /tmp/guix-tests/store/b23fdfp2awhv5g9p8zxg1kkzw5lggyjw-perl-devel-symdump-2.18.drv /tmp/guix-tests/store/gh9vb3zjzri8wxfwrsx2hnhyv88z9358-Devel-Symdump-2.18.tar.gz.drv /tmp/guix-tests/store/ja2p1cdy0s9nqiqvcm7vd906nr932dvj-perl-pod-coverage-0.23.drv /tmp/guix-tests/store/dqgfn54qafr39x1h689cz60ww4akr9sk-Pod-Coverage-0.23.tar.gz.drv /tmp/guix-tests/store/w4k2k7r8wzkf2ij5ldf2qc4fx7ljqanf-perl-pod-parser-1.63.drv /tmp/guix-tests/store/5c2j3zr38kpg8dmnpspc5k74fy857cj5-Pod-Parser-1.63.tar.gz.drv /tmp/guix-tests/store/mxm0rz4k1hdal56fkjzbw7qwfm94bp39-perl-ipc-system-simple-1.26.drv /tmp/guix-tests/store/jakpxym1b9pwblklb5wacqjbs77bj88m-IPC-System-Simple-1.26.tar.gz.drv /tmp/guix-tests/store/spcsmd5v4ly3nm1xp401807ij7snghgy-perl-test-pod-1.52.drv /tmp/guix-tests/store/m2mhndhixdj3a21yhiahhi1v6948p2bw-Test-Pod-1.52.tar.gz.drv /tmp/guix-tests/store/sw6zaqnwi9d9b1wyzqafm2zxq0vbva8s-xdg-user-dirs-0.17.drv /tmp/guix-tests/store/1bb47n7i4196z2zdvw9rdzzi35mfsa6f-xdg-user-dirs-0.17.tar.gz.drv /tmp/guix-tests/store/w4vc9lccrqhs7c6hcdxs142im8834k9y-perl-file-which-1.23.drv /tmp/guix-tests/store/232l7wlzqbi198hajlslgrq9yn0mnc9q-perl-capture-tiny-0.48.drv /tmp/guix-tests/store/swv64x3kzxxc95zbj7iqkx5c2qbx5ps6-Capture-Tiny-0.48.tar.gz.drv /tmp/guix-tests/store/5l44dn2g3spxx5cxhv85759z6fi6wzy1-perl-test-script-1.20.drv /tmp/guix-tests/store/dbcp6aahqjlzh1dh09pmq41gyjgclmsz-Test-Script-1.20.tar.gz.drv /tmp/guix-tests/store/x8lhjfcn07xfq2fbfhk7rzfxsjpdmbsr-perl-probe-perl-0.03.drv /tmp/guix-tests/store/0nry2askypi4qhbbf27lqjwc46falcar-Probe-Perl-0.03.tar.gz.drv /tmp/guix-tests/store/6j1p2arznbp8frl0wzv0shas81il5n85-File-Which-1.23.tar.gz.drv /tmp/guix-tests/store/yx7151hk8mlbip7p7zrfd7dmp4g10sm4-perl-test-pod-coverage-1.10.drv /tmp/guix-tests/store/rv2cazqa4hzkhh5yq7alhly1pjr5rz3i-Test-Pod-Coverage-1.10.tar.gz.drv /tmp/guix-tests/store/bpb10bqfavcxpmix4lw1pb8mykgalynk-gawk-5.1.0.drv /tmp/guix-tests/store/yqszk13mlq0bm6cw4xk8dfs8x5s72brk-libsigsegv-2.13.drv /tmp/guix-tests/store/g5vzh6a63kl79m419dmb0c3050zkm1d5-inetutils-2.0.drv /tmp/guix-tests/store/jsajnsc9fwq36pxmgyg4f7kldx4l4wdz-inetutils-2.0.tar.gz.drv /tmp/guix-tests/store/rsxj25ipcp5kzdgmgd59lfhdyijn1vgg-coreutils-8.32.drv /tmp/guix-tests/store/jjm9nw4i3sy0hdms679p0saq3ns99hih-w3m-0.5.3+git20210102.drv /tmp/guix-tests/store/014q6ksw63335cc2y5kgyc5rnp2cgw3p-imlib2-1.7.1.drv /tmp/guix-tests/store/ihwvdfz4hf11bbvmchwcj4g57qx8iyi4-giflib-5.2.1.drv /tmp/guix-tests/store/cvh8ar9yqg8q2fysn7di52liij5i74jr-giflib-5.2.1.tar.gz.drv /tmp/guix-tests/store/mda32pqx2prwcbcw9r1si48abch0gdks-libid3tag-0.15.1b.drv /tmp/guix-tests/store/gbc5c8mxdwgk156myc119dzc52nm234m-libid3tag-0.15.1b.tar.gz.drv /tmp/guix-tests/store/mr8dnx52vjd9ydcwzz5qj5xxsvchsjpj-imlib2-1.7.1.tar.bz2.drv /tmp/guix-tests/store/szsh0rd1kj9nfy2cgcg77m3hbhjlb81v-libwebp-1.2.0.drv /tmp/guix-tests/store/364m882wv6aqihvzwxr0xbf2wgdr64gi-libwebp-1.2.0-checkout.drv /tmp/guix-tests/store/6kax0nfrhbv11sw07pir4fc3pdbik2lv-glu-9.0.1.drv /tmp/guix-tests/store/lw2grwgmw3fsbh3ff7j0i4jsxa53ifr6-glu-9.0.1.tar.gz.drv /tmp/guix-tests/store/9vdmlbazk57wghszwp25anksnp6aqkzc-freeglut-3.2.1.drv /tmp/guix-tests/store/8c1qvjaja4kq58bsb6vl8rhz89h0xpjd-freeglut-3.2.1.tar.xz.drv /tmp/guix-tests/store/bwjhgan4wcfr1m40q28bf67vzrknnljc-freeglut-3.2.1.tar.gz.drv /tmp/guix-tests/store/kacy6af34527hhx42f7cdaiss8iszf0w-w3m-0.5.3+git20210102-checkout.drv /tmp/guix-tests/store/pc7qcjlchsbq9ki9zz3bldg790kqiwlr-xdg-utils-1.1.3.tar.gz.drv /tmp/guix-tests/store/pil4h0njnpq18aav1qidghbz4fgzk0d8-sed-4.8.drv /tmp/guix-tests/store/bhj4c2q1732gkqrgdvw8kz663vssda4f-sed-4.8.tar.xz.drv /tmp/guix-tests/store/q05drnblwylfn0drbyh2h9a14yj6bsdr-perl-file-mimeinfo-0.29.drv /tmp/guix-tests/store/vw5793s9n3qfpy1hgnfsvps2zpxrkx99-File-MimeInfo-0.29.tar.gz.drv /tmp/guix-tests/store/q0jzw0gqypbbqdxrjgjzr8f2214kcnvj-xset-1.2.4.drv /tmp/guix-tests/store/b1lgzbxvd7rpvf9in9xkc5x2z9fi9p48-xset-1.2.4.tar.bz2.drv /tmp/guix-tests/store/vl19cfr2f3k8474gi1g6a2b33blk84wi-xprop-1.2.5.drv /tmp/guix-tests/store/r18j86ykrrzr7vkb3mkck0lpadry0nyw-xprop-1.2.5.tar.bz2.drv /tmp/guix-tests/store/5hschmgyxcc7gnm6p1pz0cpk70fbzb1s-ruby-2.7.4.drv /tmp/guix-tests/store/p0y6mj365xhh7g30m3z9vmxijik1i89s-ruby-2.7.4.tar.xz.drv /tmp/guix-tests/store/xn88a8ymv5ykrnxg3l6c9b5vzkmywiip-ruby-2.7.4.tar.gz.drv /tmp/guix-tests/store/8680wmn44cz4jziczyi5h39f3cjk7b6k-libinput-minimal-1.19.2.drv /tmp/guix-tests/store/gkcq3x9lkg79znprv7zkqy3m83v1zzlr-libevdev-1.11.0.drv /tmp/guix-tests/store/wqqgnmhp8wx8hcb1rgvm8ydinyzdrv2a-libevdev-1.11.0.tar.xz.drv /tmp/guix-tests/store/ib4y8qszcpdk57xnzlzjz1rp7fw4dcyj-libinput-1.19.2.tar.xz.drv /tmp/guix-tests/store/sq21f5a20qk6gx27ap537dvlshdljmwr-mtdev-1.1.6.drv /tmp/guix-tests/store/ir6f6f0r0sfhmi6dvavjijbhcpq3h8q7-mtdev-1.1.6.tar.bz2.drv /tmp/guix-tests/store/v4jdzzzdf5hrk78av329kw96c5i3qfng-check-0.15.2.drv /tmp/guix-tests/store/mwwv2j5mnksv90mg1pkqmgfzhkfcbzcb-check-0.15.2.tar.xz.drv /tmp/guix-tests/store/f9d57xqxkdwalirc3k45yc73gqnln6j5-check-0.15.2.tar.gz.drv /tmp/guix-tests/store/wxmwi621zbgi19mwg6s7nrrshyr4ifjs-check-fix-test-precision-for-ppc.patch.drv /tmp/guix-tests/store/9zckpns68w91p514g9blbywrqwfaz9yj-mariadb-10.5.12.drv /tmp/guix-tests/store/151c3209b5zd756l6spf58mcs35y8fvy-mariadb-10.5.12.tar.xz.drv /tmp/guix-tests/store/9yx5x2jcrbqm3cqvzldmgmmq0idm77pl-mariadb-10.5.12.tar.gz.drv /tmp/guix-tests/store/f8q4d9jkq06xqf4l6fwa5fr8yzyx89d9-libaio-0.3.112.drv /tmp/guix-tests/store/yag9j7ycgkbzdgid4wxknyai0m11bag3-libaio-0.3.112.tar.gz.drv /tmp/guix-tests/store/kkbd2js27kxhfgkj29vsw7jkk8sz1m9y-pcre2-10.37.drv /tmp/guix-tests/store/19qkl32ja8ib1a7lsh4gwrj37drcrp4j-pcre2-10.37.tar.bz2.drv /tmp/guix-tests/store/ddybzv36lxqqbp9jkr6p73wgf6gnss5k-double-conversion-3.1.5.drv /tmp/guix-tests/store/wa9950s1i1k4hbgyx1v99avcz62llq37-double-conversion-3.1.5-checkout.drv /tmp/guix-tests/store/plaz442b4a06dfq0bilgci5353j6zajw-nss-3.71.drv /tmp/guix-tests/store/cgrhypv7k6422xd9k9nfvjni8wvpqb0q-nss-3.71.tar.xz.drv /tmp/guix-tests/store/zzvbcjmp1rykcwblk0w4w2lbvqs826q9-nss-3.71.tar.gz.drv /tmp/guix-tests/store/zhi7l92dja5c9vxa8blrn9nlqm7p5maz-libfaketime-0.9.9.drv /tmp/guix-tests/store/a3gv2hy9g38jgv1lbr4k89i7w09nqnc0-libfaketime-0.9.9-checkout.drv /tmp/guix-tests/store/qvhlraqz5cskinffqjhsz66x2s64ypg9-libmng-2.0.3.drv /tmp/guix-tests/store/mwk82cpav4d2k0xlka67xpm9i6mxxdgv-libmng-2.0.3.tar.xz.drv /tmp/guix-tests/store/qvkiw8z94qxmdbhbjkmgz62vkbjmc721-unixodbc-2.3.9.drv /tmp/guix-tests/store/xf0s9qlgl83xmlrvp3p5l7gnnrjb6ccl-unixODBC-2.3.9.tar.gz.drv /tmp/guix-tests/store/r6hxzh4fp6b6y5imjdqkqv0w6kx02hs6-vulkan-headers-1.2.164.drv /tmp/guix-tests/store/kfqxpg143nv2l7b37qgmvpgixdmsgasv-vulkan-headers-1.2.164-checkout.drv /tmp/guix-tests/store/ya8gi7spl2124ybyqq7md4hskw0zfm5l-postgresql-13.4.drv /tmp/guix-tests/store/mh9dp0gm243q1s3vwkbjsv1h56rqrvwh-postgresql-13.4.tar.xz.drv /tmp/guix-tests/store/zij1gi8ggcy67r5h21csfm8kviqrvn99-postgresql-13.4.tar.bz2.drv /tmp/guix-tests/store/yfkbg3xlv37g2nfh3a81simikyxhdf7m-pulseaudio-15.0.drv /tmp/guix-tests/store/0x5wmlws09v536q1kpc0gyhayh06a6qm-bluez-5.61.drv /tmp/guix-tests/store/407ihpf2h9pwnr4aywrmw75wb5v76fqf-python-docutils-0.17.1.drv /tmp/guix-tests/store/g14vvpr3ird9ybkn1q65pik05mfx80f8-docutils-0.17.1.tar.gz.drv /tmp/guix-tests/store/67sn1cq3gspwafgzz4m1pvkmmbgyckpv-bluez-5.61.tar.xz.drv /tmp/guix-tests/store/lpqxxgs5lkwlxmmcgbhl4zlrcdwgygph-libical-3.0.10.drv /tmp/guix-tests/store/73aln1lasdrydl6p398jd6rwx0dwgaad-libical-3.0.10.tar.gz.drv /tmp/guix-tests/store/dvaqliizqwlfb1pp2sqhpmj5dd7l18n8-gtk-doc-1.33.2.drv /tmp/guix-tests/store/1x1grvk9b3wgwmgaw5pwsdmw60z1677m-dblatex-0.3.12.drv /tmp/guix-tests/store/028k30w4f5x79s8y0anrqwfxlms28lgd-texlive-generic-etexcmds-59745.drv /tmp/guix-tests/store/4pfwphwlrncjmjs4g43vpszsmmmkk1x5-texlive-generic-etexcmds-59745-checkout.drv /tmp/guix-tests/store/7l5z7snlsga3fw2flfaffcxsyr6j5vvy-subversion-1.14.1.drv /tmp/guix-tests/store/501mancxh5qh5188h3paqs4pk4fq8b5y-serf-1.3.9.drv /tmp/guix-tests/store/d54vkrhnid9ih38kj5ylcx9xdpzbzbh1-serf-1.3.9.tar.xz.drv /tmp/guix-tests/store/wqp9kx7a7zhkic9dyr8dd9ydn2h9p7sm-serf-1.3.9.tar.bz2.drv /tmp/guix-tests/store/j1x5mizgcj8d336yjyprmfj581jymyr6-module-import-compiled.drv /tmp/guix-tests/store/y1x2iw8b9kpg3i84x05nrg6g3iddg01v-scons-3.0.4.drv /tmp/guix-tests/store/azxdh47x6m9zyrhj44jqw3x7dwqs7dbs-scons-3.0.4-checkout.drv /tmp/guix-tests/store/g8xy3126li96808909l5ybaxyw6wkisb-subversion-1.14.1.tar.bz2.drv /tmp/guix-tests/store/ws0j4ngxinicvp5fs0sdqmwswq7xbjrh-utf8proc-2.5.0.drv /tmp/guix-tests/store/1jxh04yx9h1a6xg6hnp37m015wfam52d-GraphemeBreakTest.txt.drv /tmp/guix-tests/store/4bnmlj9xn83mws5626hhv24n1zi78f63-utf8proc-2.5.0-checkout.drv /tmp/guix-tests/store/vmlk6mkr23fywyyz3gg19gah64nzbdb5-NormalizationTest.txt.drv /tmp/guix-tests/store/v9nimga3xxn0pf7qdl5xr51yi4z0bwk6-module-import-compiled.drv /tmp/guix-tests/store/h98y2qvkgx48x9lh3364gv6da8hzpwg1-texlive-generic-iftex-59745.drv /tmp/guix-tests/store/jkfyavsrm63sjgljqzy7kqyj3ccbjhkq-texlive-generic-iftex-59745-checkout.drv /tmp/guix-tests/store/ly8liqjqxdrsyc0ld23h0h7lpmrfz21j-texlive-generic-infwarerr-59745.drv /tmp/guix-tests/store/ndpkhmvx5sjmlj2g6hq8lgli35h1wqk8-texlive-generic-infwarerr-59745-checkout.drv /tmp/guix-tests/store/05sjz0rc22jvmbx96cs2dqxxs44sbhx8-texlive-fonts-latex-59745.drv /tmp/guix-tests/store/033x5fzq5q8vr6j13armc7r1ca4xwhdj-texlive-fonts-latex-59745-checkout.drv /tmp/guix-tests/store/1xw6j6c6w8dpalm826x3c5qbv9pwdqvr-texlive-metafont-59745.drv /tmp/guix-tests/store/bkri74603h5ivpi2n8z4nbas3ghs7f2d-texlive-metafont-59745-checkout.drv /tmp/guix-tests/store/z276lcx4zcvaf5z3lw3ziig3fmpxdb8b-texlive-bin-20210325.drv /tmp/guix-tests/store/67dbd2w2g0rnvvpxd7yshwb2fhj18cdm-texlive-20210325-source.tar.xz.drv /tmp/guix-tests/store/hagdw0vlzdsjlb9w560y280vacwa8z7m-texlive-20210325-source.tar.xz.drv /tmp/guix-tests/store/6nkf0a3rsj2sx3hjfwnahi3blivrwyhw-zziplib-0.13.72.drv /tmp/guix-tests/store/rrx87idvzsb2nsyd7c3pcdr23yb21l5b-zziplib-0.13.72-checkout.drv /tmp/guix-tests/store/fzgnb4xd6nflqfb6kgnxilrb6fk3n0xz-teckit-2.5.10.drv /tmp/guix-tests/store/i4zdw3m62k1dp3i24sz7f2hrya6hs05v-teckit-2.5.10.tar.gz.drv /tmp/guix-tests/store/nrkwb1sgmxi9xl5mbb6yf91v9m5iyhfq-potrace-1.16.drv /tmp/guix-tests/store/d8dp47hxx385s5h89zrw48yfbyay6rva-potrace-1.16.tar.gz.drv /tmp/guix-tests/store/qwcsql4dlchvyqgnmn2gqzwv9888fccc-fontforge-20201107.drv /tmp/guix-tests/store/9qpacnnjw43zmf85adjky00rxy4aix33-libuninameslist-20200313.drv /tmp/guix-tests/store/wbxi070izyy2s6iklq7rx6hmgs44n68l-libuninameslist-dist-20200313.tar.gz.drv /tmp/guix-tests/store/ahx9v6vhrfvaq06ac394426hsczhmx30-fontforge-20201107.tar.xz.drv /tmp/guix-tests/store/n32nvwp2h8x6h8lsb3idxq72v13v2pwj-libspiro-20200505.drv /tmp/guix-tests/store/3zbl7jx0dlw41z4z60f439zhdd5169sf-libspiro-dist-20200505.tar.gz.drv /tmp/guix-tests/store/yk929yppgq25xj9gmdks0lmqn6x8x3ph-libungif-4.1.4.drv /tmp/guix-tests/store/cgbwr56isj6jk92na66sxchm832n0x42-libungif-4.1.4.tar.bz2.drv /tmp/guix-tests/store/rsya1dr99cz50xq76f6pbrw1nx0qpzxa-texlive-scripts-59745-checkout.drv /tmp/guix-tests/store/y361fhjx3r74hwaa76mblzywrfmlx6xg-texlive-20210325-extra.tar.xz.drv /tmp/guix-tests/store/y6kyfa9xlx9rjnzcdmyw8nvngs44bis5-texlive-cm-59745.drv /tmp/guix-tests/store/ghpaza4260x6ly1h37ba5k807gc06784-texlive-cm-59745-checkout.drv /tmp/guix-tests/store/0jh1m2pa24fc4m3vp52vnkzvjhvsa077-texlive-hyphen-estonian-59745.drv /tmp/guix-tests/store/09k9vnd7dkb19hv8dhc34glkzbidg6vs-hyph-utf8-scripts-59745-checkout.drv /tmp/guix-tests/store/0dq37vis4zy2zd99bag4i0iq78mw4a1v-ruby-hydra-0.0-0.5abfa37.drv /tmp/guix-tests/store/1ysmk5fxbscxw9n4diiy3yx5adr8dnq5-ruby-byebug-11.1.3.drv /tmp/guix-tests/store/26b4mg3jqhlihsmgm978d2c8fl49i7i5-module-import-compiled.drv /tmp/guix-tests/store/2w24j95bmgdlwvayzgq1qa7f8xadqrkp-ruby-pry-0.13.1.drv /tmp/guix-tests/store/6wji78gb9pc5xii8sk5q171hmvrb7yx1-ruby-coderay-1.1.2.drv /tmp/guix-tests/store/9kawpyx5ba9fb681q3am22zjhgg1jzg5-coderay-1.1.2.gem.drv /tmp/guix-tests/store/bh98fdf928gv0q4n0ymma8xx7330bi35-ruby-method-source-1.0.0.drv /tmp/guix-tests/store/38f3hpg9nqpf1mpry9sp75gdznss019f-method_source-1.0.0.gem.drv /tmp/guix-tests/store/9dhf047aj852m27x46nmdq4b7zsd87lf-ruby-rspec-expectations-3.8.2.drv /tmp/guix-tests/store/i8wd4c75bz0i2hindg6fn7z7rwa1i5b4-ruby-diff-lcs-1.3.drv /tmp/guix-tests/store/cqxs3af7wl5s0lwn38wvy5v6273p13pm-diff-lcs-1.3.gem.drv /tmp/guix-tests/store/ky6mah67sg1gxqla03h0206z404sa0mi-rspec-expectations-3.8.2.gem.drv /tmp/guix-tests/store/rda40n9ii53nqi64c3f81vgij23d0g6l-ruby-rspec-support-3.8.0.drv /tmp/guix-tests/store/21y62wg9lhlbjdww03p446xsvnfcams7-rspec-support-3.8.0.gem.drv /tmp/guix-tests/store/bg2j2mqwggbmba2l6rs7mvcmigj3vp14-ruby-rspec-3.8.0.drv /tmp/guix-tests/store/4y4rkfii0f69xz4dr8xblfassd1z52z3-rspec-3.8.0.gem.drv /tmp/guix-tests/store/pabv5svh0fi3qakfkm193gxc60dbp9ny-ruby-rspec-core-3.8.0.drv /tmp/guix-tests/store/8l88vbzk9l56vxqllbhf0jdvd7qzsirl-rspec-core-3.8.0.gem.drv /tmp/guix-tests/store/qcvzzkfnkyzp5z95jhyyzc2ip0ia1lxn-ruby-rspec-mocks-3.8.0.drv /tmp/guix-tests/store/6d8qa6l899fp00yhhny22skia4j07lnh-rspec-mocks-3.8.0.gem.drv /tmp/guix-tests/store/wvq32r4jcin03byw74znklr0z8qvkyw3-pry-0.13.1.gem.drv /tmp/guix-tests/store/2xh580sg6g239mjzyda0d2m4x2s71jc7-ruby-netrc-0.11.0.drv /tmp/guix-tests/store/4gvgqk1mv282ds4crvlv95jbq32smk1q-ruby-minitest-5.14.4.drv /tmp/guix-tests/store/hycy6gnkzsw8my91n1zg27jpdx6mgi9j-minitest-5.14.4.gem.drv /tmp/guix-tests/store/w2p8dj5pvjb0g4sfniwdhiv265kkby4m-ruby-hoe-3.21.0.drv /tmp/guix-tests/store/hgrxcazfldahc04f9n6sc5j6pr0nlw54-hoe-3.21.0.gem.drv /tmp/guix-tests/store/97qwpdhz5x8n3ia17599q8sy4fn21avy-netrc-0.11.0.gem.drv /tmp/guix-tests/store/6h0pvl76javnv12cw88bdz21hppya526-ruby-rubocop-1.10.0.drv /tmp/guix-tests/store/07g51pfc3kqji3qsizy1f8ivfb64h33g-ruby-bump-0.7.0.drv /tmp/guix-tests/store/8kyyav29z5rx8r0lg39ndc91gd4dpxsc-bump-0.7.0.gem.drv /tmp/guix-tests/store/30z0lizhqz6r3xqhy43i5gwbp0vhvd2n-ruby-docile-1.1.5.drv /tmp/guix-tests/store/9x16xh52jrksjdgx4qp7ii1pl2l5419m-docile-1.1.5.gem.drv /tmp/guix-tests/store/5g012b5cip9yhpcj07b946q4jh43c6g6-ruby-stackprof-0.2.17.drv /tmp/guix-tests/store/1q06r0pq2nvqdpcqdqqf8s5k0d7h5bip-ruby-mocha-1.13.0.drv /tmp/guix-tests/store/02lnrd9jma1nxl1h3fczcad93h5j23k3-ruby-instantiator-0.0.7.drv /tmp/guix-tests/store/0byv9wgigil4c80hsik820afxhpgb0ax-ruby-power-assert-1.1.5.drv /tmp/guix-tests/store/514snacixlp7g53y6ialz6z5xk0ija68-power_assert-1.1.5.gem.drv /tmp/guix-tests/store/vqjmr8l2ahknl228l319p20glq46syvs-bundler-2.1.4.drv /tmp/guix-tests/store/hvnmwp7n0dvj0dahfn42ay0g2nbwz9bl-bundler-2.1.4.gem.drv /tmp/guix-tests/store/5ac160n1w9zmk0iyn3vrhqprk3j5v03n-ruby-blankslate-3.1.3.drv /tmp/guix-tests/store/n5wa6k3fjxlqkwssyb3vcvgchg5klc6v-blankslate-3.1.3.gem.drv /tmp/guix-tests/store/s989ma6vcqcgk2pciahirrnfk9p79yy2-ruby-test-unit-3.4.4.drv /tmp/guix-tests/store/cy85lpk0k0wzhh5mn8rp4136sxdgy5ps-ruby-packnga-1.0.4.drv /tmp/guix-tests/store/kjq3j8ni1c3dk7alnj339ghqvp6mjlj8-ruby-yard-0.9.25.drv /tmp/guix-tests/store/bfcwd393pdrkkr91gjjh90nsdplpdrvv-ruby-yard-0.9.25-checkout.drv /tmp/guix-tests/store/nmjvrv4k6jxjkv98km2b8xyhigw8c87w-ruby-locale-2.1.2.drv /tmp/guix-tests/store/5a76rxgzgpiazkk8wvwalawmjlpwifbn-locale-2.1.2.gem.drv /tmp/guix-tests/store/r9vmnbr2zvy7zjqhradqnqdqcg39yd6i-packnga-1.0.4.gem.drv /tmp/guix-tests/store/v2r729q0axbk3m1nc2fq4zhr8m5cnp9i-ruby-text-1.3.1.drv /tmp/guix-tests/store/fh16xjhr77xh6hlq047kq7wmv0jb3wcz-text-1.3.1.gem.drv /tmp/guix-tests/store/yl064v4hw0kbk4al6pw7cphksqhs757a-ruby-gettext-3.1.7.drv /tmp/guix-tests/store/v0asfhwjggf98vfnvq24rydsa53mdwzl-gettext-3.1.7.gem.drv /tmp/guix-tests/store/hslnwnxxhplv5s4yybrw6a4s21la9m33-test-unit-3.4.4.gem.drv /tmp/guix-tests/store/zjb137yzvp0nmifbkfhlbj756chpr6wj-instantiator-0.0.7.gem.drv /tmp/guix-tests/store/053mv7y6n1a1hypwi1nmj4vn06gczpxj-mocha-1.13.0.gem.drv /tmp/guix-tests/store/4sk5201rg0qmp1lmljl0m222kfbqxrz7-ruby-introspection-0.0.4.drv /tmp/guix-tests/store/gimy8279zh3nw7fngwln4ik0cdk2df38-ruby-metaclass-0.0.4.drv /tmp/guix-tests/store/86w5iy89v8ccpizv14f0hck23iadqc8c-metaclass-0.0.4.gem.drv /tmp/guix-tests/store/pxxkh2xhd2q59cvq69wg77ms6c27i4b9-introspection-0.0.4.gem.drv /tmp/guix-tests/store/8dhn1zvvl8167n919bl9p92ny2nx6xw7-ruby-rake-compiler-1.1.1.drv /tmp/guix-tests/store/9pjgzxz6b3271yh5igzn1053vl1b589w-rake-compiler-1.1.1.gem.drv /tmp/guix-tests/store/js7fdhfm8z411czqx0hhmbk1i5i14333-stackprof-0.2.17.gem.drv /tmp/guix-tests/store/62dyfwxlz939skk3hdzzjr7bsax59wz4-ruby-rubocop-rspec-2.2.0.drv /tmp/guix-tests/store/pmjna5gqv7rcigy49igjshs0n3wfvn4c-ruby-rubocop-rspec-2.2.0-checkout.drv /tmp/guix-tests/store/7652z4wd9n4akn79w0cf4fb81k4l35jc-ruby-rubocop-1.10.0-checkout.drv /tmp/guix-tests/store/7fvyf1w7rv98x7ld33zavy3ywqxc2m7p-ruby-hashdiff-1.0.1.drv /tmp/guix-tests/store/0inr1a5kv6jqqqsxpwn874bs4dk49a0j-ruby-rspec-expectations-2.14.5.drv /tmp/guix-tests/store/0wpfzi41r15awjl1i972k6bhppwv2vil-rspec-expectations-2.14.5.gem.drv /tmp/guix-tests/store/bhfxf6n0qmykxnki79sk3mdninllygjd-ruby-rspec-mocks-2.14.6.drv /tmp/guix-tests/store/9874b00jaans6n95czizpm8p4myg2ppi-rspec-mocks-2.14.6.gem.drv /tmp/guix-tests/store/fh3cq8bqvbknplz5l932y45wxmh8v8qs-hashdiff-1.0.1.gem.drv /tmp/guix-tests/store/n90i8gy8xfmnm1csmli37zwz25d8bjkw-ruby-rspec-core-2.14.8.drv /tmp/guix-tests/store/f73prc25qp5s40plz26xhyyw5qxhqw1j-rspec-core-2.14.8.gem.drv /tmp/guix-tests/store/sw722sandc4q3z2q6rsr3k0jbn24zbsv-ruby-rspec-2.14.1.drv /tmp/guix-tests/store/blmgy1wml1jiywqlzm5q7g0vsm93flvq-rspec-2.14.1.gem.drv /tmp/guix-tests/store/8znqjirknqfzy0kw8qcirfy1dlcnyx6k-ruby-rubocop-performance-1.9.2.drv /tmp/guix-tests/store/qz1i3v4pfif9ki9zb56bm2ahgdpcdgay-ruby-rubocop-performance-1.9.2-checkout.drv /tmp/guix-tests/store/ak191g08768f6vkffd4862vrmwx4c70i-ruby-progressbar-1.10.1.drv /tmp/guix-tests/store/sga6ry8js1gg2jyy2ip7ah5hwyiiqgw2-ruby-progressbar-1.10.1.gem.drv /tmp/guix-tests/store/barpbg063hfrgdsi16s4dkq04i9kp6xq-ruby-parser-3.0.0.0.drv /tmp/guix-tests/store/1y38xv3z2yls22as9yh8s2lx20n4sa0i-ruby-cliver-0.3.2.drv /tmp/guix-tests/store/rj6qrzd987wm8298fzhw8fmjrpkby1qz-cliver-0.3.2.gem.drv /tmp/guix-tests/store/8mglqpwk0s8pq8hcg74wkcdp4s54jy2r-parser-3.0.0.0.gem.drv /tmp/guix-tests/store/8qm7n1ync8y0cf2fn5fq12l7xmfk8j0b-ragel-6.10.drv /tmp/guix-tests/store/i0vm7zlh5nsd7f4drlqqdhdlwqh27pw3-ragel-6.10.tar.gz.drv /tmp/guix-tests/store/gixqhdsqvp70qrzp7mrkn4hq27p4sly9-ruby-json-2.1.0.drv /tmp/guix-tests/store/knv0k9lsz5ajbfj23mgdhyyhr0hqbpgj-json-2.1.0.gem.drv /tmp/guix-tests/store/lrm0k0zfba7ilb9acpz9m4paka69nq8m-ruby-simplecov-0.17.1.drv /tmp/guix-tests/store/j6fdkjd9qzhmiwjnp7wagfb4sg2z3gnk-simplecov-0.17.1.gem.drv /tmp/guix-tests/store/pr9kr5aa0lmxpbbpfpcqvxr1s8x9ga95-ruby-simplecov-html-0.10.2.drv /tmp/guix-tests/store/jk7z42xmya0ghbpz5qql3z8ifhh84lbh-simplecov-html-0.10.2.gem.drv /tmp/guix-tests/store/p89153h77a88k9l2d2cqrxk19h7fargs-ruby-ast-2.4.2.drv /tmp/guix-tests/store/254blxdxglj3gj18bhajbssmc5axjg2x-ruby-ast-2.4.2-checkout.drv /tmp/guix-tests/store/2c857zqjak3c0xiamk2bfq6kz2iwf9x9-ruby-domain-name-0.5.20190701.drv /tmp/guix-tests/store/03khk7fhkswi7jv5yvw4pyk9hdzaqm48-ruby-tzinfo-data-1.2021.1.drv /tmp/guix-tests/store/1cmwqrzk230ym91g1znpyr1jpdfn1sib-ruby-tzinfo-data-1.2021.1-checkout.drv /tmp/guix-tests/store/fg47liyppziz4hgfl7lzbxsmj4c4n4kg-ruby-tzinfo-2.0.4.drv /tmp/guix-tests/store/7vqvi6pm10azixnafka3qz3kf1h6fmla-ruby-tzinfo-2.0.4-checkout.drv /tmp/guix-tests/store/p9rl8vc22dx7pddkhkagiddyx766953n-ruby-concurrent-1.1.5.drv /tmp/guix-tests/store/8p1pck5f7hizcdjg1j7rznyy3p3y205k-ruby-concurrent-1.1.5-checkout.drv /tmp/guix-tests/store/jhx40532r42q1w4l72hd5ap92nzjfs2m-tzdata-for-ruby-tzdata-info.drv /tmp/guix-tests/store/5xyv88lb1gsh9shy786ngc8qa531z1xk-tzdata2021a.tar.gz.asc.drv /tmp/guix-tests/store/qsa5s6m02i62vck7q62q3r6s0zw0r99j-tzcode2021a.tar.gz.asc.drv /tmp/guix-tests/store/sins7ly7xirxvxc08yw0xwfl4fr1pzvi-tzdata2021a.tar.gz.drv /tmp/guix-tests/store/zclshcmjlqq7zcgjvqcq1qcyb65rgx9j-tzcode2021a.tar.gz.drv /tmp/guix-tests/store/061r263pipd3fpyfqrhrjbjxzmsll5rh-ruby-i18n-1.7.0.drv /tmp/guix-tests/store/y4myj60x799pk1dxyrhwa9042v4jzmjw-i18n-1.7.0.gem.drv /tmp/guix-tests/store/46wjdzvp2ga3ip4dwy2iijjpsnlxlchf-domain_name-0.5.20190701.gem.drv /tmp/guix-tests/store/4jqlnyq78lsmqb1g6rpzs3hawxcf052s-ruby-shoulda-3.5.0.drv /tmp/guix-tests/store/6hylimcqh76xq1sjrkzg5mks7cr2q5gd-ruby-shoulda-matchers-2.8.0.drv /tmp/guix-tests/store/hm672xwh1bp1vrc80fqqcn1zjlm5v2pz-ruby-activesupport-6.1.3.drv /tmp/guix-tests/store/msx4ky62gxj0865hml70wqd1k0rpclgz-activesupport-6.1.3.gem.drv /tmp/guix-tests/store/s11mwmn1ngq35lmm4hyw1vz5ah2244z1-ruby-zeitwerk-2.4.2.drv /tmp/guix-tests/store/2b105vgchir450373fa56f30njwx7gg3-ruby-builder-3.2.4.drv /tmp/guix-tests/store/87rlrdp0xcj1dwvrklqyh9r3g95j15x3-builder-3.2.4.gem.drv /tmp/guix-tests/store/801qik2lwza1wkqqscndi3p5r5bxi2lz-ruby-zeitwerk-2.4.2-checkout.drv /tmp/guix-tests/store/9m1plyv8jmdjra00f4768n6xk6bmxkwa-ruby-ansi-1.5.0.drv /tmp/guix-tests/store/p6fp3x8a3q826f16cygg60q2n993xkhd-ruby-ansi-1.5.0-checkout.drv /tmp/guix-tests/store/g2xabwjldyajhaacvkmscxbhnmzy2hmm-ruby-minitest-focus-1.1.2.drv /tmp/guix-tests/store/c3f0yikhlqw96k658vwd11n01bmrwi9r-minitest-focus-1.1.2.gem.drv /tmp/guix-tests/store/zpzlzr6diac9xkvdp1j156g5lrq21xbw-ruby-minitest-reporters-1.3.6.drv /tmp/guix-tests/store/7bq2dfcbnp611qqkv8slc21shpk95iip-minitest-reporters-1.3.6.gem.drv /tmp/guix-tests/store/82l5370rprgal98d7jijnzzcyybjgr9k-ruby-maruku-0.7.3.drv /tmp/guix-tests/store/2dd8nc8lmzkdibr1ypza2s83212rkarf-ruby-nokogiri-1.10.9.drv /tmp/guix-tests/store/b2fxg2i2rlm2j5mzwal2b6548fvi38xd-ruby-pkg-config-1.2.5.drv /tmp/guix-tests/store/rr0nhvrwinx30n221mkkxwa451vx6fh5-pkg-config-1.2.5.gem.drv /tmp/guix-tests/store/cm41f11gn2gz1vp7izrabz0cmhnrx9vy-nokogiri-1.10.9.gem.drv /tmp/guix-tests/store/j8ciqchr1jqb0cyaykl2mqmcvngr3kfg-ruby-mini-portile-2.4.0.drv /tmp/guix-tests/store/clb0dzyvmlygrm71agnvxf6v8lzy058i-mini_portile2-2.4.0.gem.drv /tmp/guix-tests/store/991ycmi0xqrrfi5s8wbcgh2hwk3f078y-maruku-0.7.3.gem.drv /tmp/guix-tests/store/kz7krrqglhj73145gyab4vqkn4qxbmn4-ruby-tdiff-0.3.3-1.b662a604.drv /tmp/guix-tests/store/4ffbrk1ji8c806gjhvbf379qp3schp5d-ruby-rubygems-tasks-0.2.5.drv /tmp/guix-tests/store/xzzpfww7080f2w2yp1ddh9k572smy7gc-rubygems-tasks-0.2.5.gem.drv /tmp/guix-tests/store/l6wryykpzzg7b6imkkkwjqqmsc3ivdfg-ruby-tdiff-0.3.3-1.b662a604-checkout.drv /tmp/guix-tests/store/z2960r5kclhjn62fid4pzaiha44h27xh-ruby-nokogiri-diff-0.2.0-1.a38491e4.drv /tmp/guix-tests/store/ka06a79pbln5bccambpang1cw36b1wwm-ruby-nokogiri-diff-0.2.0-1.a38491e4-checkout.drv /tmp/guix-tests/store/vdklsvakz5gkc7iyg0pvqmhj6rqbsx7r-shoulda-matchers-2.8.0.gem.drv /tmp/guix-tests/store/fzh6fnfpb74c909c399kwvlqmv2hvrdf-ruby-shoulda-context-1.2.2.drv /tmp/guix-tests/store/hcs0gx3wwkdd92z6k7vim37k38zrz4wb-shoulda-context-1.2.2.gem.drv /tmp/guix-tests/store/y96fyaybzd4kyi3hpwlsazhs1j4wa1az-shoulda-3.5.0.gem.drv /tmp/guix-tests/store/ar402dq1346frgprz2lbrjrncrjs7lkj-ruby-unf-0.1.4.drv /tmp/guix-tests/store/81n8d2b7ssvar6dba8axb4ls4ajg8gn6-unf-0.1.4.gem.drv /tmp/guix-tests/store/jvqmk9skm6s9gmnjkxri238jikjya6s6-ruby-unf-ext-0.0.7.6.drv /tmp/guix-tests/store/63i32snyls5yqx0459nsvzi57s09g8b6-unf_ext-0.0.7.6.gem.drv /tmp/guix-tests/store/404hn9glql7z6a8msp4m86rkxxgghq0j-ruby-rest-client-2.0.2.drv /tmp/guix-tests/store/5q0sn0rc3f3bdf2sml63sn00yh4zgdx2-ruby-http-cookie-1.0.3.drv /tmp/guix-tests/store/8id5vl445p9km07lwj1pdzfqs6z20gs6-ruby-sqlite3-1.4.2.drv /tmp/guix-tests/store/8lnx7zdvkvrvgxc8rw9qpzvc76bwd5iz-ruby-mini-portile-0.6.2.drv /tmp/guix-tests/store/80i0sjgz0k58iwvm4lqm9a1x98mbaiqq-mini_portile-0.6.2.gem.drv /tmp/guix-tests/store/jyw2733d5vqrsb5gkimnr6cbjam27wck-sqlite3-1.4.2.gem.drv /tmp/guix-tests/store/fhjzbzy53zw09sf36vkdr5s3av6gv4fb-http-cookie-1.0.3.gem.drv /tmp/guix-tests/store/i9dcbld1h77c6dlz705gzd93pa4vanaf-ruby-addressable-2.7.0.drv /tmp/guix-tests/store/9z637vk5q097lg1ifrbfwmcjgz35k796-ruby-rspec-its-1.3.0.drv /tmp/guix-tests/store/xckn24dh0hfhwmx5hiqd2km4861lna28-ruby-rspec-its-1.3.0-checkout.drv /tmp/guix-tests/store/h9p8h4amkx2qdaib9k8aax8bsgpqyynp-ruby-idn-ruby-0.1.0.drv /tmp/guix-tests/store/1spqrxdrwp5g8ni7hcrjwh5m0dh10jz4-idn-ruby-0.1.0.gem.drv /tmp/guix-tests/store/k4l32ygzzkvaqdapxmapys4939ckms09-ruby-public-suffix-4.0.5.drv /tmp/guix-tests/store/y18v285grbrrxvir9wshqb1bxa53kwqm-public_suffix-4.0.5.gem.drv /tmp/guix-tests/store/mdciv99f1aqf5ar913h0hlca9q9l92l7-addressable-2.7.0.gem.drv /tmp/guix-tests/store/vnfbxp6di0lfr519gcbs8569n691llg8-ruby-rack-2.2.3.drv /tmp/guix-tests/store/19xmw0a5yr76layfk6xpkk2n96zfak83-ruby-minitest-global-expectations-1.0.1.drv /tmp/guix-tests/store/5csdmfy54q7y30gglv1whj3pwfvsv92m-minitest-global_expectations-1.0.1.gem.drv /tmp/guix-tests/store/zg9cjlyzwn4hpbyrhh8h6bijvhl63pr9-ruby-rack-2.2.3-checkout.drv /tmp/guix-tests/store/v9wfj9rl4qwqh0lck3hpcl2r7qg0zyz5-ruby-rack-2.2.3-checkout.drv /tmp/guix-tests/store/xnqsbi6pygn3i23jbv5vw95gc6ngjjra-ruby-sporkmonger-rack-mount-0.8.3-1.076aa2c.drv /tmp/guix-tests/store/yyxgsxqlq2rg8isf6k3aafv3a8k37j8z-ruby-sporkmonger-rack-mount-0.8.3-1.076aa2c-checkout.drv /tmp/guix-tests/store/ihdqbx5l0jvbsssvplfhs703rb0cji5r-ruby-mime-types-3.1.drv /tmp/guix-tests/store/1qw0g42dpp7sx7nrl5ra44738cikjq91-ruby-minitest-rg-5.2.0.drv /tmp/guix-tests/store/f20xmn9gy6bw725x59p9hqx94pij26m3-minitest-rg-5.2.0.gem.drv /tmp/guix-tests/store/35ziwidzi8qr14i5gz02gxfy3kdhn4hg-ruby-minitest-hooks-1.5.0.drv /tmp/guix-tests/store/77p7vi2kcc3ybnixayir2bg7ccika5y4-minitest-hooks-1.5.0.gem.drv /tmp/guix-tests/store/7spwq687ymknss2xb7dz75akxlk6zndj-ruby-sequel-5.47.0.drv /tmp/guix-tests/store/igq2lasd8yrxrp8b432hcka6b6an0gk1-sequel-5.47.0.gem.drv /tmp/guix-tests/store/5ydd9fjxgzqfak9dhsj7754d4v7lq5ic-ruby-fivemat-1.3.7.drv /tmp/guix-tests/store/5xcrb9gs1zn7pzg8b7n0xdaq2sicj9cg-fivemat-1.3.7.gem.drv /tmp/guix-tests/store/6qaw6lgpgvbqvhjnhhgkfqckzf4xflzz-mime-types-3.1.gem.drv /tmp/guix-tests/store/h1hd25r8csxf8zm22l79m0j6kd0lv8s5-ruby-minitest-bonus-assertions-3.0.drv /tmp/guix-tests/store/70q9a54ym66aqc70amfa7d4aysl2xac0-minitest-bonus-assertions-3.0.gem.drv /tmp/guix-tests/store/jy473bciz8rfnby3vgyrbxik9cyjm0hm-ruby-minitest-moar-0.0.4.drv /tmp/guix-tests/store/hw126lv8jaf0skr9d620nbf0z99nkrh7-minitest-moar-0.0.4.gem.drv /tmp/guix-tests/store/x9q98982k44wiyc46z05vrqd4p9w7v1s-ruby-minitest-pretty-diff-0.1-1.11f32e93.drv /tmp/guix-tests/store/8hlvcj67b1cyn5bq8ihvnbxf71ycnwib-ruby-turn-0.9.7.drv /tmp/guix-tests/store/040kcqdsqdwi0hp7i9z21byfaw0spif1-turn-0.9.7.gem.drv /tmp/guix-tests/store/hghy8mazabw7ss323qwz3r4l4jj5v1np-ruby-minitest-4.7.5.drv /tmp/guix-tests/store/kdanpxd8g2lwnnvjp8az14nhd8p1pvz4-minitest-4.7.5.gem.drv /tmp/guix-tests/store/g3l964jj5qnwhhwwm6ml3gh31z6lga0l-ruby-minitest-pretty-diff-0.1-1.11f32e93-checkout.drv /tmp/guix-tests/store/k0awd8kd1fznwc5nb029khym08k5r08y-ruby-mime-types-data-3.2016.0521.drv /tmp/guix-tests/store/xa8c9dagwcrq8hgs7rjdj60000xlpk9p-mime-types-data-3.2016.0521.gem.drv /tmp/guix-tests/store/q0n10knrnpfpbshcyz2knxs7b5ffqr9y-ruby-webmock-2.3.2.drv /tmp/guix-tests/store/cwhj57zhhw7pvc1yj13qi84ssxnbkqlz-webmock-2.3.2.gem.drv /tmp/guix-tests/store/xmnlr7pd83mgi08wirk1swkdnzb1611b-ruby-crack-0.4.5.drv /tmp/guix-tests/store/g8kbyhpxspqy5s5fna02y2r4kapv1rjg-crack-0.4.5.gem.drv /tmp/guix-tests/store/zwfv00krspzqj5pixd70js5gx5ll5p5i-rest-client-2.0.2.gem.drv /tmp/guix-tests/store/mgnh4i8gy4h2g0sgbgki2fdd0fvilhyw-ruby-kramdown-2.3.1.drv /tmp/guix-tests/store/31vdsdslls46g68rnghy193m0f754wvb-ruby-afm-0.2.2.drv /tmp/guix-tests/store/fzfc19d7dw5hn7xr5faqd23xvxs7i3cs-afm-0.2.2.gem.drv /tmp/guix-tests/store/43jas2hyrk52cxa6agzcyvcavzs1rm0s-ruby-hashery-2.1.2.drv /tmp/guix-tests/store/4if1fkx9n6n787rwmkna42h82rd0a2jm-ruby-qed-2.9.2.drv /tmp/guix-tests/store/mdf6snihkfzn07hij3gzdl75byyq7g26-qed-2.9.2.gem.drv /tmp/guix-tests/store/xpjys77v688za59rq74365gcz9b6165x-ruby-brass-1.2.1.drv /tmp/guix-tests/store/p57z1zfsn8375vvnbv6wac6pk0aqqll7-brass-1.2.1.gem.drv /tmp/guix-tests/store/666sfqprgla548313har51jgxb1nkl41-ruby-rubytest-cli-0.2.0.drv /tmp/guix-tests/store/k6cslw21a7ky2csry89rrxqgpafqjc96-rubytest-cli-0.2.0.gem.drv /tmp/guix-tests/store/v006bla1gycdazbardcwf90a199ga2a1-ruby-rubytest-0.8.1.drv /tmp/guix-tests/store/ydai14fnf0rvraa1cgvbljk0jnpsl34j-rubytest-0.8.1.gem.drv /tmp/guix-tests/store/b7p0fnzmzi5g8hhvv6xr1rqah1rqxqwf-ruby-ae-1.8.2.drv /tmp/guix-tests/store/i7whphpla9n9vr023921lxydqp1w41q7-ruby-ae-1.8.2-checkout.drv /tmp/guix-tests/store/g9s2zwlk92qqbcbhfa8qz9dwv6lcq0q4-hashery-2.1.2.gem.drv /tmp/guix-tests/store/ym2p67izjv1wndzr1al1549hs1z59sd9-ruby-lemon-0.9.1.drv /tmp/guix-tests/store/gi9y18cf0s5s7rkhmcimz9h1zbhxbzpj-lemon-0.9.1.gem.drv /tmp/guix-tests/store/6jf9piyjl2g69hzgwwx98rqhrb3skzby-ruby-ttfunk-1.6.2.1.drv /tmp/guix-tests/store/9l0dn2bav9y4sdfd9dlfgc244vdf080j-ruby-ttfunk-1.6.2.1-checkout.drv /tmp/guix-tests/store/70kzl6ck5djxzxh08y7l5bhz4zqh7j26-ruby-rc4-0.1.5.drv /tmp/guix-tests/store/h44lkkx6wijqns6i24hqi4w7dm4r66aq-ruby-rc4-0.1.5.gem.drv /tmp/guix-tests/store/al5fkg0j9cb096jpjycbhxkyf7lg26pv-ruby-pdf-inspector-1.3.0-1.00ee4c9.drv /tmp/guix-tests/store/9f5x4ch0x6xh7l1mgfq36ydfgwxbvbg2-ruby-pdf-inspector-1.3.0-1.00ee4c9-checkout.drv /tmp/guix-tests/store/dc8fb3shhj7vzsd2yw4sqanfg0p02pr0-ruby-pdf-reader-2.4.0.drv /tmp/guix-tests/store/130v7g2jnr7dayq3j4j4xxdynz498mkr-ruby-cane-3.0.0.drv /tmp/guix-tests/store/bcd0sfpbas9zx2z48pfaqjn5ql68mfzp-cane-3.0.0.gem.drv /tmp/guix-tests/store/qr7h6nghdpjy9ksxaki61kvw81365sij-ruby-parallel-1.21.0.drv /tmp/guix-tests/store/0qcc4a1d3vnyyiiskwfv1p37p3y1hnrf-ruby-activemodel-6.1.3.drv /tmp/guix-tests/store/6jgjn7ajkd7viapj749g2vzwf7pd833k-activemodel-6.1.3.gem.drv /tmp/guix-tests/store/117r31vqiirn2rv73m3pwj6q0q4m8z7q-ruby-rspec-rerun-1.1.0.drv /tmp/guix-tests/store/0npbj0hk2y3w8mzvr549f1a7wc4xypk9-rspec-rerun-1.1.0.gem.drv /tmp/guix-tests/store/6fsgm0g0g8jk9cccj2blfx42fy9gh55h-ruby-mysql2-0.5.2.drv /tmp/guix-tests/store/f51ikkqcdjdax4s85kc97x9i961g40sz-ruby-mysql2-0.5.2-checkout.drv /tmp/guix-tests/store/l8hdza408kkagfhh18kanff5qqd0zsm2-ruby-parallel-1.21.0-checkout.drv /tmp/guix-tests/store/pz7ypifip13hxgyrglnj8w052q52znaq-ruby-arel-9.0.0.drv /tmp/guix-tests/store/cn34zl7v5jvbmi6c8r2j299rvsf4gy99-arel-9.0.0.gem.drv /tmp/guix-tests/store/v70y4lhwznp95iya704909m3jc8ycf3c-lsof-4.94.0.drv /tmp/guix-tests/store/9a1r4a89q64mkad3sb4jcxydvmxaqlxa-lsof-4.94.0-checkout.drv /tmp/guix-tests/store/d6khsi3qjydiqphrpy9xm5kaiafh578r-lsof-4.94.0-checkout.drv /tmp/guix-tests/store/z2v6b1wn5v968wvcwh35gv17dagafklr-ruby-activerecord-6.1.3.drv /tmp/guix-tests/store/3zz2gvjnjk3725i04z64mi5fdhw2jy28-activerecord-6.1.3.gem.drv /tmp/guix-tests/store/drlw0knmnxkmlj32xf4c7pxxzs5yc6ix-ruby-pdf-reader-2.4.0-checkout.drv /tmp/guix-tests/store/gkixgzzsvq99xb5i58kxcbxzp5dabd2v-ruby-morecane-0.2.0.drv /tmp/guix-tests/store/x98k79pjyrwi78xbhh17fxpqsq8qk2lg-morecane-0.2.0.gem.drv /tmp/guix-tests/store/l57k39caqxl4ig8xln18z1q67h2f5pzv-ruby-ascii85-1.0.3.drv /tmp/guix-tests/store/whdhzci53rl9bpv4awdmqncp5l2n1hgk-Ascii85-1.0.3.gem.drv /tmp/guix-tests/store/hwlci2qadlqvym3mp50ya0jw0hy4irrv-kramdown-2.3.1.gem.drv /tmp/guix-tests/store/miqj0j6mpqxrrdggk1qh2q2ldbqvxfq6-ruby-pdf-core-0.8.1.drv /tmp/guix-tests/store/i1qrqgd97mwlm539k8yfqc2b319jk7k1-pdf-core-0.8.1.gem.drv /tmp/guix-tests/store/q8n4m7va674ncm7vrvmqrijpfhxn0cyd-ruby-prawn-2.2.2-1.d980247.drv /tmp/guix-tests/store/gn2cdgm98p2h75j9kby1v99dpsrrnnv1-ruby-prawn-2.2.2-1.d980247-checkout.drv /tmp/guix-tests/store/nybn91vlww1v687r9mmylrzwnm1bk8fr-ruby-prawn-manual-builder-0.3.1.drv /tmp/guix-tests/store/vdl6dp97y8fqj3c5whm3ygi1qr8nmx8l-prawn-manual_builder-0.3.1.gem.drv /tmp/guix-tests/store/s7l2pq5y7lgg74686l2yzqd6nw30n3pk-ruby-prawn-table-0.2.2.drv /tmp/guix-tests/store/lf0xdsqas2yz3wm2765p9lxz4m3d4w25-prawn-table-0.2.2.gem.drv /tmp/guix-tests/store/p8nfnc4np9xbavy053b179b8cyqmfbmf-ruby-bacon-1.2.0.drv /tmp/guix-tests/store/83ms1n1ps34g6dwpc115x4w6gc4qmdd7-bacon-1.2.0.gem.drv /tmp/guix-tests/store/vdgw321mxmhqj08fz0c6wyv3ymzy3lrx-ruby-bacon-colored-output-1.1.1.drv /tmp/guix-tests/store/bnkhh7840r791v396c4lybq3yh0rmihr-bacon-colored_output-1.1.1.gem.drv /tmp/guix-tests/store/vklv44jl4mlg1k7pbgyxdrl6z6gry8z2-ruby-racc-1.5.2.drv /tmp/guix-tests/store/d75yalanpx3ahfdm0rcc9c8grcdvc4vg-racc-1.5.2.gem.drv /tmp/guix-tests/store/zinh68yk28gjlrnas61pzaahdzk5qmmq-ruby-json-pure-2.3.1.drv /tmp/guix-tests/store/c4dn8iy88pnm8339aznlq1nbm46pxqqj-json_pure-2.3.1.gem.drv /tmp/guix-tests/store/bx64lyx0a70y8nrrmprmzvkw9rlp6ifp-ruby-webmock-3.11.2.drv /tmp/guix-tests/store/45a4irglhg55ia3kmbq0z07kxcpan35k-webmock-3.11.2.gem.drv /tmp/guix-tests/store/c4drwfbpqzpvhyq0w44j3hf21isx174c-ruby-rainbow-3.0.0.drv /tmp/guix-tests/store/7iq31r3v62md57sfvpxnzdjvx84bwygq-rainbow-3.0.0.gem.drv /tmp/guix-tests/store/cb0hmmlcrp7dr0kc999npxm692xdxqa9-ruby-unicode-display-width-1.6.0.drv /tmp/guix-tests/store/lfjjy555s4i5z6a52myy8q3fr3qdxmk1-unicode-display_width-1.6.0.gem.drv /tmp/guix-tests/store/gldidddmj314hkdxbsxxj59zzqrmafli-ruby-rubocop-ast-1.4.1.drv /tmp/guix-tests/store/hrffa6gb1jcqpw8zg8hw6d8qay54i995-ruby-rake-13.0.1.drv /tmp/guix-tests/store/kv5z6cr4zyk0qiwx4kvyvxmbn3j340i3-rake-13.0.1.gem.drv /tmp/guix-tests/store/ivkwnrwdilyhl6xb5nxdhlc6v9rj6n7j-ruby-rubocop-ast-1.4.1-checkout.drv /tmp/guix-tests/store/w5sl68kz8b5ms4gjbhb0vx5sw7dfqqvj-ruby-oedipus-lex-2.5.2.drv /tmp/guix-tests/store/7rm0044kprrmwliprl9z8j26dv19mr6y-oedipus_lex-2.5.2.gem.drv /tmp/guix-tests/store/h6ylwhrd6z6vznmskxzq11wix2wrq4nx-ruby-rubocop-1.10.0.drv /tmp/guix-tests/store/kf8jdmww66ghf9fmqnvdsa3jq2g22i8k-ruby-regexp-parser-2.0.0.drv /tmp/guix-tests/store/fydm9h2hsixpdhcps0zl9yjzkylvmp4p-ruby-regexp-property-values-1.0.0-1.03007a6.drv /tmp/guix-tests/store/2n3c02ln0iwl8sv9a3vzldpvgyd1agf7-ruby-regexp-property-values-1.0.0-1.03007a6-checkout.drv /tmp/guix-tests/store/67v0kql10pj4cvxrp9q4klaf48j55xw8-ruby-character-set-1.4.0.drv /tmp/guix-tests/store/6gxam9q0wmdbqn4kkqmxdsfjrwsaq4jl-character_set-1.4.0.gem.drv /tmp/guix-tests/store/hmnaw048bffhiwb3dm7a144jxph9g37b-ruby-range-compressor-1.0.0.drv /tmp/guix-tests/store/h913hb1kp56j3z2r6zvknb9g4b57afsj-ruby-range-compressor-1.0.0-checkout.drv /tmp/guix-tests/store/snzvfjsla2y4p4h02rlgk2hzashr42lf-ruby-regexp-parser-2.0.0-checkout.drv /tmp/guix-tests/store/z66grpmkmsdlil5pvqqpkwrjs2x57cx0-ruby-test-queue-0.4.2.drv /tmp/guix-tests/store/rk8mc4jaihp7cwacvpawgw71fq692jha-test-queue-0.4.2.gem.drv /tmp/guix-tests/store/8rz2bs0pqa31ci5mk4y71kynf1586dzr-ruby-octokit-4.18.0.drv /tmp/guix-tests/store/inh5vnpi9774m3zk3kw7mbrbilcqvw6j-ruby-faraday-0.15.4.drv /tmp/guix-tests/store/7qnf9fkzrwp3i2c3ygq1wwll4a6xsmn4-faraday-0.15.4.gem.drv /tmp/guix-tests/store/s2bps14a75dz773f3nmlk61digryysqp-ruby-multipart-post-2.0.0.drv /tmp/guix-tests/store/6kqnwa1j7vpc8wcdhsh6v8g4fy3ajv43-multipart-post-2.0.0.gem.drv /tmp/guix-tests/store/sig7brrhmgl9ldvahwfhvwdkmr3v7939-octokit-4.18.0.gem.drv /tmp/guix-tests/store/wq34lfyywzxd1bah1p3x9dsnzk455grq-ruby-sawyer-0.8.2.drv /tmp/guix-tests/store/c5b3xikja96qcdwks44wgi038b70p98i-sawyer-0.8.2.gem.drv /tmp/guix-tests/store/cx6w555qhxnix1949qm06aw6jr0rj76p-ruby-byebug-11.1.3-checkout.drv /tmp/guix-tests/store/m9r6521w8nphnm954gzqkfrn9gzlsixp-ruby-byebug-11.1.3-checkout.drv /tmp/guix-tests/store/hpz8ihw4hri3qvix3ip81sklvgsjacd5-ruby-chandler-0.9.0.drv /tmp/guix-tests/store/sp6jh0yc8zryd4fk3npk5iif8qqzg93s-chandler-0.9.0.gem.drv /tmp/guix-tests/store/w3zk1g2d4fgr6ds783asfq7i917sgf2z-ruby-hydra-0.0-0.5abfa37-checkout.drv /tmp/guix-tests/store/jl12gb4nqy3cmjsj0arwf4nhvzd656x2-texlive-hyphen-estonian-59745-checkout.drv /tmp/guix-tests/store/0ncky4a88bc7j01wyhy0j32i0lrdhidw-texlive-unicode-data-59745.drv /tmp/guix-tests/store/ncm6sgavvw9ckplgaiiyaizyy0zd75mq-texlive-unicode-data-59745-checkout.drv /tmp/guix-tests/store/10a44g0ghdj0y4ngyf817hw47yiiwc4l-texlive-latex-atveryend-59745.drv /tmp/guix-tests/store/1cnn0llrg6cki3nlxlawmksvwkrwsbqr-texlive-latex-atveryend-59745-checkout.drv /tmp/guix-tests/store/1iamypgxriqxg5xq55vr7mbyhp03m6lm-texlive-hyphen-sanskrit-59745.drv /tmp/guix-tests/store/sy94jbrhp0dkhiyl1rr55p4zafszvy1c-texlive-hyphen-sanskrit-59745-checkout.drv /tmp/guix-tests/store/1wfirzrwg6y8mivajvk68ac5jzd92qpx-texlive-hyphen-bulgarian-59745.drv /tmp/guix-tests/store/gyw0phsla1ysy17scpdrnvn2ps994fdh-texlive-hyphen-bulgarian-59745-checkout.drv /tmp/guix-tests/store/1y66pp9db31aabf24p3w2v3bs3np7b73-texlive-hyphen-friulan-59745.drv /tmp/guix-tests/store/bdq2spc4vyxwgic5j6dqahvki5q5rj8a-texlive-hyphen-friulan-59745-checkout.drv /tmp/guix-tests/store/1z0q2n6c2h36w79q110ppmz8hzqazv4l-texlive-latex-fancyvrb-59745.drv /tmp/guix-tests/store/37ms0ffrqlwqbamwiynin86wddyk5pn4-texlive-latex-fancyvrb-59745-checkout.drv /tmp/guix-tests/store/2g38pi5rpz5pphbpk6mcbx5w31n6mws3-texlive-tetex-59745.drv /tmp/guix-tests/store/q825bwi5hy15mzqw8s0kh0qnidjp9gqb-texlive-tetex-59745-checkout.drv /tmp/guix-tests/store/2rpqnivd9vx2klsmvall8n7lqlx9xhi7-texlive-generic-bigintcalc-59745.drv /tmp/guix-tests/store/552f3dw1jbhpms825zcdwc5jnghssjig-texlive-generic-bigintcalc-59745-checkout.drv /tmp/guix-tests/store/9y41z5xbh13619kd0b73q95r0myidfr5-texlive-generic-ltxcmds-59745.drv /tmp/guix-tests/store/x2n9zrpcfyj97rdbp2n0n3v91jclv0ni-texlive-generic-ltxcmds-59745-checkout.drv /tmp/guix-tests/store/lcyim7isxyggdkp7bjzbkami1ys08xgy-texlive-latex-pdftexcmds-59745.drv /tmp/guix-tests/store/f44sh4fiivjrra5j52r4yqgk6prn0l38-texlive-latex-pdftexcmds-59745-checkout.drv /tmp/guix-tests/store/2vgkkrrrds2pm1q7gplan2ppl20973hq-texlive-generic-intcalc-59745.drv /tmp/guix-tests/store/q73qxphsnqg3zbjfzgrv5fbavdi2m5w7-texlive-generic-intcalc-59745-checkout.drv /tmp/guix-tests/store/36kjzj0yyiml211bf7zv40s8bvml0lps-texlive-latex-l3kernel-59745.drv /tmp/guix-tests/store/c7drci7hj9mvrvav2yr42r1ipxa52s9r-texlive-latex-l3kernel-59745-checkout.drv /tmp/guix-tests/store/vc53kc9vk5a5wz91dbj07m3ag1x7mzfy-module-import-compiled.drv /tmp/guix-tests/store/z8a7dipy72cdk7fdabhm85swf7v6939l-texlive-docstrip-59745.drv /tmp/guix-tests/store/vs2p5rc2mzyadd4591qqnlcbrz7621zi-texlive-docstrip-59745-checkout.drv /tmp/guix-tests/store/38lfj5p4bj98azs0nml9an6wrcg4f5v0-texlive-latex-hycolor-59745.drv /tmp/guix-tests/store/vifi4s234y4b92ygxbwidhdsq5w0ddxq-texlive-latex-hycolor-59745-checkout.drv /tmp/guix-tests/store/39fpfyjrrnki45b9y034pifmwnfzy8ab-texlive-latex-auxhook-59745.drv /tmp/guix-tests/store/q53x3jsbj0ikb4xssqx5yf1ii9r6j3xq-texlive-latex-auxhook-59745-checkout.drv /tmp/guix-tests/store/3g0vv1218kg4fv5bwbyjsai4xfziyb1k-texlive-hyphen-danish-59745.drv /tmp/guix-tests/store/5l6v1ib2x5c7hrjw2ihqyj2lc7lgzcf6-texlive-hyphen-danish-59745-checkout.drv /tmp/guix-tests/store/3p1dvk67gd7cwhnj37vcag8pa7h2qn3q-texlive-latex-overpic-59745.drv /tmp/guix-tests/store/alj8rf2akh9nccdzh454k64fq60wvqxr-texlive-latex-overpic-59745-checkout.drv /tmp/guix-tests/store/3r3hanj0m3d1s6n63ipqb2r3bi5514n0-texlive-hyphen-coptic-59745.drv /tmp/guix-tests/store/464mjwky86xwhi76nvgjvrk790bm03f4-texlive-hyphen-coptic-59745-checkout.drv /tmp/guix-tests/store/3wkrlp79j5xvswfvcn0glsl457s5gd2s-texlive-latex-listings-59745.drv /tmp/guix-tests/store/49xnsh42bh4zq1581c4cbcq9ricr4sw9-texlive-hyphen-belarusian-59745.drv /tmp/guix-tests/store/2npissy680lrkyx5f9mf1pm5qrcn64gp-texlive-hyphen-belarusian-59745-checkout.drv /tmp/guix-tests/store/4plkwy1dl6cffrxb69ki6cs3xiw9fykm-texlive-hyphen-schoolfinnish-59745.drv /tmp/guix-tests/store/ibr57wq5isx3b1pxcgcgvj88cww6yk1k-texlive-hyphen-schoolfinnish-59745-checkout.drv /tmp/guix-tests/store/4w1avzc1d7cm6aj6issafxr0s977x1m8-texlive-latex-base-59745.drv /tmp/guix-tests/store/5g0vlk8dfd2zwmq9giwnq81423lp6lgf-texlive-hyphen-galician-59745.drv /tmp/guix-tests/store/3492r0zncj65v4dafadgsb06l9ix3hz8-texlive-hyphen-galician-59745-checkout.drv /tmp/guix-tests/store/5ysx5qff3bdq37h9fhr9l57kywkrmpml-texlive-hyphen-turkish-59745.drv /tmp/guix-tests/store/8fjfmqzd9csmjpvzgnh9fpg9qkbbxw5z-texlive-hyphen-turkish-59745-checkout.drv /tmp/guix-tests/store/6d22kqj1554wkjw6pb106ahsay6r719j-texlive-hyphen-icelandic-59745.drv /tmp/guix-tests/store/g9c7jpazfyk3338np4z9ky09n30sbj37-texlive-hyphen-icelandic-59745-checkout.drv /tmp/guix-tests/store/6zsbv7bp7p3vm7xbjhbasb2rfrb8ia49-texlive-hyphen-esperanto-59745.drv /tmp/guix-tests/store/gryga1fq59ac9j615kz6fx0jc4klg8g4-texlive-hyphen-esperanto-59745-checkout.drv /tmp/guix-tests/store/742ahq9dhlvd58zr8xgwzd4njzqiw1xx-texlive-hyphen-chinese-59745.drv /tmp/guix-tests/store/ny7pk67ra6c49z9rl8mlca36hc2ifldn-texlive-hyphen-chinese-59745-checkout.drv /tmp/guix-tests/store/7nb1jwansghqfbzrxf7i1ll9w5pw90j8-texlive-knuth-lib-59745.drv /tmp/guix-tests/store/v48923xb43k102p426ylkzw7xl62zipz-texlive-knuth-lib-59745-checkout.drv /tmp/guix-tests/store/83537fhilhwdk776x1y3p89dcrgf5x1s-texlive-latexconfig-59745.drv /tmp/guix-tests/store/h43kmlj78p58amdh3vsmqwgfyqlfmxx5-texlive-latexconfig-59745-checkout.drv /tmp/guix-tests/store/8a74cgxlhcigfzg1jn6ddypdgyyi2aqs-texlive-hyph-utf8-59745.drv /tmp/guix-tests/store/dkfvvh7wfq9sps3mq4x7hmxh6akss380-texlive-hyph-utf8-59745-checkout.drv /tmp/guix-tests/store/m3g1c68mz34ia78q7bwy0g5hxa049181-texlive-tex-plain-59745.drv /tmp/guix-tests/store/kna5gxzafwkyc6qhbw95f8b8yprv7ch7-texlive-tex-plain-59745-checkout.drv /tmp/guix-tests/store/qhjf8mjb2cq1q49g8svv1is5zgdl8fa9-texlive-hyphen-base-59745.drv /tmp/guix-tests/store/p820yvcy0mdfr6rcn4q96dlzcm9p5nx9-texlive-hyphen-base-59745-checkout.drv /tmp/guix-tests/store/8idg356cww7yycj0i2q110wybldj4hvs-texlive-hyphen-catalan-59745.drv /tmp/guix-tests/store/80q61pr0c4njrmd9jlr6xxg2bn8cxqxa-texlive-hyphen-catalan-59745-checkout.drv /tmp/guix-tests/store/8mbgw4fal7my6qzqkf5k1si2h4ylvx0z-texlive-hyphen-romanian-59745.drv /tmp/guix-tests/store/n4qksi18yqpx33b1zbmbjmhdzmdsrzd9-texlive-hyphen-romanian-59745-checkout.drv /tmp/guix-tests/store/8sy4vh6xmz8gq4qwryyldmilgjk1k6z8-texlive-hyphen-dutch-59745.drv /tmp/guix-tests/store/akr925l962nkyjvwk2r14fmgbslk62db-texlive-hyphen-dutch-59745-checkout.drv /tmp/guix-tests/store/8vprd021cvzcw0biqwzblz6ydycgbr2r-texlive-hyphen-occitan-59745.drv /tmp/guix-tests/store/f0yndj8vi0iw6jkc7j7ry75avlfxi6h1-texlive-hyphen-occitan-59745-checkout.drv /tmp/guix-tests/store/929q8hsjaqchhkvm8bgg3mqicc6ma1xj-texlive-hyphen-welsh-59745.drv /tmp/guix-tests/store/yn4mdhybwnga5djb0wfz8hxlxl7m6adj-texlive-hyphen-welsh-59745-checkout.drv /tmp/guix-tests/store/999rc8dva80nqbv63ji6b2ir2dwygj42-texlive-ukrhyph-59745.drv /tmp/guix-tests/store/jh0r74c2ydjv1ji06vdgayq2b3wq636j-texlive-ukrhyph-59745-checkout.drv /tmp/guix-tests/store/9f5x3rmlrz5r6hj01d4wnkx9cpczm9hw-texlive-hyphen-lithuanian-59745.drv /tmp/guix-tests/store/1x31y4il4agkmabznvb80pizxk567vgf-texlive-hyphen-lithuanian-59745-checkout.drv /tmp/guix-tests/store/a07j3pg0jnmcq29b2zdi74y36lcqrpmx-texlive-hyphen-spanish-59745.drv /tmp/guix-tests/store/3nhal4xx0zb3phb05j51v9s4037yvf7i-texlive-hyphen-spanish-59745-checkout.drv /tmp/guix-tests/store/axskv7b2blf6gpp3mxgkdm5z0rdvyysy-texlive-hyphen-kurmanji-59745.drv /tmp/guix-tests/store/ns5kjzmgrvwgfli70ndvw52i1v4gbdrx-texlive-hyphen-kurmanji-59745-checkout.drv /tmp/guix-tests/store/bg1yqdabykjza0pmjnxihc1w4pcvqj1x-texlive-hyphen-finnish-59745.drv /tmp/guix-tests/store/yb98cywdaac9br29ircamag7jvxa51r4-texlive-hyphen-finnish-59745-checkout.drv /tmp/guix-tests/store/c2hdz19w4c2fccqshw93mgdwak8vifyc-texlive-dehyph-exptl-59745.drv /tmp/guix-tests/store/y92mbkjmia5006bzxm6nj5nbmvz5mb9k-texlive-dehyph-exptl-59745-checkout.drv /tmp/guix-tests/store/cx39d2gv230hr5bqwzap712fd6lamvi9-texlive-hyphen-irish-59745.drv /tmp/guix-tests/store/sq2aydqrnk8bn5s5dlagip02kzif8hl3-texlive-hyphen-irish-59745-checkout.drv /tmp/guix-tests/store/dd043f39cl5aq7vivd0lzi9s915rn1ah-texlive-hyphen-greek-59745.drv /tmp/guix-tests/store/02fiq2igi1dfbh2qk44aaz0l7x0qqdrn-texlive-hyphen-greek-59745-checkout.drv /tmp/guix-tests/store/ddv5n1cxhbqhfsbba93vdiqy31wrv573-texlive-hyphen-georgian-59745.drv /tmp/guix-tests/store/sfm2c8nvc97ln5z4bqzdlijh81x2yah5-texlive-hyphen-georgian-59745-checkout.drv /tmp/guix-tests/store/df45idg8zga0aqmm5z92drkk2gdrrc1n-texlive-ruhyphen-59745.drv /tmp/guix-tests/store/ix8fjhyr1rhdkx6b24gcq3zp4zjvfh6i-texlive-ruhyphen-59745-checkout.drv /tmp/guix-tests/store/djadrny81scy66qyvqlyy8zkxvf1p141-texlive-hyphen-ethiopic-59745.drv /tmp/guix-tests/store/mprim31imayp1i3ivriyq656f8b24l0w-texlive-hyphen-ethiopic-59745-checkout.drv /tmp/guix-tests/store/ds3wg006ma4i8cxh0xq57fxn1rbksf10-texlive-hyphen-macedonian-59745.drv /tmp/guix-tests/store/kz4yzljslf337rrxwi03ri0qkq96gmny-texlive-hyphen-macedonian-59745-checkout.drv /tmp/guix-tests/store/f2r618g0isy7chp1drxx0wpp4rn0bawz-texlive-hyphen-indonesian-59745.drv /tmp/guix-tests/store/crxzvn6wjl41fl8hb92zm0kkcf44dgpk-texlive-hyphen-indonesian-59745-checkout.drv /tmp/guix-tests/store/fp7bcfxm0hzgqrvm7hk9ys3pn8zzspqk-texlive-hyphen-croatian-59745.drv /tmp/guix-tests/store/3ddg5jv999qkcfy02dkbin1skwagcnd1-texlive-hyphen-croatian-59745-checkout.drv /tmp/guix-tests/store/fyf0sccjrvn7bp138d375w0l20irvi9s-texlive-hyphen-french-59745.drv /tmp/guix-tests/store/cj2w2qq0z8jn5109j4qai380siacwxzj-texlive-hyphen-french-59745-checkout.drv /tmp/guix-tests/store/ghcrjphx72kcdari83zjh2rnc6b3sn2g-texlive-hyphen-norwegian-59745.drv /tmp/guix-tests/store/3ayx9rm7z7q9816cybvqf16mm4sxcd3f-texlive-hyphen-norwegian-59745-checkout.drv /tmp/guix-tests/store/ghkhlh9ysffrix0bfk8x25hja56d3qi3-texlive-latex-base-59745-checkout.drv /tmp/guix-tests/store/gk8yk3fmyrqgax5cshsa2z1qjc2si30f-texlive-hyphen-armenian-59745.drv /tmp/guix-tests/store/8idp13i46xqsa2y329bhg55c30skwwwi-texlive-hyphen-armenian-59745-checkout.drv /tmp/guix-tests/store/h8d3rm2smi56s1zmwf0r2xc16r62n0vd-texlive-hyphen-russian-59745.drv /tmp/guix-tests/store/njhg4j0bavxamb5p1yxzi4p6a27igjac-texlive-hyphen-russian-59745-checkout.drv /tmp/guix-tests/store/hasasspbxkp6vv6iz7vdl69cjgi19xbd-texlive-hyphen-ukrainian-59745.drv /tmp/guix-tests/store/hnhp8gy8zkb6ryakcmrpkx1nd0k9a005-texlive-hyphen-ukrainian-59745-checkout.drv /tmp/guix-tests/store/hy3gzb1kvz6z0j7dlrp0lzs0kjpcz35v-texlive-hyphen-polish-59745.drv /tmp/guix-tests/store/a0bzaad262bn3dmbz0ns02g54jrl17c7-texlive-hyphen-polish-59745-checkout.drv /tmp/guix-tests/store/j0pamvcy8hkij2di7vxcwpxbd5lx0r70-texlive-luatexconfig-59745-checkout.drv /tmp/guix-tests/store/ja1vnz4ir21jgxwaxrs5vamsyz2vlqml-texlive-hyphen-slovenian-59745.drv /tmp/guix-tests/store/9v9vspd2bxkd52yhxwad4mn7h66sqwc2-texlive-hyphen-slovenian-59745-checkout.drv /tmp/guix-tests/store/jhaqhkv0b17x6p826v7adcj4bl11s807-texlive-hyphen-serbian-59745.drv /tmp/guix-tests/store/ksbc9bckv7d7hn5z9864hpcmb2pz2ibw-texlive-hyphen-serbian-59745-checkout.drv /tmp/guix-tests/store/jv2gbw9j0xcxq6giv6bkvsrac9v6lwhh-texlive-hyphen-turkmen-59745.drv /tmp/guix-tests/store/2qqv38v1brsl2yp5wmzzbsq5yj3q9yfl-texlive-hyphen-turkmen-59745-checkout.drv /tmp/guix-tests/store/jw6vqxl67y3s30lil0xyyc4wcpsympxq-texlive-hyphen-uppersorbian-59745.drv /tmp/guix-tests/store/3fvxfszmw0y354xs96x318s4y90yslmc-texlive-hyphen-uppersorbian-59745-checkout.drv /tmp/guix-tests/store/k4bzmzrf684q1iqrgjv7sijb431lsvha-texlive-hyphen-thai-59745.drv /tmp/guix-tests/store/586wy9h1s6n77xxilv2wc63rhpyqwwp5-texlive-hyphen-thai-59745-checkout.drv /tmp/guix-tests/store/lb7bgkdjc5fph5lb9g255cyxfh8cxhfs-texlive-hyphen-slovak-59745.drv /tmp/guix-tests/store/xij7xqzsdxc521w57f88nkhl1m6gh0l7-texlive-hyphen-slovak-59745-checkout.drv /tmp/guix-tests/store/li0cx82377r9kyimpcp84hva3bl6qvha-texlive-hyphen-basque-59745.drv /tmp/guix-tests/store/4bidv6ypjzbin0sdhiixchh08nhk6hcn-texlive-hyphen-basque-59745-checkout.drv /tmp/guix-tests/store/lsn3y9n94wm1vwrvf7yilmd7s4anzmij-texlive-hyphen-latvian-59745.drv /tmp/guix-tests/store/p2za8jrrh7kj9zryk4dhsy9vwpqfg156-texlive-hyphen-latvian-59745-checkout.drv /tmp/guix-tests/store/m62cvfvhagmh2ig8ghfri826w82sa65x-texlive-kpathsea-59745.drv /tmp/guix-tests/store/n9bjk653lwzvpp5lxm2cjgbzdxwjp0ag-texlive-kpathsea-59745-checkout.drv /tmp/guix-tests/store/mhwymi5cvm6d2j15ip3l9n82bfarw8vr-texlive-hyphen-portuguese-59745.drv /tmp/guix-tests/store/papkw00l80wwnjgk7gvh8psvnvh998r4-texlive-hyphen-portuguese-59745-checkout.drv /tmp/guix-tests/store/miscccyxnc706ypvlz8wk1gjjx2n3k86-texlive-hyphen-mongolian-59745.drv /tmp/guix-tests/store/fn7nahrkyj0vv4gbga98h85bay3gxis6-texlive-hyphen-mongolian-59745-checkout.drv /tmp/guix-tests/store/mzk1ri3cqdhi80f0zaknz211b8lzsziz-texlive-hyphen-latin-59745.drv /tmp/guix-tests/store/48dsri50w40265slbklmhrkhks2gl872-texlive-hyphen-latin-59745-checkout.drv /tmp/guix-tests/store/n4wsp8xk7vyb9gf8mvn9jxshf57cdyss-texlive-hyphen-romansh-59745.drv /tmp/guix-tests/store/qkc7lx2zaq67b0n9ajd4yrm57j2mbc4h-texlive-hyphen-romansh-59745-checkout.drv /tmp/guix-tests/store/n85zjwa5nl5gh7ycsmjyx37il4h0lx7i-texlive-hyphen-ancientgreek-59745.drv /tmp/guix-tests/store/22nvf7lmzhrv14r3hbpz1wjb45hlrna9-texlive-hyphen-ancientgreek-59745-checkout.drv /tmp/guix-tests/store/n9iyfz4z7ibr7ld4p03lmjppyk352ivr-texlive-etex-59745.drv /tmp/guix-tests/store/hh56yd2gzy02i8j0q56za2gsll9sq3xc-texlive-etex-59745-checkout.drv /tmp/guix-tests/store/p1i7apwxxl2rwlhk4sy8al45v4wa1i2p-texlive-hyphen-afrikaans-59745.drv /tmp/guix-tests/store/fb6f3viwwaswn7gmpaczyp8qkd5xwrx9-texlive-hyphen-afrikaans-59745-checkout.drv /tmp/guix-tests/store/p9cymrnkvppnk94k7740jrbm0qh0zgv4-texlive-latex-l3backend-59745.drv /tmp/guix-tests/store/7c6py2c9mmxxy9mpi10zlyng28gvqx5q-texlive-latex-l3backend-59745-checkout.drv /tmp/guix-tests/store/pqgi7123kdhip7f2l9bfv9dph1ff58av-texlive-hyphen-piedmontese-59745.drv /tmp/guix-tests/store/vy1hlcwibafrl9n293l4ib3k13qz74ij-texlive-hyphen-piedmontese-59745-checkout.drv /tmp/guix-tests/store/qfa04wr43v6v4yhsbxvd0fxgsil45l7g-texlive-hyphen-indic-59745.drv /tmp/guix-tests/store/9a5f2mb55hbcv2zg8fs68vbillc1sp2q-texlive-hyphen-indic-59745-checkout.drv /tmp/guix-tests/store/rry4brx0r00sx2zl7w2lv2jy2vpp92s8-texlive-hyphen-german-59745.drv /tmp/guix-tests/store/hfvszmswv2mnr5qiabm92596q01l356p-texlive-hyphen-german-59745-checkout.drv /tmp/guix-tests/store/s5xx7w0fvyfbk4w9nlki2gbrs2irjqwa-texlive-hyphen-hungarian-59745.drv /tmp/guix-tests/store/jqimih64y1yg3xhyr8xn7kr4f9wz3m5d-texlive-hyphen-hungarian-59745-checkout.drv /tmp/guix-tests/store/sf7i0m5y6d1g11cy5xzy611b9vbj2r5x-texlive-tex-ini-files-59745.drv /tmp/guix-tests/store/1i4hpj2w5i0wxjxdkdnqy24vgpp4cjjx-texlive-tex-ini-files-59745-checkout.drv /tmp/guix-tests/store/slzrv82lwgs696n018p82rc1zd8bin5l-texlive-hyphen-czech-59745.drv /tmp/guix-tests/store/wsdyr8v0xmy2i28wazgmmskhjgcpkkxi-texlive-hyphen-czech-59745-checkout.drv /tmp/guix-tests/store/svrfmg28nhzv9588avsyxkskgxa7c475-texlive-hyphen-interlingua-59745.drv /tmp/guix-tests/store/n86bbl111pzx2jvmabapz8mw1wgiwx4s-texlive-hyphen-interlingua-59745-checkout.drv /tmp/guix-tests/store/syfpc9hdn3xwiqw5rgwdxvb8vxnr7qgw-texlive-hyphen-swedish-59745.drv /tmp/guix-tests/store/dql4a1j3f2gsj4l6gr1ni30vd5rp0rxk-texlive-hyphen-swedish-59745-checkout.drv /tmp/guix-tests/store/vjgkk4pq4ydvlv4hs3ialgvc3vhd8saq-texlive-hyphen-english-59745.drv /tmp/guix-tests/store/sjwnh4z21ji6gsd878gprbkskw48d6yi-texlive-hyphen-english-59745-checkout.drv /tmp/guix-tests/store/w3wmibd8gdip3b93v9ymwnp2avby45nk-texlive-latex-l3packages-59745.drv /tmp/guix-tests/store/lsvls0xwfxd469cam3qbapng29sf82hy-texlive-latex-l3packages-59745-checkout.drv /tmp/guix-tests/store/wnmni0xkpvi3138yxgqadv2c8hyz8s30-texlive-hyphen-churchslavonic-59745.drv /tmp/guix-tests/store/94kq4bbs7vdvyzrcf60mv76xsbr63702-texlive-hyphen-churchslavonic-59745-checkout.drv /tmp/guix-tests/store/xhr6mnwbhm5xxh2sj98kjldjakf0izxm-texlive-hyphen-pali-59745.drv /tmp/guix-tests/store/bxaimb78y5m86alkphb7imkkr7i8fviy-texlive-hyphen-pali-59745-checkout.drv /tmp/guix-tests/store/xi99mdnd0kn5sym7jw9fmi26nf1m62v8-texlive-hyphen-italian-59745.drv /tmp/guix-tests/store/vd00r9bw4c28nxg2gyixjm229y7gc363-texlive-hyphen-italian-59745-checkout.drv /tmp/guix-tests/store/5cjjbb3ifnpdxavqafyi1dayqzq30w12-texlive-latex-listings-59745-checkout.drv /tmp/guix-tests/store/3xmrqgagh2qld8il7qayx2rk0pa9var1-texlive-latex-titlesec-59745.drv /tmp/guix-tests/store/6lf7n45h6gmb16spb11hkv1hixbvmlzy-texlive-latex-titlesec-59745-checkout.drv /tmp/guix-tests/store/47n364957cizzh4y8ix19k2sv597vcyf-texlive-generic-gettitlestring-59745.drv /tmp/guix-tests/store/fy3mqqczka6wjwi2r01v415pvl3kb44z-texlive-generic-gettitlestring-59745-checkout.drv /tmp/guix-tests/store/51nlarl0j7w8xqpl0chcrh04ly6xcxfd-texlive-latex-fancybox-59745.drv /tmp/guix-tests/store/rikdpl9i6dg44lwilnf28n4pfw1lq2gv-texlive-latex-fancybox-59745-checkout.drv /tmp/guix-tests/store/57vk89arbn0d6fz18k98rrywib70n286-texlive-amsfonts-59745.drv /tmp/guix-tests/store/869gnf7dkmh42d7w3nz9sfmg89f18xlr-texlive-graphics-def-59745.drv /tmp/guix-tests/store/l7k0g05i15diz68wy4mblkngghwn95yg-texlive-graphics-def-59745-checkout.drv /tmp/guix-tests/store/yyrfidanv08ilxhv6qalxkml6ycx2zwk-texlive-latex-epstopdf-pkg-59745.drv /tmp/guix-tests/store/jxm5hpc3xw6y0xvy0367rzf7iw79rxkp-texlive-latex-epstopdf-pkg-59745-checkout.drv /tmp/guix-tests/store/b0r24iwj145b1g4wzfvna8pwibg1nl56-texlive-amscls-59745.drv /tmp/guix-tests/store/i7c76g8g1bkny6yw1v12ngnss4gxq4ig-texlive-amscls-59745-checkout.drv /tmp/guix-tests/store/c6x6r5mr1iwd8sadb7v4cjksn0s3hkgf-texlive-psnfss-59745.drv /tmp/guix-tests/store/lyx2gfx63g1sn2add80rc0id26z9g5gf-texlive-psnfss-59745-checkout.drv /tmp/guix-tests/store/fwjz5q37hvjwgi2pqz6xvml4kizg96rp-texlive-cm-super-59745.drv /tmp/guix-tests/store/59jk07z2vz5daw7lbwq9ijc9z3n8c5sh-texlive-cm-super-59745-checkout.drv /tmp/guix-tests/store/g4iyk5g22f7px23mdn7qgq3jbgba1hid-texlive-graphics-cfg-59745.drv /tmp/guix-tests/store/dss7yw2lb1cy31rlf7yjmcar9khznkip-texlive-graphics-cfg-59745-checkout.drv /tmp/guix-tests/store/h3b5iy9c337438qp5np19vwnvi3cf25l-texlive-latex-cyrillic-59745.drv /tmp/guix-tests/store/58rk3sa52bpkxn51i51k507liizwzvkp-texlive-latex-cyrillic-59745-checkout.drv /tmp/guix-tests/store/jmxxq0fx491z3b19vxh4xl04spzfk285-texlive-updmap.cfg-59745.drv /tmp/guix-tests/store/jxbkjb96z5zlsarw7gd00vxnwviqcz2k-texlive-latex-amsmath-59745.drv /tmp/guix-tests/store/wkm65g4vaipkyfb69fw6iqrh4gh27a29-texlive-latex-amsmath-59745-checkout.drv /tmp/guix-tests/store/kir5zzp8la3mdjkd8hv45xbili33i95i-texlive-fontinst-59745.drv /tmp/guix-tests/store/ds0vcppkczcmikg2vfx1a4md6d16r7h0-texlive-fontinst-59745-checkout.drv /tmp/guix-tests/store/lw8sqs2d3l0jjl41k3s7hldk9pqzw9yl-updmap.cfg.drv /tmp/guix-tests/store/mmfl11kl0l577nnbdvfipygc4n4h71jx-texlive-generic-babel-english-59745.drv /tmp/guix-tests/store/djm233j075lw09maa9r82pis3z3c53xx-texlive-generic-babel-english-59745-checkout.drv /tmp/guix-tests/store/r2plcggy8934fs32xd6bnfhkpivi2w8z-texlive-latex-tools-59745.drv /tmp/guix-tests/store/k2vapw1a30icpwmx4ib9v5bavr5ab218-texlive-latex-tools-59745-checkout.drv /tmp/guix-tests/store/v5b55nyibwmz8j0lmws3yrzgzabin7j0-texlive-babel-59745.drv /tmp/guix-tests/store/yj3bmhnqp68pa90ssnm7f6kbd2n2xd2v-texlive-babel-59745-checkout.drv /tmp/guix-tests/store/wk96qhxiypdcr5dy4jn5jgypr0wfrsp4-texlive-dvips-59745.drv /tmp/guix-tests/store/av6l4qjvmpmls89mz26rwgglf4w1cw7a-texlive-dvips-59745-checkout.drv /tmp/guix-tests/store/yxv34iypd2b0idfx18m7wy0wxrg4sycy-texlive-latex-graphics-59745.drv /tmp/guix-tests/store/4cpap8kb7f739csirf6mgl4yxpz63qb6-texlive-latex-graphics-59745-checkout.drv /tmp/guix-tests/store/zjrb58x7xfqf7arlmnlxwv2snqkgljrs-texlive-fontname-59745.drv /tmp/guix-tests/store/nqrbdyzxyvrrk2kgkr0qf5v1kvnp4ywb-texlive-fontname-59745-checkout.drv /tmp/guix-tests/store/sc06dgzi2mqs5mddqvxa4myy7n45gy9a-texlive-amsfonts-59745-checkout.drv /tmp/guix-tests/store/5r26vgjj1cmf406317px89kq43jw1baq-texlive-hyperref-59745.drv /tmp/guix-tests/store/84v5kgi34y7dsaxqwjf5bc33q037y1jz-texlive-generic-pdfescape-59745.drv /tmp/guix-tests/store/x2kh4lp5wxixq971sswc7q7jls5sd8gr-texlive-generic-pdfescape-59745-checkout.drv /tmp/guix-tests/store/88ywms5jm4jv9lb2prrwhi01qidgdfk4-texlive-hyperref-59745-checkout.drv /tmp/guix-tests/store/g1ifc9kcghrav5s0yj62il4d4si7fm47-texlive-generic-atbegshi-59745.drv /tmp/guix-tests/store/cya9fb6sqbpij9ww3viq1qg7g8lvnzss-texlive-generic-atbegshi-59745-checkout.drv /tmp/guix-tests/store/h1yb0kh5c9g6gxvxqm1s0bk87xy91nx7-texlive-latex-refcount-59745.drv /tmp/guix-tests/store/28vh8s32vjjnnx1gch0if3a39h2q46n2-texlive-latex-refcount-59745-checkout.drv /tmp/guix-tests/store/ixx3z3xaavqw70plj7cvr5gqf58kv9gz-texlive-generic-bitset-59745.drv /tmp/guix-tests/store/40ws55x9bbwmzb744mr02d7q0kclrybj-texlive-generic-bitset-59745-checkout.drv /tmp/guix-tests/store/jja6nshn7nascafwmikv42lznwnakxks-texlive-generic-kvsetkeys-59745.drv /tmp/guix-tests/store/0fdphls99dpyyimdw6dhvky7v86gvahz-texlive-generic-kvsetkeys-59745-checkout.drv /tmp/guix-tests/store/mw1x9fac2r319wvv9rffq6h28mfj1rcf-texlive-url-59745.drv /tmp/guix-tests/store/fkx7i2dr74dvaawrm323pqi6bbfx0np9-texlive-url-59745-checkout.drv /tmp/guix-tests/store/n5swg9k6i2nz69cg8pscqd26lbj36sf2-texlive-generic-kvdefinekeys-59745.drv /tmp/guix-tests/store/sp83swx4m9q1d7h5f1kp7cim9wsdn711-texlive-generic-kvdefinekeys-59745-checkout.drv /tmp/guix-tests/store/phc664sk9sbiqxl7qfm2947ixacy3yi0-texlive-latex-letltxmacro-59745.drv /tmp/guix-tests/store/r59cpc939ppshdz7fbwdc9m2kkvlfbx7-texlive-latex-letltxmacro-59745-checkout.drv /tmp/guix-tests/store/pxg43pyrmjn2yzn9y8cfyjd8l2kj5y3l-texlive-latex-kvoptions-59745.drv /tmp/guix-tests/store/k2j6lrnni83b04j1h2p4gdbvv2zafnxf-texlive-latex-kvoptions-59745-checkout.drv /tmp/guix-tests/store/q1va4096249nvqs6wvyplywjw30f5ki0-texlive-latex-rerunfilecheck-59745.drv /tmp/guix-tests/store/by8wfs6f6s177nw35wgxxjvqhwjwkzd5-texlive-latex-rerunfilecheck-59745-checkout.drv /tmp/guix-tests/store/zfard3vh41zqdrvfa4dka28fgcc4pmng-texlive-generic-uniquecounter-59745.drv /tmp/guix-tests/store/04fd2gbla04q2v6ksziql07zyvciys99-texlive-generic-uniquecounter-59745-checkout.drv /tmp/guix-tests/store/6p0gpdrdncs8980a5q1d8f229wb4vpfm-texlive-latex-subfigure-59745.drv /tmp/guix-tests/store/7n58zr4pqzd02jhqd2fgsj87m2ip1c40-texlive-latex-subfigure-59745-checkout.drv /tmp/guix-tests/store/7aqgvkm1wrnxsbsmbpcmd4rn9nnkgvxk-texlive-latex-fancyhdr-59745.drv /tmp/guix-tests/store/x55icf4yc3bl1aw4fprvddx9r6na1kl6-texlive-latex-fancyhdr-59745-checkout.drv /tmp/guix-tests/store/81l43lxn4gl693dpnm72lhnjm1jsgc71-inkscape-1.1.1.drv /tmp/guix-tests/store/0zf7i2fjqxlw6pmd0gvfyp1cj2gx5jnh-libsigc++-2.9.3.drv /tmp/guix-tests/store/9s6q4md79x4av5vbdisxg7jkwbldkg13-libsigc++-2.9.3.tar.xz.drv /tmp/guix-tests/store/ick5yqyfq4lkg9pmqrhhp3wkqdzyhdsx-mm-common-1.0.3.drv /tmp/guix-tests/store/fjmidvb43rzdyqhkrhc4rwvqmlfa1aan-mm-common-1.0.3.tar.xz.drv /tmp/guix-tests/store/33clhsbd69c4hlsmi29gg1k32jc69ljc-atkmm-2.28.1.drv /tmp/guix-tests/store/10jgiv65k8mwkh7w0xhbhanp1qsp974r-atkmm-2.28.1.tar.xz.drv /tmp/guix-tests/store/78q79qz8ch98x3swc04i0mr52j70lcc8-glibmm-2.64.5.drv /tmp/guix-tests/store/j1i6x1sapsaxpqvvk3cq94dmnvyx0ac4-glibmm-2.64.5.tar.xz.drv /tmp/guix-tests/store/z2hqfm6ml0rk166wx8v338jkr9g15i51-libsigc++-3.0.6.drv /tmp/guix-tests/store/na2gs48240w241yhc85rp55rln1ibwm3-libsigc++-3.0.6.tar.xz.drv /tmp/guix-tests/store/wp3wj8y9vyz07f3bm6xwvmdqcnhqhxcs-glibmm-2.68.0.drv /tmp/guix-tests/store/dr35md9s8gkv2sm2wa0qrhad8l689aav-glibmm-2.68.0.tar.xz.drv /tmp/guix-tests/store/3kp8ajqcmyy0sm6k8gm3cm2nhjswc0yh-cairomm-1.14.2.drv /tmp/guix-tests/store/6wr614wf28sr493rf8fpl04mril03pi7-cairomm-1.14.2.tar.xz.drv /tmp/guix-tests/store/3xi11l0ahwpi0pvyicmvk8jz222b17wp-libwpg-0.3.3.drv /tmp/guix-tests/store/7f5mgkchabaahj9pgziakpg0w43bvaxk-librevenge-0.0.4.drv /tmp/guix-tests/store/sj1j1n4av24xkvmmggl5f7mk5zd2x856-cppunit-1.15.1.drv /tmp/guix-tests/store/qn2ks28l0j2h3zda5374iw0jzqgbjvw6-cppunit-1.15.1.tar.gz.drv /tmp/guix-tests/store/z0h6j4wn0bl6j6mgx45f7jp00hgvpyaz-librevenge-0.0.4.tar.xz.drv /tmp/guix-tests/store/alb2hk702findb0swgwfa0cxp5pvk3j7-libwpd-0.10.3.drv /tmp/guix-tests/store/w6zxjycvlj25slhkgkbczzv14p4hajsv-libwpd-0.10.3.tar.xz.drv /tmp/guix-tests/store/s86zrdf590dnjx171bd5m8y2p3vi8v77-libwpg-0.3.3.tar.xz.drv /tmp/guix-tests/store/488nl6q7rgrx80m4i1cnmhwn42jznp23-gdl-minimal-3.34.0.drv /tmp/guix-tests/store/0fkacmbnvpciwndmw15kgb29zxmi500s-gnome-common-3.18.0.drv /tmp/guix-tests/store/nsfaiwhr2nrha4bds35lnrqxfvwwnwf4-gnome-common-3.18.0.tar.xz.drv /tmp/guix-tests/store/qqlvm2bsvasr6xigv385hqpxx9qdxv26-gdl-3.34.0-checkout.drv /tmp/guix-tests/store/bixpafc2h0kksdawn12w93ya372gay2j-gtkmm-3.24.5.drv /tmp/guix-tests/store/fmrf46w5yhfwixhjkbis2pnwc8sg0f49-meson-0.59.4.drv /tmp/guix-tests/store/i3ps43jc87jmdcljyy9zg8sbl2f6sjg2-meson-0.59.4.tar.xz.drv /tmp/guix-tests/store/adi03782zr66l30l8wr94si7nmm8sxkv-meson-0.59.4.tar.gz.drv /tmp/guix-tests/store/sc4s8viwr9rjxhnixwdg5my9cxiq8pii-pangomm-2.46.0.drv /tmp/guix-tests/store/94az8zdbiyhwgn8phbjvqlf5w8mrfc04-pangomm-2.46.0.tar.xz.drv /tmp/guix-tests/store/y2c4xfdi8ycx42kw7g855x14c3mda7m5-gtkmm-3.24.5.tar.xz.drv /tmp/guix-tests/store/d2qcs74lib84ayjbx0kdbnnnrcndc7y4-imagemagick-6.9.12-4.drv /tmp/guix-tests/store/ganfj86w0mwg26wf178k3k7fn3a31gii-ImageMagick-6.9.12-4.tar.xz.drv /tmp/guix-tests/store/7pivcm45q4hw5jra2jpgbi4qd5ssipp8-ImageMagick-6.9.12-4.tar.xz.drv /tmp/guix-tests/store/is2i0k7647r82lav7n4l117alz5l5kcs-fftw-3.3.8.drv /tmp/guix-tests/store/13x9yk166is9c0kyq5mb9qw72krngnxm-fftw-3.3.8.tar.gz.drv /tmp/guix-tests/store/d51a280zi4f4rvc1930v75hcbxg95kby-python-pyserial-3.5.drv /tmp/guix-tests/store/s7iqi6y576vfj4kbvrblyfn6l0f17lwr-pyserial-3.5.tar.gz.drv /tmp/guix-tests/store/h0d6j5a2gz5n5d6579blb4pyq0lak5b3-module-import-compiled.drv /tmp/guix-tests/store/jqvls4w99cx1yhh3csk3cr5vbrv51js5-lib2geom-1.1.drv /tmp/guix-tests/store/5llixsmzx8pgn3kz68hdqdd6wihfpysj-python-pycairo-1.20.0.drv /tmp/guix-tests/store/8adm6jz019sg0rlgr8bzz8njpknl587r-pycairo-1.20.0.tar.gz.drv /tmp/guix-tests/store/fkd3rn18ar9ikcgbk7y1ni9q7i7djqvc-lib2geom-1.1-checkout.drv /tmp/guix-tests/store/n4zpirl6xr5g2i84i2xvxvs0676mqsqn-module-import-compiled.drv /tmp/guix-tests/store/paq19mhg77pm5731kfz13rwd31038ihh-googletest-1.11.0.drv /tmp/guix-tests/store/nl68mc2pz8cfibxqrb1b5r0bzgibnvak-googletest-1.11.0-checkout.drv /tmp/guix-tests/store/vz95plc4nhvk6h5wv9n95wykcv2xvql6-gsl-2.7.drv /tmp/guix-tests/store/da0zaj0rfbmviy0cizxh7piv3cmrrr5z-gsl-2.7.tar.gz.drv /tmp/guix-tests/store/lyvanq8kglinkkx4vjzb5m7s6y0fmrah-python-numpy-1.20.3.drv /tmp/guix-tests/store/080zix5k1sg79sy3rz2haiqfi44l65xv-openblas-0.3.18.drv /tmp/guix-tests/store/7f7ms282j9zh1ilyy1wl6k7qsibxcg5z-gfortran-10.3.0.drv /tmp/guix-tests/store/cs2xmi9m8nqja90i1iikm10f483wqm1x-openblas-0.3.18-checkout.drv /tmp/guix-tests/store/7f7ms282j9zh1ilyy1wl6k7qsibxcg5z-gfortran-10.3.0.drv /tmp/guix-tests/store/9db64pl12dz96ghzm3v4i8j0g1x98rah-python-cython-0.29.24.drv /tmp/guix-tests/store/g44in3p3lhq3gfcd40n19phhinpxx2lc-Cython-0.29.24.tar.gz.drv /tmp/guix-tests/store/9rxyw6i4zwg2w1xhykfrpr2blmv80srq-python-pytest-forked-1.3.0.drv /tmp/guix-tests/store/x423520n06q3xnjbd0i2gb3cg87wbg7v-python-pytest-forked-1.3.0-checkout.drv /tmp/guix-tests/store/bij7w0gcchm9rlazvcw9fk13x6z7a6p3-numpy-1.20.3.tar.gz.drv /tmp/guix-tests/store/ip2rvwmb41skrrb86xzwp9rsi1i2p29n-python-execnet-1.9.0.drv /tmp/guix-tests/store/3jkpgybhb10wkzdijvqsb29im1p2z323-execnet-1.9.0.tar.xz.drv /tmp/guix-tests/store/fm9hvbrkfxirwv5nhvc6ffdggajvviz2-execnet-1.9.0.tar.gz.drv /tmp/guix-tests/store/n0b54apfg5ljpk3ygl0nbs6vskm36h9d-python-pytest-xdist-2.1.0.drv /tmp/guix-tests/store/ki6m42q0jcb2ss91na9ckb1wncwv1r90-pytest-xdist-2.1.0.tar.xz.drv /tmp/guix-tests/store/n3zzp7vjbglnv5mivv2jhh0lfvfxqp5v-pytest-xdist-2.1.0.tar.gz.drv /tmp/guix-tests/store/r4a432vbfhilzbg00d59xd5nh0zvrkcp-libcdr-0.1.7.drv /tmp/guix-tests/store/wn0z2363a3w975197p7mnwphylh958xf-libcdr-0.1.7.tar.xz.drv /tmp/guix-tests/store/vf5q0gad0w0ll1y5lb8492056v816w8g-autotrace-0.40.0-20190624.59.drv /tmp/guix-tests/store/ac3wjif4f8z5bdxbz88ss121zd6vliq5-autotrace-0.40.0-20190624.59-checkout.drv /tmp/guix-tests/store/1gqabshydg70hkdraj6v05fn9nxz8hbl-autotrace-0.40.0-20190624.59-checkout.drv /tmp/guix-tests/store/k6lcv6pqnlm0gv5lrzgix9zminamr7a0-pstoedit-3.77.drv /tmp/guix-tests/store/2xv5is1j35lny7f1w38v9q160j69cdzj-pstoedit-3.77.tar.gz.drv /tmp/guix-tests/store/c3513whdiyi8vfwjbjsah8vx31yf79cg-plotutils-2.6.drv /tmp/guix-tests/store/m54iymc596lxggznmxwdwrzkh9aybfdc-plotutils-2.6.tar.xz.drv /tmp/guix-tests/store/9a42if7ax6ccn5adv5ayapg95bfr2jrf-plotutils-2.6.tar.gz.drv /tmp/guix-tests/store/vmqbvrrf51q3lmk5a1asbmd3k5ym27kw-inkscape-1.1.1.tar.xz.drv /tmp/guix-tests/store/rfn36qn2ifdmmv4mrcirz27a9g572hrp-inkscape-1.1.1.tar.xz.drv /tmp/guix-tests/store/xj9j10qj2sgcd8gy03y524dbh0ldmqpj-python-scour-0.38.2.drv /tmp/guix-tests/store/c65rphn2vc7h508v0k4q0c48sdw34c55-python-scour-0.38.2-checkout.drv /tmp/guix-tests/store/xvrzjz4wkryigmwd78mz9y0j52wawjva-gtkspell3-3.0.10.drv /tmp/guix-tests/store/s9lg9p1yi961ga708rkahh6ql9an6rf3-gtkspell3-3.0.10.tar.xz.drv /tmp/guix-tests/store/y3y3jx4wnzvngzpk8nc925hklfdyfqaw-enchant-2.2.15.drv /tmp/guix-tests/store/adxmrw7rkg0aavvqkd8k3xd4w8wc9d4f-unittest-cpp-2.0.0.drv /tmp/guix-tests/store/j2fvbalfzi53vwpagzjkxs12maaw45ff-unittest-cpp-2.0.0-checkout.drv /tmp/guix-tests/store/mgnsc1zilmbm8d1ip40nk038cw6dnp9x-enchant-2.2.15.tar.gz.drv /tmp/guix-tests/store/z3njc1ijvk1w64nd3j2cx3799i0613cn-libvisio-0.1.7.drv /tmp/guix-tests/store/2c16yi4divzvznhjgxqmxngrf0ysacrb-libvisio-0.1.7.tar.xz.drv /tmp/guix-tests/store/bwff5k48v4lwf3xq5c58bw0z4q768w98-texlive-latex-changebar-59745.drv /tmp/guix-tests/store/f451704ssqa5sg800dq5ffms1myy5x2z-texlive-latex-changebar-59745-checkout.drv /tmp/guix-tests/store/bwkb1xjk43phsz2jnfzhyzzbka6cxgvz-texlive-latex-jknapltx-59745.drv /tmp/guix-tests/store/qxswcdf7jinly2fjiqhhp9gz8h0j2cyk-texlive-latex-jknapltx-59745-checkout.drv /tmp/guix-tests/store/dnday04nlhbaignq1n9i2cz2ay9inr6d-texlive-latex-pdfpages-59745.drv /tmp/guix-tests/store/d9fvwzr58kln7f4hwx54qkzhjpmc8sk1-texlive-latex-pdfpages-59745-checkout.drv /tmp/guix-tests/store/fz273lyy4vbvxd933xzkaqd5lpll091r-imagemagick-6.9.11-48.drv /tmp/guix-tests/store/n45nscprsy97cyig2675rf6nc9hwqvaw-ImageMagick-6.9.11-48.tar.xz.drv /tmp/guix-tests/store/i2rbwxcvx8acac1ccrg38hbqjis155wv-texlive-latex-float-59745.drv /tmp/guix-tests/store/ckw4xlib46zh5igy7wnxz8sqg19jp2yy-texlive-latex-float-59745-checkout.drv /tmp/guix-tests/store/jp40zd4nv27x76a6l5ckwlyqxw22g8al-texlive-latex-anysize-59745.drv /tmp/guix-tests/store/9xhpan5abb9063yzm5vjhrc1a9in81lz-texlive-latex-anysize-59745-checkout.drv /tmp/guix-tests/store/jpvx7n5wsdffina7iy3sv3g3xl8b0kvm-texlive-latex-colortbl-59745.drv /tmp/guix-tests/store/s7xmakf85jxckzm37a64jack8il2kjna-texlive-latex-colortbl-59745-checkout.drv /tmp/guix-tests/store/mcjgksip4z6bknqn1ms3g918afsd21vq-texlive-latex-appendix-59745.drv /tmp/guix-tests/store/7qy05h4786r8vp3j9bv9gq2nd61z7gf6-texlive-latex-appendix-59745-checkout.drv /tmp/guix-tests/store/n708wzkj1kfqm5bqjmbam8lqq1na7qpg-texlive-wasysym-59745.drv /tmp/guix-tests/store/1ip8a4mbz7jjsa1cccqb3g773k44jwl5-texlive-wasysym-59745-checkout.drv /tmp/guix-tests/store/q9awysva9kl76ny3na5ylkvw4l1l6kv7-texlive-fonts-rsfs-59745.drv /tmp/guix-tests/store/f3qz8w0jc6i2jklkg01yjwbsls22v9s9-texlive-fonts-rsfs-59745-checkout.drv /tmp/guix-tests/store/qgylcxgqlhvf8g73dwy0i4vmg11kidc3-dblatex3-0.3.12.tar.bz2.drv /tmp/guix-tests/store/rk6v7vnkmzifbb7h6x6qqair57i97vfr-texlive-latex-bookmark-59745.drv /tmp/guix-tests/store/9h9pz97nfjva7dm7n96aqvh6mqdwzanl-texlive-latex-bookmark-59745-checkout.drv /tmp/guix-tests/store/ryanc4lpmzi419z0k5ykwglikrmigj2b-texlive-updmap.cfg-59745.drv /tmp/guix-tests/store/rz166f670ay1ipcm35y7x4s5nflbh6iq-texlive-latex-multirow-59745.drv /tmp/guix-tests/store/kkwimxs9jmyp06w25rriqas5pydnbzxg-texlive-latex-multirow-59745-checkout.drv /tmp/guix-tests/store/wr0qfr1a9wr2i42hckffqfg6h16wbx1w-texlive-stmaryrd-59745.drv /tmp/guix-tests/store/27slp2n4fgfgapipdsky4apsdc65c15k-texlive-stmaryrd-59745-checkout.drv /tmp/guix-tests/store/yn7g8z60zk090hp33rr7gkiswqbk8dfr-texlive-latex-footmisc-59745.drv /tmp/guix-tests/store/72xrg5d5hprn3cb1nlnf6bp4iasfsina-texlive-latex-footmisc-59745-checkout.drv /tmp/guix-tests/store/3jwr4x8hqigbnkxzjdmijz4d8g9c9vph-gtk-doc-1.33.2.tar.xz.drv /tmp/guix-tests/store/p0nghm08n1xy5w5qsf9srs89nsa00lfg-gtk-doc-1.33.2.tar.xz.drv /tmp/guix-tests/store/83509x1fmiq5x14p2v7yad681a53pr4l-python-traceback2-1.4.0.drv /tmp/guix-tests/store/0ndy7lgjx0qgj83f4pd11y68gacdzw89-traceback2-1.4.0.tar.gz.drv /tmp/guix-tests/store/9nf2dy3q4fsnibkmr6zngxy3d39ygcr9-python-linecache2-1.0.0.drv /tmp/guix-tests/store/hnwqxhrkljvsaa7hsd662i292j2y07b4-linecache2-1.0.0.tar.gz.drv /tmp/guix-tests/store/z45y4hndg2pvqh894ijsadxfgjnqk9h8-python-pbr-minimal-5.5.1.drv /tmp/guix-tests/store/65jri73rpklmv2293kwcyanjx6q9yrkj-pbr-5.5.1.tar.gz.drv /tmp/guix-tests/store/dln91hn5x2p9l1kqnbz6b4071qds12pq-python-pygments-2.8.1.drv /tmp/guix-tests/store/aazra4za7p9lbi8csn556wpvhy45rlip-Pygments-2.8.1.tar.gz.drv /tmp/guix-tests/store/g385qsx8fj3s7qfr9k699sh87b1ysvvk-source-highlight-3.1.9.drv /tmp/guix-tests/store/1d8l3fah02iw660x9k43925l6labimw9-source-highlight-3.1.9.tar.gz.drv /tmp/guix-tests/store/jkmhrb17gz351yprx01mz6mwd66cizjj-python-anytree-2.8.0.drv /tmp/guix-tests/store/lk5qln1mh7n2zdnvwj1lpm4sd3xb7z8g-anytree-2.8.0.tar.gz.drv /tmp/guix-tests/store/mjxrp973ximc3dlkaki5ysa33cbjkyvg-python-unittest2-1.1.0.drv /tmp/guix-tests/store/cm8s27mdqnc4i43p5qfy8d1fnnqn0whx-unittest2-1.1.0.tar.xz.drv /tmp/guix-tests/store/2slskfrnbl4sqj5jbd4xz5kn3wgxa4y1-unittest2-1.1.0.tar.gz.drv /tmp/guix-tests/store/v90k8nayfdd8rd2l4rh8c1acnzbm04ya-python-parameterized-0.7.4.drv /tmp/guix-tests/store/1ff34jyzygsfx2gqgyhmz5b4wfmi19cd-parameterized-0.7.4.tar.gz.drv /tmp/guix-tests/store/52i08rf16kmpyfxhib1526bgabrn28c8-libogg-1.3.5.drv /tmp/guix-tests/store/16qwdhhkzlkpd8wvsxv0xzqrvg8yc814-libogg-1.3.5.tar.xz.drv /tmp/guix-tests/store/53y6fad0d59jmnkcz544wbq38fjip7zk-libsndfile-1.0.30.drv /tmp/guix-tests/store/lqclr88wcxhj6ijkaqc3sdbfl3sz7ch2-flac-1.3.3.drv /tmp/guix-tests/store/zyanng5z4ksq329x4shlgdr6j5rh8ygv-flac-1.3.3.tar.xz.drv /tmp/guix-tests/store/pkz609irqk1d0lxkzd8krn9z9vpp794b-libsndfile-1.0.30.tar.xz.drv /tmp/guix-tests/store/zg1blp87srv2bw1r5qfz9yhksvjlms30-libsndfile-1.0.30.tar.bz2.drv /tmp/guix-tests/store/wijgv951ph20wn4l43yz4rj2mv2axcjy-libvorbis-1.3.7.drv /tmp/guix-tests/store/7qik7fi5i09c9cd6b71hfhg617dfpnb1-libvorbis-1.3.7.tar.xz.drv /tmp/guix-tests/store/yf42yz2b3cam6cagcmdzhk5vpwjkps4p-opus-1.3.1.drv /tmp/guix-tests/store/dz208rym5vxhkhl6zx9v2fvs1f8ks650-opus-1.3.1.tar.gz.drv /tmp/guix-tests/store/91nq9h430xgmnkvkq1176bsaq4m5sa2s-jack-0.125.0.drv /tmp/guix-tests/store/imf50gd2klbp77j7g3w3k5sfj94smv4n-jack-audio-connection-kit-0.125.0.tar.gz.drv /tmp/guix-tests/store/a30dy1gmj3sfpqn44f196b804sk2kx1n-pulseaudio-15.0.tar.xz.drv /tmp/guix-tests/store/na2drx6djnk997hnzg8l6kdbf4s2nrp0-pulseaudio-15.0.tar.xz.drv /tmp/guix-tests/store/f1pi4cqm62jd76hvm484nfnzc59v2px6-speexdsp-1.2.0.drv /tmp/guix-tests/store/7clzrbgbx44f9ss0c3pl332adqnkamis-speexdsp-1.2.0.tar.gz.drv /tmp/guix-tests/store/gxrimiijggal78766my8rc667v87d5ms-sbc-1.5.drv /tmp/guix-tests/store/jkbfd6992asmqrfrwiman8n91y0rxiz3-sbc-1.5.tar.xz.drv /tmp/guix-tests/store/mgavfyvndchgd6p07jmwsppzm95achca-sbc-1.5.tar.xz.drv /tmp/guix-tests/store/kdv0g421pf1r0p69c2nyw3893dc968zx-fftwf-3.3.8.drv /tmp/guix-tests/store/xbpn1a18ql8phbk0rb3jwlniv2giaqp6-webrtc-audio-processing-0.3.1.drv /tmp/guix-tests/store/vz5awm6w4qzw8mhdgwkhp4vhfqwzah3c-webrtc-audio-processing-0.3.1.tar.xz.drv /tmp/guix-tests/store/z8xhjvcjq3ghygca7y4zjn3kkgj1n1yq-qtbase-everywhere-src-5.15.2.tar.xz.drv /tmp/guix-tests/store/srw7md5lmjkyxsnwqsbh9zvzjv8srhhd-qtbase-everywhere-src-5.15.2.tar.xz.drv /tmp/guix-tests/store/iwvscqbfnswggmjr459qjmzn7kg968v6-fcitx-4.2.9.8_dict.tar.xz.drv /tmp/guix-tests/store/nrfjw0if301vxi5h96s5zrp76gfsa0d7-ibus-1.5.24.drv /tmp/guix-tests/store/0xlcg73ca7300y87qmaz6ply26bgbxdn-dconf-0.40.0.drv /tmp/guix-tests/store/3r8nrp2qhw275gjzrzmm0983b8cy741g-dconf-0.40.0.tar.xz.drv /tmp/guix-tests/store/2b2sq4s5xvs65ifj2wilh081mx2l13kx-xmodmap-1.0.10.drv /tmp/guix-tests/store/lmzp11j9842fs6x4n4wm7489z4lp8vbf-xmodmap-1.0.10.tar.bz2.drv /tmp/guix-tests/store/2c6ycx35jj1acgdvhw0p68zgw4b6x417-unicode-cldr-common-36.0.drv /tmp/guix-tests/store/6jns9hmxibbh18g67ms7wjjfvfbhf8xx-cldr-common-36.0.zip.drv /tmp/guix-tests/store/yh9rng71wvb2jjn5wfzd3c2w27lx960h-zipbomb-cldr-common-36.0.zip.drv /tmp/guix-tests/store/8dmh91aybcjspa9r8vm29ncyxq6jqxwf-ucd-12.0.0.drv /tmp/guix-tests/store/dmfw4d7si3pm7hxgzl0j193s55cda3zs-UCD.zip.drv /tmp/guix-tests/store/a1maanbbmgbxi4npym91pyw99b089jxw-zipbomb-UCD.zip.drv /tmp/guix-tests/store/awc90iccycqdp42w1zi069an6jml9s8n-ibus-1.5.24.tar.gz.drv /tmp/guix-tests/store/b733gf3gka919zs3q1839v41pdbh5hn2-json-glib-1.6.2.drv /tmp/guix-tests/store/pqkzqsk34db4qwv083pcczyvp3vyr4d8-gtk-doc-1.33.2.drv /tmp/guix-tests/store/4cvbgknh71wbip3543kzdmi6rdrdrqbx-dblatex-0.3.12.drv /tmp/guix-tests/store/bnazxgffckbl2jfzxj9l7lgxgp1kk85r-gtk+-3.24.30.drv /tmp/guix-tests/store/cd3gjbbyjb1xrnhdp1qj2rfipiyki4ya-unicode-emoji-12.0.drv /tmp/guix-tests/store/2zpbjd0kjfnhzfn8avphsxbwnrcsaqrz-emoji-test.txt.drv /tmp/guix-tests/store/6zlny5dnkk6dc8p4n38ykv25kgs1xs13-emoji-zwj-sequences.txt.drv /tmp/guix-tests/store/av98dk2vmlx3jcp36rfky51ba95iq5g4-emoji-sequences.txt.drv /tmp/guix-tests/store/fclymkakzzi88yzw4g2g1h125zaanwyc-emoji-variation-sequences.txt.drv /tmp/guix-tests/store/pkf1c3znwmj6nnkvpzpyj755jww06xgs-emoji-data.txt.drv /tmp/guix-tests/store/ch1vzr8wzgbv4hrq8kd1f16dwpq5agdn-python-pygobject-3.40.1.drv /tmp/guix-tests/store/9czdlgd84xqh6v2fc1kjl0kc9ackglx3-pygobject-3.40.1.tar.xz.drv /tmp/guix-tests/store/k3pvrx9kwj0yzqr8156fxqf5bghy7rd0-pygobject-3.40.1.tar.xz.drv /tmp/guix-tests/store/h162h7r3jr6g0kgpbzc55ygfhzb8nhr4-python-dbus-1.2.18.drv /tmp/guix-tests/store/2422ri1svgbwfg5kj3a0cqmbddmj7vn6-dbus-python-1.2.18.tar.gz.drv /tmp/guix-tests/store/jb373dls7c0slrly74xxifiqq2vv5i36-setxkbmap-1.3.2.drv /tmp/guix-tests/store/n1y57ixm2h6w7r4p0wmd1slgki52s38k-setxkbmap-1.3.2.tar.bz2.drv /tmp/guix-tests/store/rsz4srk11x4a707y4z1pa5hqy5vqrrn3-libnotify-0.7.9.drv /tmp/guix-tests/store/bf0p6hb1rzzncd7mrwpmm8bcz18xiidm-libnotify-0.7.9.tar.xz.drv /tmp/guix-tests/store/rjq0wgmw69vfl1rjjggmr64fjws6cl5c-qemu-minimal-6.1.0.drv /tmp/guix-tests/store/01i1dqd7ndz3c98s8dywbwrskljja05y-python-sphinxcontrib-htmlhelp-2.0.0.drv /tmp/guix-tests/store/n22civi2bp6ac1xa80izppp03kz3ri60-sphinxcontrib-htmlhelp-2.0.0.tar.gz.drv /tmp/guix-tests/store/12q5a5c6h0w565hq27q73r1xd8mr3yg3-python-asn1crypto-1.4.0.drv /tmp/guix-tests/store/89c6cq93vzqjchw5a7hxil98f870sc3b-python-asn1crypto-1.4.0-checkout.drv /tmp/guix-tests/store/18in8khqhxw5xhxl62q8cszp3ylfj0mk-python-charset-normalizer-2.0.5.drv /tmp/guix-tests/store/23psdhx9d9x5kjvgpzfx1hi56rm8ni4m-charset-normalizer-2.0.5.tar.gz.drv /tmp/guix-tests/store/1c77malcxjx14bwm7nh8q66nyykglbsh-python-idna-2.10.drv /tmp/guix-tests/store/0kxx0x8y407sxmc5dcz574ji9f6cs0rd-idna-2.10.tar.gz.drv /tmp/guix-tests/store/2ghsivipr1yb6yf00y8bcz27j0z35nmy-libcap-ng-0.8.2.drv /tmp/guix-tests/store/nf2lxkhiir1w4k28lfg4xz2kz9bla2d8-libcap-ng-0.8.2.tar.gz.drv /tmp/guix-tests/store/59l36lhvcsjkb0pw3hnfg13p3dbmz0si-python-pytz-2021.1.drv /tmp/guix-tests/store/0sdnik47q72psssnc5x5mnfsr5yv9jpx-pytz-2021.1.tar.gz.drv /tmp/guix-tests/store/64vrsskq97czn86i525dpkr4q0yy5gnb-python-certifi-2020.12.5.drv /tmp/guix-tests/store/vk7xxhljhm6scqsldjjqrcbi1rkmrngy-certifi-2020.12.5.tar.gz.drv /tmp/guix-tests/store/83m7b0q4g306d49y334q349hn9qjryhw-python-babel-2.9.0.drv /tmp/guix-tests/store/cqz8kzdwms7ipd99bz4qaq8imr6vpjkd-python-freezegun-0.3.14.drv /tmp/guix-tests/store/2jbd3i45jkp1fn3yl9ac2pxv7y0c44b5-freezegun-0.3.14.tar.gz.drv /tmp/guix-tests/store/kd688ymzmsnzpn442kjbpjfp945kxm6y-python-dateutil-2.8.2.drv /tmp/guix-tests/store/13f3h50mzv2n17l5qs96myfn349g14zj-python-pytest-cov-2.8.1.drv /tmp/guix-tests/store/zzpd8w78qpxvvwhh2g882lhmfvkfzv6v-pytest-cov-2.8.1.tar.gz.drv /tmp/guix-tests/store/syw38d3nvmgdisgv63zhryy3h91hr09a-python-dateutil-2.8.2.tar.gz.drv /tmp/guix-tests/store/dqzk82fhfm654pcsgblbvsgnwnfvb06f-Babel-2.9.0.tar.gz.drv /tmp/guix-tests/store/arzdd00nfj3b4s228ns0pnhggqdvalfq-python-sphinx-4.2.0.drv /tmp/guix-tests/store/2zyw6lw6d0dwmgnbi2hhiwvn9ijb0c02-Sphinx-4.2.0.tar.gz.drv /tmp/guix-tests/store/bm2h6ls4zir9vvkxv8a8rg840dn35dda-python-urllib3-1.26.7.drv /tmp/guix-tests/store/d6y75g1hfpb0vbcy620i4mqqxfcf50hz-python-cffi-1.14.4.drv /tmp/guix-tests/store/f5cgdvz9xzp88nk29az87rpwc8phrrp5-cffi-1.14.4.tar.gz.drv /tmp/guix-tests/store/njhh79fqs1h0brjl5xlgrqgnnj913wmk-python-pycparser-2.20.drv /tmp/guix-tests/store/1czag77s1c08i0z56312d8q4rg5ffxay-pycparser-2.20.tar.gz.drv /tmp/guix-tests/store/f4il6aszmfxci62lkaf2q08my6gg3g73-urllib3-1.26.7.tar.gz.drv /tmp/guix-tests/store/fai69jm1vmcg0zm1lkg5hs6kdc7a2nwc-python-cryptography-3.3.1.drv /tmp/guix-tests/store/2q6idpik06cx7ba558ly921v6nza4fnw-python-cryptography-vectors-3.3.1.drv /tmp/guix-tests/store/xjjyjzk44aq44cqfmb446zaamd9i9nvq-cryptography_vectors-3.3.1.tar.gz.drv /tmp/guix-tests/store/cikd1ka7q2w6935b0q29fx204sq6hagn-python-pretend-1.0.9.drv /tmp/guix-tests/store/2f9mkw7b3x78b11s5l94gjfcxbdfa9sf-pretend-1.0.9.tar.gz.drv /tmp/guix-tests/store/pgwdhlmhpj959rlh619dhf6gig87kmqm-cryptography-3.3.1.tar.gz.drv /tmp/guix-tests/store/h8w3kixcpz7phpdrd69v57jcnsng6b34-python-pysocks-1.7.1.drv /tmp/guix-tests/store/zar1xp9jwhac68pd9c7dd8qpchlzh33j-PySocks-1.7.1.tar.gz.drv /tmp/guix-tests/store/r5gw54wynrm3pa5bx8l8ylqg963baz0c-python-pyopenssl-20.0.1.drv /tmp/guix-tests/store/2qzs9g02y4mv4h7ppvp12c0dwkriw6jd-python-flaky-3.5.3.drv /tmp/guix-tests/store/7qb7lfakv1bsj5x8c15b3bxwpsyh4vcd-flaky-3.5.3.tar.gz.drv /tmp/guix-tests/store/64036g9fjw2g487snlvsix0i2s1nihd8-pyOpenSSL-20.0.1.tar.gz.drv /tmp/guix-tests/store/c0nck7i44gw6z7f1cy4xy2x57hh049c9-python-requests-2.26.0.drv /tmp/guix-tests/store/68070zqnzywk8zpqkgkg5g0bvcsnai78-requests-2.26.0.tar.gz.drv /tmp/guix-tests/store/hjzqb4yl91jqgswpi7kzn3zp10awp319-python-chardet-3.0.4.drv /tmp/guix-tests/store/1a5mb76vk1l5d84bx7lcbgbc2igzs7zd-chardet-3.0.4.tar.gz.drv /tmp/guix-tests/store/dgwnph3hf3pxzmlvnzd0l0ilrdq3j36c-python-sphinxcontrib-devhelp-1.0.2.drv /tmp/guix-tests/store/h2qpa86ymnqidvig1dmnd4yh5fqyx2vc-sphinxcontrib-devhelp-1.0.2.tar.gz.drv /tmp/guix-tests/store/fr36j1bmsv8g2znvv0499wgy3nfxc55w-python-sphinxcontrib-jsmath-1.0.1.drv /tmp/guix-tests/store/agp9iwn82f2ra8v1sx02b95x64x2sr7v-sphinxcontrib-jsmath-1.0.1.tar.gz.drv /tmp/guix-tests/store/h2lhimwf3chi5rri2qxl7y9vlma0gyic-python-snowballstemmer-2.0.0.drv /tmp/guix-tests/store/9a49mk14vvpgbn4rw1600lwzc5rx4554-snowballstemmer-2.0.0.tar.gz.drv /tmp/guix-tests/store/jki51kc261vlrjjdf84mm258x3yycxl8-python-packaging-20.0.drv /tmp/guix-tests/store/jxhfdhc34ixj8nxf6h48jjd8s10a9rga-python-sphinxcontrib-qthelp-1.0.3.drv /tmp/guix-tests/store/sygw5jqw4hb4msa4rgzgwhd51lqzcbk7-sphinxcontrib-qthelp-1.0.3.tar.gz.drv /tmp/guix-tests/store/lhfmi0acg19x52mxxb3f089r4ysfgi8r-python-sphinx-alabaster-theme-0.7.12.drv /tmp/guix-tests/store/q9pk2f4nyx4b2814p99faqwk8r96lb98-alabaster-0.7.12.tar.gz.drv /tmp/guix-tests/store/nllpay12x91rw85asj25dgzknkqk2d1n-python-sphinxcontrib-serializinghtml-1.1.5.drv /tmp/guix-tests/store/dx7vypdvs8d3j744lx89s3b4blh0w3l0-sphinxcontrib-serializinghtml-1.1.5.tar.gz.drv /tmp/guix-tests/store/nrzrk84v7ny3hws4mxak7vriciahxhbk-python-webencodings-0.5.1.drv /tmp/guix-tests/store/30acf20biyi24cklnprxy6sin4dxzycr-webencodings-0.5.1.tar.gz.drv /tmp/guix-tests/store/sqlw91q4gjvf3lysz16ympyj0s40gy7h-python-sphinxcontrib-applehelp-1.0.2.drv /tmp/guix-tests/store/bw1irzvp3pzpc4gpifmripdl55b46i26-sphinxcontrib-applehelp-1.0.2.tar.gz.drv /tmp/guix-tests/store/xijv71f9xx0nlswmgii46fbg22zmanma-python-imagesize-1.2.0.drv /tmp/guix-tests/store/q2c76w2sfgmdycv3cl9sc00nfdzdhr5z-imagesize-1.2.0.tar.gz.drv /tmp/guix-tests/store/yfr28d7xcq19hgqbg7yjvkmw7v0vfszq-python-jinja2-3.0.1.drv /tmp/guix-tests/store/3msr00fkq1b43dpsy9q1qdfhivz079bd-Jinja2-3.0.1.tar.gz.drv /tmp/guix-tests/store/ylyff6vcdnvfmldv7sg896y2d0n81w0z-python-html5lib-1.1.drv /tmp/guix-tests/store/ln1bp8xrbmljdz4m27wjb4k3cn60fab2-html5lib-1.1.tar.gz.drv /tmp/guix-tests/store/b2xnvs14gq8y279j33g6zphybzwyvcxj-qemu-6.1.0.tar.xz.drv /tmp/guix-tests/store/w59bzn2p78mdpk5wb26jj3kf9qq44amw-qemu-6.1.0.tar.xz.drv /tmp/guix-tests/store/gz9sy7296rmiycrlkj76x8l39jll2d2l-python-sphinx-rtd-theme-0.2.4.drv /tmp/guix-tests/store/33s841a2ijmz71fiksngzz8az6dxld19-sphinx_rtd_theme-0.2.4.tar.gz.drv /tmp/guix-tests/store/klbz8qrp8a487b31n8vaqmdcnwrx211x-util-linux-2.37.1.drv /tmp/guix-tests/store/yq3pn0f0zbwpnmsqqzr9rnjk6hva273c-libseccomp-2.5.3.drv /tmp/guix-tests/store/p51fxri0mf3jpvif5lqzyiih79aqb1wg-libseccomp-2.5.3.tar.gz.drv /tmp/guix-tests/store/rxbccqlx39snsycc4sfgdbj3s9zhagli-cpio-2.13.drv /tmp/guix-tests/store/shz8cm6iwvfg6sm0bdlcp97a6iv4x8xl-cpio-2.13.tar.xz.drv /tmp/guix-tests/store/y9nbw83qbnln93pr1951wjlvlyra5iwy-cpio-2.13.tar.bz2.drv /tmp/guix-tests/store/wkp2vszn11d1hpnrrbvi5fraai1z270b-cdrkit-libre-1.1.11.drv /tmp/guix-tests/store/f3n8dq4gbbs2zn5i26pn34xs01vhrvkf-cdrkit-libre-1.1.11.tar.xz.drv /tmp/guix-tests/store/j0wnaj19kzyv3ad4d4s5v9mdh2wjdr2s-cdrkit-libre-1.1.11.tar.gz.drv /tmp/guix-tests/store/y6qxr5sbapvvl5ybl4wwsj9y42mqf0cx-genext2fs-1.4.1-4.drv /tmp/guix-tests/store/sn1jysjx1csgls0r4k1cr9p1z74axlkv-genext2fs-1.4.1-4-checkout.drv /tmp/guix-tests/store/zrmavn3b0dbypg27c1ffxw2zh1jyy0bn-mtools-4.0.36.drv /tmp/guix-tests/store/h2d4xp2h2m5dpynhgc3zi9bclxd7jin5-mtools-4.0.36.tar.xz.drv /tmp/guix-tests/store/k4nm2qwi83s982kn1m7803gcb881ya8w-mtools-4.0.36.tar.bz2.drv /tmp/guix-tests/store/ya35b04c6hn7134h54sdlwlz9p5mf24m-genimage.cfg.drv /tmp/guix-tests/store/5lr2qghx9b7lnl2yb43kri53q9blnqp5-partition.img.drv /tmp/guix-tests/store/964xj7wksr3j92irsz2mc5rzvnpwk23s-extlinux.conf.drv /tmp/guix-tests/store/9g2j9mvvv36117hh8xpkbdcbc88jkwwm-raw-initrd.drv /tmp/guix-tests/store/4wzg2f1zv056ywpd9mpfrv9d4hkq2axq-guile-static-stripped-3.0.7.drv /tmp/guix-tests/store/1xq5rs4pscsgszmlc5izml9nrjhbifs2-gcc-7.5.0.drv /tmp/guix-tests/store/4572swx6ia9g2dqq8b5hcrazzv8v3w1n-glibc-2.33.drv /tmp/guix-tests/store/gq5b77lk64cqf8mhkd32jxp1i741cpdz-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/kbwm91cmwawdj4cr3cwfkwxpfpjgg0ml-bash-static-5.1.8.drv /tmp/guix-tests/store/smsrnlbqgsjzl9n9sggv6dv7y7m9azpg-gcc-7.5.0.drv /tmp/guix-tests/store/7dl30lqn8x1ripjzbgpkfz9xmlm707zy-gcc-7.5.0.tar.xz.drv /tmp/guix-tests/store/4s95n8zhs5b2m4sj0q1kgkgy48vncpas-gcc-7.5.0.tar.xz.drv /tmp/guix-tests/store/zjsnvvk557wmb5w2i962mq60fynrk6jz-linux-libre-headers-5.10.35.drv /tmp/guix-tests/store/21i644r94x8gswgmc5iss8wa62h0ncy4-guile-3.0.7.tar.xz.drv /tmp/guix-tests/store/ciyddip3x717k9g3i8f3a2gx14r5mi86-libunistring-0.9.10.drv /tmp/guix-tests/store/m3pkmbx9kniyg6zvkg6adsb4z6b8nnys-glibc-2.33.drv /tmp/guix-tests/store/d1mj63gqs8izim6ky57bk41xg6yzgdvj-pkg-config-0.29.2.drv /tmp/guix-tests/store/jbg2790c8haz1gl5k3lyr1s1z6wyiw4g-bash-minimal-5.1.8.drv /tmp/guix-tests/store/m2nrfckb4ff4r12m0mx77rlffdqql13c-libgc-8.0.4.drv /tmp/guix-tests/store/rg94n3mpkxblliwvg12mbvc0kzpdcn9s-libffi-3.3.drv /tmp/guix-tests/store/v1rvwqa4brbhfafr01i17vwsg0z5aprk-guile-static-3.0.7.drv /tmp/guix-tests/store/6mgc7hq6adc39pn994fyf5xrhf1yxyw6-init.drv /tmp/guix-tests/store/6q9b75n1yrvzfv1h5p792pwssvqpjf8s-linux-modules.drv /tmp/guix-tests/store/b9qd33i2s5jxl3cs7sgkwibdivbhrh19-module-import-compiled.drv /tmp/guix-tests/store/s26lr7s069dwydznixz07bn0qmpcbigp-linux-libre-5.15.10.drv /tmp/guix-tests/store/g525wv7c3dya1ccwbp1p1b62whyn9dqc-linux-libre-5.15.10-guix.tar.xz.drv /tmp/guix-tests/store/c3s808k5xvc9lxy2ckdj8ryw15n8klni-linux-libre-5.15.10-guix.tar.xz.drv /tmp/guix-tests/store/4l57v4b3a4s1r0kfj2pvcln9m1pykbw9-linux-5.15.10.tar.xz.drv /tmp/guix-tests/store/wyirxncav87mpxzd77izq2lqwbzfhdxx-linux-libre-deblob-5.15.10-gnu.drv /tmp/guix-tests/store/ypxrlkgmmakhdma2k2b0s36bsna711hn-linux-libre-deblob-check-5.15.10-gnu.drv /tmp/guix-tests/store/rq0dwsih9817phny6kz3h9g9bk44gxs7-100gnu+freedo.patch.drv /tmp/guix-tests/store/zf7a8fgkq4w3cc44lsv934vmq47i85i5-linux-libre-arm-export-__sync_icache_dcache.patch.drv /tmp/guix-tests/store/a738f8asyhsl0frsgnrsqsanm1s8b4wc-e2fsck-static-1.46.4.drv /tmp/guix-tests/store/n8zb309g24wq727f3p4vlblkxxpsrqvf-e2fsprogs-1.46.4.drv /tmp/guix-tests/store/wzknjvhwrxp782k4kqqvs8mjmb1vcr03-module-import-compiled.drv /tmp/guix-tests/store/yf3l8m0wqkd1wc1r4zns4bzgsj78fis8-module-import-compiled.drv /tmp/guix-tests/store/si5fqb5kmqcnz6rn1yri38iryx63bp7d-system.drv /tmp/guix-tests/store/2ibhvm4kjqzl7jimn8sw30nrljrj8c0y-locale-multiple-versions.drv /tmp/guix-tests/store/kzzlxx72p8wgxrgcjh13p3128kpgkw7f-locale-2.33.drv /tmp/guix-tests/store/k7xjyqm9krkbv9qvw87z7dcwnc828lgn-glibc-2.33.drv /tmp/guix-tests/store/4978fq5br4v48dk27vk71yllddnn3kzm-glibc-2.33.tar.xz.drv /tmp/guix-tests/store/pv0ziwf8zikap87l6l2q935aydhcz9gd-module-import-compiled.drv /tmp/guix-tests/store/rh0z0b8gwryj2m25wr00wimxrrckynzk-module-import-compiled.drv /tmp/guix-tests/store/wmdk807ql9dk2d2nh982870j5h6w9wnz-locale-2.31.drv /tmp/guix-tests/store/4nkpxx2jjapbnl0fnpnas1x2pvahc5ih-glibc-2.31.drv /tmp/guix-tests/store/kflx39w92xlv1lg3pvgv1sqz939mzjc9-glibc-2.31.tar.xz.drv /tmp/guix-tests/store/1ipqan74q3gddmn8v2xc3giz6i5r6wks-glibc-2.31.tar.xz.drv /tmp/guix-tests/store/2ms3xafd2vs6lhqsfny4rrci9rq7rz7j-boot.drv /tmp/guix-tests/store/dskvmzxj8js5bgliqb0y55v1bplzy78p-glibc-utf8-locales-2.33.drv /tmp/guix-tests/store/w8wl3kwvpi52iihxa2nsmb1dnwj25fli-module-import-compiled.drv /tmp/guix-tests/store/zfl84nhrdry62xfvb0ffamrgr2z6a63w-shepherd.conf.drv /tmp/guix-tests/store/05ir128ki8dr8az3x8cx9mi8q64kwjkz-shepherd-file-system--dev-shm.go.drv /tmp/guix-tests/store/rmb5kxipybpdm48wdc208vvyqn78mdma-shepherd-file-system--dev-shm.scm.drv /tmp/guix-tests/store/hnzl0dlchng6cm4fznzxfl3pyjnfl5f7-module-import-compiled.drv /tmp/guix-tests/store/s3w6qpdrf58sqh37nz0wl21r5rharc7k-module-import-compiled.drv /tmp/guix-tests/store/0ca6ykz8b0rpij105amxqs8zcbra70ab-shepherd-file-system--sys-firmware-efi-efivars.go.drv /tmp/guix-tests/store/m60pqqzv507p7i4waffysnpv1pas8xsn-shepherd-file-system--sys-firmware-efi-efivars.scm.drv /tmp/guix-tests/store/18jyzn6fr7rcw0wgls87pbzsfjmf9yff-shepherd-term-ttyO0.go.drv /tmp/guix-tests/store/gihwh856f6q6mmnqxzr1vk6dg1j6x90z-shepherd-term-ttyO0.scm.drv /tmp/guix-tests/store/gz0wkf28v9ss6d1m1ahmldss9v7v9nr7-module-import-compiled.drv /tmp/guix-tests/store/q22xja91xjgrjpaqvin3m3dla49b21hy-module-import-compiled.drv /tmp/guix-tests/store/3wxv95j50h8xrn3q433rp99271va36cp-shepherd-root-file-system.go.drv /tmp/guix-tests/store/q4nbrgc4fcngi45pv3bsg443zxwdgs8v-shepherd-root-file-system.scm.drv /tmp/guix-tests/store/9zlxc9kgswhccf9192kd9xrk5l9dsi0s-module-import-compiled.drv /tmp/guix-tests/store/wjvppjq14hm9vyymkmd5qsswyy7i17c0-module-import-compiled.drv /tmp/guix-tests/store/43n8rf46bh4171js8fz0ixqcrjlyfj7p-shepherd-networking.go.drv /tmp/guix-tests/store/l60b8wx684a63s19r1cfdqd3zgbrm8gf-shepherd-networking.scm.drv /tmp/guix-tests/store/9qjk58067ri761nrw8n58y2cb1zl5nm4-isc-dhcp-4.4.2-P1.drv /tmp/guix-tests/store/smfkla2d81jbyfgjbsmrllkn8jp39cmi-bind-9.11.36.tar.gz.drv /tmp/guix-tests/store/y8n2xdnxxhq3yx9i4gjqhm72f8jkil22-dhcp-4.4.2-P1.tar.xz.drv /tmp/guix-tests/store/68m02wgg1q5vm7x3jj3raz9fxfsmxkxl-dhcp-4.4.2-P1.tar.gz.drv /tmp/guix-tests/store/4vhn8mvz80advyy97b73grrr3xa3vilx-shepherd-nscd.go.drv /tmp/guix-tests/store/gnmakai7cxbzdkr5sww1wvpwjgqiz02r-shepherd-nscd.scm.drv /tmp/guix-tests/store/527fsfhxc1a9ryn5a8lrdbxs7fy83l64-shepherd-term-tty6.go.drv /tmp/guix-tests/store/h4k92vm8jjx4lsr66mzc65mirip3j4bw-shepherd-term-tty6.scm.drv /tmp/guix-tests/store/4dsmds0m1lirgl0nzdl57n5siwm2mz6d-mingetty-1.08.drv /tmp/guix-tests/store/14ixg3cp2fpdijzbk4d8qn9s9w4g88yy-mingetty-1.08.tar.gz.drv /tmp/guix-tests/store/547904qqk8m4gwqcmq1l48qy65fn7m22-shepherd-console-font-tty5.go.drv /tmp/guix-tests/store/kay6v2f8rhvj72w9m0ya88l519l1nxrd-shepherd-console-font-tty5.scm.drv /tmp/guix-tests/store/g8r5k2ws8v7ysy0j7s1bk7zhzgj2siqz-kbd-2.4.0.drv /tmp/guix-tests/store/1z9zf7fm76ps7kd8gh2a8dagdz49nra4-zstd-1.5.0.drv /tmp/guix-tests/store/8b9skn33p8x39l70ypvpw464gm8hik82-kbd-2.4.0.tar.xz.drv /tmp/guix-tests/store/r8iwyrjc5f2pkr7xjvvxps1fi8w62bqq-kbd-2.4.0.tar.xz.drv /tmp/guix-tests/store/5vqc6xw2jpgqjxdm139ymzsayahh85s6-shepherd-host-name.go.drv /tmp/guix-tests/store/biazzd70mz67kq1kmwkqr857gqhhha0x-shepherd-host-name.scm.drv /tmp/guix-tests/store/9k8abzivz7v3x5m063cs9bnbsgbc0v0g-shepherd-syslogd.go.drv /tmp/guix-tests/store/rl8jfgwli3pfma3clksfld2hl2jrzp67-shepherd-syslogd.scm.drv /tmp/guix-tests/store/9xdrw52jcvcrb4f8d4v7xbnzqc2r2j9d-shepherd-user-homes.go.drv /tmp/guix-tests/store/zyz86l3z2lxy3v2gwjvspq754zv593x8-shepherd-user-homes.scm.drv /tmp/guix-tests/store/awzwm1qisdwgnnk1g39nf7i7dj0d91pz-module-import-compiled.drv /tmp/guix-tests/store/hxnjyfvkybzwxqknil19wflaqad64jxp-module-import-compiled.drv /tmp/guix-tests/store/apjyy2r0k8s2ki9brz7l6092hdjsiggj-shepherd-urandom-seed.go.drv /tmp/guix-tests/store/024h3c4zjgslinr3nvh41wg6chz9c1ld-shepherd-urandom-seed.scm.drv /tmp/guix-tests/store/arczysi6hsqpawaa2kvsrqzkhhvymmh1-shepherd-guix-daemon.go.drv /tmp/guix-tests/store/m1p951xfjd1nwwlx8b5589f3jz8qqvdz-shepherd-guix-daemon.scm.drv /tmp/guix-tests/store/mwd8vj7h4rslp4qkri4dk8hnrfrj1ql1-module-import.drv /tmp/guix-tests/store/n3rn9ipfychllr8dar2rxcxx43kmxhbg-module-import.drv /tmp/guix-tests/store/ncd2b6k55azqmrzyllsjzdry93l77qn4-module-import-compiled.drv /tmp/guix-tests/store/qa6rw3g1mi42p1nycs51vgcgdaq7yk3d-module-import-compiled.drv /tmp/guix-tests/store/y3b6ydmh2hdj6nqh227fpj8888d2c3xc-guix-1.3.0-16.10ceb3e.drv /tmp/guix-tests/store/3m7dfgmlw64rqsn3wghs0iz5f4353hdd-guile-zstd-0.1.1.drv /tmp/guix-tests/store/ghmy8vjyc8r3yjkz4daczs351s4635ml-guile-zstd-0.1.1-checkout.drv /tmp/guix-tests/store/63ckcgkk5ijfa36g3dyhmlmnrk7abgmc-po4a-0.63.drv /tmp/guix-tests/store/6nj6iyr7sz14c5f2k7msc6ndjiy1qrhf-perl-yaml-tiny-1.73.drv /tmp/guix-tests/store/45874z6j6ciq0icn8948ddgdmy1694ix-perl-module-build-tiny-0.039.drv /tmp/guix-tests/store/4im5a7k6i44w2bljzgqn2ghnkxwwsdfy-perl-extutils-config-0.008.drv /tmp/guix-tests/store/vb8848zak89z3nx252zaz0y0sjgdbpvg-ExtUtils-Config-0.008.tar.gz.drv /tmp/guix-tests/store/6n18xi6c762cp844w1agg5idgmrfg421-perl-extutils-helpers-0.026.drv /tmp/guix-tests/store/z0kd4sn8br12bvkb35ylx5rybc8gklrj-ExtUtils-Helpers-0.026.tar.gz.drv /tmp/guix-tests/store/qmp6jql1j4kka5yrgga5swpqq6926afn-perl-test-harness-3.42.drv /tmp/guix-tests/store/fnlqg74kjfkr0gihaiwshlj65xg66cj8-Test-Harness-3.42.tar.gz.drv /tmp/guix-tests/store/v7ihwlr46p6wwl5gl0b3pnqrpjch161i-Module-Build-Tiny-0.039.tar.gz.drv /tmp/guix-tests/store/zsgdjw0wr9cha4pdg2wa713ks6hnw5rg-perl-extutils-installpaths-0.012.drv /tmp/guix-tests/store/mzydy96wv31ywvmkfhhp751c4a3rhzf4-ExtUtils-InstallPaths-0.012.tar.gz.drv /tmp/guix-tests/store/5y526jl2bqx3clzmhbd57v02fxm6g360-perl-json-maybexs-1.004003.drv /tmp/guix-tests/store/2xz243rz372nfklmxnf0j24b6ap4bl1i-perl-common-sense-3.75.drv /tmp/guix-tests/store/98aglcvvvzp84x4d0p668zcqz5slpzzx-common-sense-3.75.tar.gz.drv /tmp/guix-tests/store/52qybi82wbbzywxl3i7yv8m9qvjmlsln-perl-cpanel-json-xs-4.26.drv /tmp/guix-tests/store/dhnkqxymyvz07mql9iad6vz8lghd8i47-Cpanel-JSON-XS-4.26.tar.gz.drv /tmp/guix-tests/store/hhzqy622w8cbmf4y8jbsrab46z54i0rj-JSON-MaybeXS-1.004003.tar.gz.drv /tmp/guix-tests/store/anmgahzgf5l9kvvbfnmlnz4paw2k1r8v-YAML-Tiny-1.73.tar.gz.drv /tmp/guix-tests/store/cdn7gdddp9y786zflmxn81w5pbhplhdv-texlive-tiny-59745.drv /tmp/guix-tests/store/cgg0kzlydxngwl9l67y40phnqac1canj-po4a-0.63.tar.gz.drv /tmp/guix-tests/store/6lsh62vk0kn2h2j78ny6samgjl69jcl2-guile-avahi-0.4.0-1.6d43caf.drv /tmp/guix-tests/store/jy86h73gpmiy9m60q14nq2fixjklnnls-guile-avahi-0.4.0-1.6d43caf-checkout.drv /tmp/guix-tests/store/li355kl0hi6367fjm1m0j3dkyx715hnx-module-import-compiled.drv /tmp/guix-tests/store/7qc6clvvrd2vwmrk57bgnk7c86kckv8h-guile-bytestructures-1.0.10.drv /tmp/guix-tests/store/z95qj605zqwkdjk763wby0j34kqrwzbh-guile-bytestructures-1.0.10-checkout.drv /tmp/guix-tests/store/82pm5vc49x4r60d1di2z9a907lc75xgz-disarchive-0.4.0.drv /tmp/guix-tests/store/iss4xrhwpd6bfwpfnympa1f77av2ic3h-disarchive-0.4.0.tar.gz.drv /tmp/guix-tests/store/kf64bmmfykhkpsrgl20kskilfdkwk86i-guile-quickcheck-0.1.0.drv /tmp/guix-tests/store/7vbd1f8krir5jqccz3mxq0044bwc7ihd-guile-quickcheck-0.1.0.tar.gz.drv /tmp/guix-tests/store/lpy7vlz5wd3rih2as1xb41lkf9mmq329-guile-lzma-0.1.0.drv /tmp/guix-tests/store/xfb2vf4yh9s94j9ipc54riak27qh1d92-guile-lzma-0.1.0.tar.gz.drv /tmp/guix-tests/store/fv1ln5rj47mlqq73180h9m08c3ia14c3-guile-git-0.5.2.drv /tmp/guix-tests/store/16bfl9b4p7flj0yydzy9gk6rqprc62p5-libgit2-1.3.0.drv /tmp/guix-tests/store/faq7i03czy6h6mm4r7lsqb66b1dd7rbl-libssh2-1.9.0.drv /tmp/guix-tests/store/sc0g4yp60knb191j626s8w8ch8izq8qr-libssh2-1.9.0.tar.xz.drv /tmp/guix-tests/store/xpzp6f37h255rhp2cv4ymcl3j94ay9v5-libssh2-1.9.0.tar.gz.drv /tmp/guix-tests/store/rwnrwvajwlphc2mszywvrbncwbjaw0kz-libgit2-1.3.0-checkout.drv /tmp/guix-tests/store/fnfhqmvxkgcmchkz8kh03n7xbs7dhdbw-libgit2-1.3.0-checkout.drv /tmp/guix-tests/store/xlndcmn1i91dlrccxxac31iaj1r2msqq-http-parser-2.9.4-1.ec8b5ee.drv /tmp/guix-tests/store/fijh42jbpl81hxbzvxnk7ffyacm457zg-http-parser-2.9.4-1.ec8b5ee-checkout.drv /tmp/guix-tests/store/cxf51006n7d0c21skq3aswfnjg7l6zg0-http-parser-2.9.4-1.ec8b5ee-checkout.drv /tmp/guix-tests/store/k8gr1hl42xfv4b36355r37yz841dw4qx-0001-url-treat-empty-port-as-default.patch.drv /tmp/guix-tests/store/bz7d9qwsmal6099r8dizwj9km37dm7xd-guile-git-0.5.2-checkout.drv /tmp/guix-tests/store/w5w120h3a0hzjahcbasg2q24q30nhag5-guile-git-0.5.2-checkout.drv /tmp/guix-tests/store/g98b81dhda9q4gbqbfzjd14dy37f0qan-guile-ssh-0.13.1.drv /tmp/guix-tests/store/h2g0wf0p18lwmrpm5v8ah44xgw0n4sd1-libssh-0.9.6.drv /tmp/guix-tests/store/01ymca8l0xg5149nncyc8wb64123p5f0-libssh-0.9.6.tar.xz.drv /tmp/guix-tests/store/kymj24blqlkmgvp42255kn7y526q7x0b-guile-ssh-0.13.1-checkout.drv /tmp/guix-tests/store/3h9fajz0hyjicpjcx3x6kr39w4b4jw7v-guile-ssh-0.13.1-checkout.drv /tmp/guix-tests/store/i8lwzllyh801gnyig9qg2ssrxp4w04qm-guix-1.3.0-16.10ceb3e-checkout.drv /tmp/guix-tests/store/w5g9vfpwj4n5kg5ay3b3wzac34zxhria-guile-lib-0.2.7.drv /tmp/guix-tests/store/sqq1f975w3mv5mhripygm7mf8qpingcp-guile-lib-0.2.7.tar.gz.drv /tmp/guix-tests/store/yxaka5dzh5kh3zlpjkvrziib7lv5jhxa-guile-lzlib-0.0.2.drv /tmp/guix-tests/store/258q9gcnija62sq31aqiflkvlzr1227s-guile-lzlib-0.0.2.tar.gz.drv /tmp/guix-tests/store/xgv6x1w0p18xidfkvd8skb1ksvpwln8j-lzlib-1.12.drv /tmp/guix-tests/store/6xijr98z01455mpp61fdcb6rrd7ivgfv-lzlib-1.12.tar.gz.drv /tmp/guix-tests/store/yyjr2rikcc16qvb2anc60jfv7f8k3f82-guile-sqlite3-0.1.2.drv /tmp/guix-tests/store/i9vlr1isl4chnqcyqr031bvzcv2vzw83-guile-sqlite3-0.1.2-checkout.drv /tmp/guix-tests/store/byib2n10y4vamwnc2mcjdll09sbw6z6a-shepherd-console-font-tty6.go.drv /tmp/guix-tests/store/9vhvzlzhz3pdi68rrhhs3kd444gvinzx-shepherd-console-font-tty6.scm.drv /tmp/guix-tests/store/d4llci3g9kqg8flzyiwy09ipkpcc14nm-shepherd-user-processes.go.drv /tmp/guix-tests/store/7kp78i7w8aj42n1d16bmnkbyxqz0f8h5-shepherd-user-processes.scm.drv /tmp/guix-tests/store/fa2ivfg3wxaw1bdq92jgl7hccbhr97c7-shepherd-console-font-tty2.go.drv /tmp/guix-tests/store/9snwb94i9ki1d18cf334ag9h4l3k3kc6-shepherd-console-font-tty2.scm.drv /tmp/guix-tests/store/fk7g2kb2sl9vwx52hyh5p19l9ksssgby-shepherd-loopback.go.drv /tmp/guix-tests/store/fx8kksvnkmalymxdy5q6al4lypygg656-shepherd-loopback.scm.drv /tmp/guix-tests/store/wdqm8d00abcy2f42bd4xl2wgvzp9nwmx-tear-down-network.drv /tmp/guix-tests/store/70212b113v6pbzc9n1avcvv9574bcdw3-guile-netlink-1.1.1.drv /tmp/guix-tests/store/38ajypya8gkjcz69h2ykiz4vvyac60qq-guile-netlink-1.1.1-checkout.drv /tmp/guix-tests/store/rrgm2mnmwsvnk596zmczk01v8fjkmvw8-module-import-compiled.drv /tmp/guix-tests/store/zjdznqsi1w8zwx2zslr7k6064ss1cqk9-set-up-network.drv /tmp/guix-tests/store/fpmxhh6ga5nlz0prh1kf2qc4f8qfpnsw-shepherd-console-font-tty3.go.drv /tmp/guix-tests/store/1hl7s95cnqvbnxlm543c7l33dkhflzgq-shepherd-console-font-tty3.scm.drv /tmp/guix-tests/store/h73ms04dmx1p014idk4k91bpairnil0l-shepherd-term-tty5.go.drv /tmp/guix-tests/store/vx60047x7pmyc4hm8vjdd4jcq70bqk9d-shepherd-term-tty5.scm.drv /tmp/guix-tests/store/hqch2hp1m5llqm0acfasi1xajb6wknvk-shepherd-mcron.go.drv /tmp/guix-tests/store/ijaisd847p10ccmkv04g64vgy72465b0-shepherd-mcron.scm.drv /tmp/guix-tests/store/b43n0fg0fmrn27znbq52mcj88s3mj2ri-mcron-job.drv /tmp/guix-tests/store/5xyc3mla67b13wbw356b027jlpwab1fx-rottlog-0.72.2.drv /tmp/guix-tests/store/g08crmldhqd0bwjh6p5cci1fpgzp5cq0-mailutils-3.13.drv /tmp/guix-tests/store/2h38i16d77zgiy1bvivl52xkjrgckhai-gsasl-1.10.0.drv /tmp/guix-tests/store/2klvswdlbhk7l5iswilki1ahjyvxj96w-libntlm-1.6.drv /tmp/guix-tests/store/bqhxn8jc0nbhwyi509ngfvw5dn0s6z69-libntlm-1.6.tar.gz.drv /tmp/guix-tests/store/lhpigb262sclzqbn48c7pg3sk92gvgla-gsasl-1.10.0.tar.gz.drv /tmp/guix-tests/store/7j22nfv73l9nyzv62nrn4vs7zj0v3fqy-libiconv-1.15.drv /tmp/guix-tests/store/plw5fmmhgglydkkrgzdia2fy3v0b6i6q-libiconv-1.15.tar.xz.drv /tmp/guix-tests/store/d4jafkvzzkpp6qhn0kxc40m0ilchpcly-libiconv-1.15.tar.gz.drv /tmp/guix-tests/store/8gyikhrn92yak2q7jx61f3rgqiabr2my-dejagnu-1.6.2.drv /tmp/guix-tests/store/1kib6rr5lm94fvpzb04pqs4aycgbj2dk-expect-5.45.4.drv /tmp/guix-tests/store/p1zzypvrfzd20c8f1j7m5galz7z6zaqr-expect5.45.4.tar.gz.drv /tmp/guix-tests/store/6zjlx0wqrpg9lw639rbphdgnazm3rvaw-dejagnu-1.6.2.tar.gz.drv /tmp/guix-tests/store/vz7vgsp307z1b2g3bi2p43kln8hprpng-mailutils-3.13.tar.xz.drv /tmp/guix-tests/store/1d7dfrxpznpz3ly4jjpxagzflmy48qpb-mailutils-3.13.tar.xz.drv /tmp/guix-tests/store/p8c0xszsgb2g8h553rkk8k824x9s69b2-rottlog-0.72.2.tar.xz.drv /tmp/guix-tests/store/n3nfzafj0z3h0vhhaknxvdkb0irxf5jv-rottlog-0.72.2.tar.gz.drv /tmp/guix-tests/store/f1jvl67m012mpcvnwmq3zcnw8ldvbsyp-mcron-1.2.1.drv /tmp/guix-tests/store/52qw4jxc97diz360jlbhqjwyrsvxxv0a-mcron-1.2.1.tar.gz.drv /tmp/guix-tests/store/hgrp4wgiv8idb9rb0r3568r5nxpqxjxv-mcron-job.drv /tmp/guix-tests/store/if9ayb04iq839vzv37m306y6fifaf7l6-shepherd-console-font-tty1.go.drv /tmp/guix-tests/store/yrcchip5rj5w5fiyz01qcg2p1scd66a5-shepherd-console-font-tty1.scm.drv /tmp/guix-tests/store/jr0mbbpnsg45gjksxppchpkz497qqdsa-shepherd-file-systems.go.drv /tmp/guix-tests/store/i52rzjn72c2cdg9fk3ah922by5pnaynk-shepherd-file-systems.scm.drv /tmp/guix-tests/store/jy1zmy6w6n2b73ccz9fzqfqj718ahz95-shepherd-user-file-systems.go.drv /tmp/guix-tests/store/ysmdg2lv1lfsi3a9dfbj7jmz5xfq6a32-shepherd-user-file-systems.scm.drv /tmp/guix-tests/store/mi34xy94z2idqnbqss3lsrlywv56sc7j-shepherd-file-system--tmp-guix-tests-store.go.drv /tmp/guix-tests/store/5j4ys8qlg5hpgkwfiik0zg95f7iq5px5-shepherd-file-system--tmp-guix-tests-store.scm.drv /tmp/guix-tests/store/nhjsrkydg2j1p54nqy5h2a5azizvd4zg-shepherd-udev.go.drv /tmp/guix-tests/store/v843clfqz2gpjl147fns238qmh75jglw-shepherd-udev.scm.drv /tmp/guix-tests/store/kvr4avidix1mdgbcsmszc7yra91fhs6m-udev.conf.drv /tmp/guix-tests/store/yhlcwiwmvy6as110708n8pw02sgpn6sy-udev-rules.drv /tmp/guix-tests/store/3aflpa7pa4awlygblgxjkkwx99yj54q9-fuse-2.9.9.drv /tmp/guix-tests/store/xq1mlgk5rw7ka30jdx4aj31sa2grg039-fuse-2.9.9.tar.xz.drv /tmp/guix-tests/store/rrxskzv964zilsi81wwam87ix2yxvr2c-fuse-2.9.9.tar.gz.drv /tmp/guix-tests/store/5iq94vsvj9g5ylvnsxjk0vhrnjlvyldx-alsa-utils-1.2.4.drv /tmp/guix-tests/store/k9nqv6vwwgl0n8gyz8nvb1zgmi6rbvff-libsamplerate-0.1.9.drv /tmp/guix-tests/store/zg3djdgc9s0ybi3blbzwdkz8dbqpgnfq-libsamplerate-0.1.9.tar.gz.drv /tmp/guix-tests/store/pcblm0sf6g0dyx84plphsfrd57wbyhhs-alsa-utils-1.2.4.tar.bz2.drv /tmp/guix-tests/store/lylq6cmrlfgivgqw07lpk3x36r083biy-crda-3.18.drv /tmp/guix-tests/store/0iy3553svn6qaxsqi34sqmqvspxy380m-crda-3.18.tar.xz.drv /tmp/guix-tests/store/z76fdjjwhsyjfp13g6ybycbg5nnfdggn-crda-3.18.tar.xz.drv /tmp/guix-tests/store/87mnm374vq13lsyxnklhlqk3clh12w5p-libnl-3.5.0.drv /tmp/guix-tests/store/ixby5dqrz40a1kvm0hbvbiannz4fdl8f-libnl-3.5.0.tar.gz.drv /tmp/guix-tests/store/jycsgdab94fq1x9ll5lmk1jkcgd409sx-libnl-doc-3.5.0.tar.gz.drv /tmp/guix-tests/store/8vaqpglndqjj0lkgjndsg0hdp916jhjr-wireless-regdb-2020.11.20.drv /tmp/guix-tests/store/g1nfrbbdvddf9b4l5xbkgvpfhcdmnbmd-wireless-regdb-2020.11.20.tar.xz.drv /tmp/guix-tests/store/v4xazqky7750pc2qqf65nxhy8hzan2hv-wireless-regdb-2020.11.20.tar.xz.drv /tmp/guix-tests/store/wkkacc1g5x79gmxzisrm1hiwvyd64z4k-90-kvm.rules.drv /tmp/guix-tests/store/x9hvp3w74msfmhs3xi75rkf66chaw3si-module-import-compiled.drv /tmp/guix-tests/store/xn7835n120pycqzqhfbsszk555hf0bvn-lvm2-2.03.11.drv /tmp/guix-tests/store/pjm81nfsixr57mzwv6j3n090sy6b204x-LVM2.2.03.11.tar.xz.drv /tmp/guix-tests/store/qbnmrqyxy66rnjxyv3xmcl3cg3184ml9-LVM2.2.03.11.tgz.drv /tmp/guix-tests/store/pad8kcbkbs2mfgq8i1p4jxmr7c0vybfy-shepherd-file-system--sys-kernel-debug.go.drv /tmp/guix-tests/store/x772778v7ymnbmf6nff5kpvr13hbbxjj-shepherd-file-system--sys-kernel-debug.scm.drv /tmp/guix-tests/store/pas05i4iawcrzw3350h9r98fhj1m25nf-shepherd-file-system--dev-pts.go.drv /tmp/guix-tests/store/5rzi4ah3nah2ll3cc929fd4pdin9kifs-shepherd-file-system--dev-pts.scm.drv /tmp/guix-tests/store/pq15nn0yafddgpjy1dji5xxisinwwa8f-shepherd-virtual-terminal.go.drv /tmp/guix-tests/store/9fd06g155i7qp3aylnahdydypqsj2pfc-shepherd-virtual-terminal.scm.drv /tmp/guix-tests/store/pr1dapi4sz132sn79d256w48cxmfb4wx-shepherd-sysctl.go.drv /tmp/guix-tests/store/jvafzs09sf1rcj3a4prlagx6axbg84s0-shepherd-sysctl.scm.drv /tmp/guix-tests/store/52xsdyhmp3a5bkgj7jv734lrav9rbdnb-sysctl.conf.drv /tmp/guix-tests/store/r7vc685nkwa2v69889231bkchs3kbvry-shepherd-term-tty4.go.drv /tmp/guix-tests/store/3n75qdjnjgrkgcyqf324fq2lzxrzwld0-shepherd-term-tty4.scm.drv /tmp/guix-tests/store/s6lf90dgc1yjrvk78qiiw8bwf26q2i5a-shepherd-term-tty1.go.drv /tmp/guix-tests/store/9820wvllafyjjwki5nq1iqwm0kvv96d3-shepherd-term-tty1.scm.drv /tmp/guix-tests/store/wimi96my5cykp1vc5kixbyixfn2kkkf1-shepherd-term-tty3.go.drv /tmp/guix-tests/store/k5lvc8dasymviiakx0czajyxi0wkb4rv-shepherd-term-tty3.scm.drv /tmp/guix-tests/store/zd9fiqilx60yn7czrili99f5mwvikmx6-shepherd-console-font-tty4.go.drv /tmp/guix-tests/store/4y1w31irbp5ffc9zgajqr4hhm9fv4qf0-shepherd-console-font-tty4.scm.drv /tmp/guix-tests/store/zdsljy9svpkrdgqahcp79dfvi71jywa3-shepherd-term-tty2.go.drv /tmp/guix-tests/store/2cwsmqjlknkgc63dpvm5v2q0ikzgdvl4-shepherd-term-tty2.scm.drv /tmp/guix-tests/store/zy7dc1pjjii1vz875wcm83aywz0g0nl4-shepherd-term-auto.go.drv /tmp/guix-tests/store/agay8h16f1nnvhp4l1fni967l3z0fc3g-shepherd-term-auto.scm.drv /tmp/guix-tests/store/zvggx6yn22axiraj6i8dg24jrdypqgm0-activate.scm.drv /tmp/guix-tests/store/0m93lxy9q74mixap86v8mp5p62a66iga-activate-service.scm.drv /tmp/guix-tests/store/p68sfphhh6gak92lmnwzjp1gcgbkam9z-etc.drv /tmp/guix-tests/store/0xrxxj37aipaasn5h6llid33wr8pi0zm-shells.drv /tmp/guix-tests/store/3dppzrmjipl215357m62qp0rxxqcigkl-skel.drv /tmp/guix-tests/store/4hi5mc14v13wcx7s3ghlq7ddx5n6h509-pam.d.drv /tmp/guix-tests/store/1801p42rgy9mkkpdf9bmzrgk41fna0bc-groupadd.drv /tmp/guix-tests/store/5jybgg7awqw792vb8gk74i1kny6f087i-groupdel.drv /tmp/guix-tests/store/63zwpr2yb02fg2fjyzfmyl7sby5wpcg9-userdel.drv /tmp/guix-tests/store/9v5ds3f9pa7na20wmfrg0l2qsjxdpzi7-passwd.drv /tmp/guix-tests/store/c1i43n1ip1s8ppmc13igxgzj61c2bffl-other.drv /tmp/guix-tests/store/fsbvj9x1yz3pvvgy5xq70c91cfmy2brq-useradd.drv /tmp/guix-tests/store/jx9xjzd42063rhjap04wrgwrnn1qivsc-su.drv /tmp/guix-tests/store/n3nc4rvccdncrsycb0lwavd83fabk81w-login.drv /tmp/guix-tests/store/nwy8z7fv1dw5y94p3icw7mw749pk4nj6-sudo.drv /tmp/guix-tests/store/wzlh1j5xv051jxjxj4mn002lz969xsx8-usermod.drv /tmp/guix-tests/store/zx1d38g65ycdx57c6jk9yabk82yfzlvr-groupmod.drv /tmp/guix-tests/store/6cf0y7mj0v5xnr1ffmjcjcpvsn1w7w9a-environment.drv /tmp/guix-tests/store/gibpg9bbb294maqsf1nh5nd5hy8zs9xf-profile.drv /tmp/guix-tests/store/jbfzgwqm2x8lwj1l0rawqv9dz2cmbjkq-sudoers.drv /tmp/guix-tests/store/nhbr7xzlz6hai88brw7klrhn0jhkbvjj-sudo-1.9.8p2.drv /tmp/guix-tests/store/w5csmfhyia8irry3sx36kyfly8bdardw-sudo-1.9.8p2.tar.xz.drv /tmp/guix-tests/store/1wx1ypdnq8nh1c6p5ys9m9pl1k8dzzd5-sudo-1.9.8p2.tar.gz.drv /tmp/guix-tests/store/lbhq0w2q30ahgxldp37gqczyknn4rhvb-rottlog.drv /tmp/guix-tests/store/njg93x7nvmxyqhyvdd4lgg9m2qc1yqzj-rottlog.weekly.drv /tmp/guix-tests/store/fz21mf3w5scnc69n1cdxxnc9yswc1822-rottlog-post-rotate.scm.drv /tmp/guix-tests/store/1qynvw49rnrf8gbdfmql9wr0qnxs3z6z-activate-service.scm.drv /tmp/guix-tests/store/dagrabysflq2f1lqp1z7hcr3i71gyfca-activate-service.scm.drv /tmp/guix-tests/store/4qvvh9dz4v6zyzr2kbqmhl2ssip5iy07-firmware.drv /tmp/guix-tests/store/kdqkirpml4xd4zich6i035lbxwkxdkff-ath9k-htc-firmware-1.4.0.drv /tmp/guix-tests/store/2vamx6irh3ynkmv05c430c73f2lsr0gj-ath9k-htc-firmware-1.4.0-checkout.drv /tmp/guix-tests/store/jipfzcdv5yj6jx7ld7j1s6r0r28xk1aa-ath9k-htc-firmware-1.4.0-checkout.drv /tmp/guix-tests/store/n0cw1a60ypwh557mjwg12h9mzyg4sdad-binutils-cross-xtensa-elf-2.33.1.drv /tmp/guix-tests/store/c7xkbfszmjr7mg5pgs4k6f25wa98arfp-binutils-2.33.1.tar.xz.drv /tmp/guix-tests/store/7mdbc0654zq1wjaprrfnj2w7nq1zkljz-binutils-2.33.1.tar.bz2.drv /tmp/guix-tests/store/x49j6ldvjf5f5zpac42c9fbrjlaq3s06-gcc-cross-sans-libc-xtensa-elf-10.3.0.drv /tmp/guix-tests/store/3nvq0gkam8k20l0gc48hfjslcmgshixk-gcc-10.3.0.tar.xz.drv /tmp/guix-tests/store/x20glm8arvb8v6pdhmnrzhc14k2hvbmw-ld-wrapper-xtensa-elf-0.drv /tmp/guix-tests/store/ncmzhy0y3xzg06mdwczx58c6nvy7n1hc-openfwwf-firmware-5.2.drv /tmp/guix-tests/store/l94sp53jfs13h8a3k23n49ygs1r3brwz-openfwwf-5.2.tar.gz.drv /tmp/guix-tests/store/n8545gsxsna2wkav1yd20m56dz2c8yiz-b43-tools-0.0.0-1.27892ef.drv /tmp/guix-tests/store/8si0b4bx61imy7p8k6md8ijb7ndxwh0s-b43-tools-0.0.0-1.27892ef-checkout.drv /tmp/guix-tests/store/fj8x8axdhb4izv1q7klkxmmzmsdh5fg1-activate-service.scm.drv /tmp/guix-tests/store/lfl2z97yr6r6iva1v2y4c851mcy84xhn-module-import-compiled.drv /tmp/guix-tests/store/g1cqpg3fg2znbxk90bvfagvnz7imwicn-activate-service.scm.drv /tmp/guix-tests/store/3hpca7axi08bvdy48v06w93l7i656dyf-module-import-compiled.drv /tmp/guix-tests/store/jv51zjsr89bn1qq2mi0x7kwly2z6fdfs-activate-service.scm.drv /tmp/guix-tests/store/m8h9xj59lg60wiy28j1zma3ijv1x3rhp-activate-service.scm.drv /tmp/guix-tests/store/nnxl09npxwmswwkl6kwa3jzqwf7hh376-modprobe.drv /tmp/guix-tests/store/p7ls8mpcjih57blfqpwq4imfgz7q1j7c-activate-service.scm.drv /tmp/guix-tests/store/s1j1919p16apd1cpxz1ibmj4shc5i18p-acl.drv /tmp/guix-tests/store/7igz808sygf9kiwhj7fjw71s5g0imsx2-module-import-compiled.drv /tmp/guix-tests/store/inki0769jxfpvzbk8jm3sky0mfgj2bk0-module-import.drv /tmp/guix-tests/store/bxiisc58wygb4yfikrg6dqw13mjzg9fb-parameters.drv /tmp/guix-tests/store/l01fh4awhgmy354kqb170yb3141x1147-profile.drv /tmp/guix-tests/store/03spvwpinh4ysdhs3zfsmxisf5ah84jj-usbutils-014.drv /tmp/guix-tests/store/cm100g7rscllnj0biscirhas9xxri54w-usbutils-014.tar.xz.drv /tmp/guix-tests/store/0qnjl5yfwgqw9za6jlji3wiin7x0cm1l-nvi-1.81.6.drv /tmp/guix-tests/store/92si81ir5290ikwqw1s55hrbdy02wank-nvi-1.81.6.tar.xz.drv /tmp/guix-tests/store/wr2w5zi22h6g0j0rr58ph2rl95cpi1gc-nvi-1.81.6.tar.bz2.drv /tmp/guix-tests/store/2hm1x5jxgiyjc3kazz5bfsayl9lvd6q6-wireless-tools-30.pre9.drv /tmp/guix-tests/store/21gv30k4s1czzskzwwbvbsymlph0kj56-wireless_tools.30.pre9.tar.xz.drv /tmp/guix-tests/store/h2ck7l3mz3mr3qs168y7lxr3psgrr52z-wireless_tools.30.pre9.tar.gz.drv /tmp/guix-tests/store/6mfsxnxizis59daqirwwfijhqhbdvn7j-wget-1.21.1.drv /tmp/guix-tests/store/01avib9v6ryk2hqanbs7y4ln5k1a301v-perl-net-ssleay-1.88.drv /tmp/guix-tests/store/y2s3s7lii6lhznvsznzhq4f8mfsvwvlb-Net-SSLeay-1.88.tar.gz.drv /tmp/guix-tests/store/6k1m77xqsh752q5fa6v5nk9amfvlsxhr-perl-io-socket-ssl-2.068.drv /tmp/guix-tests/store/qmfh434pi0c69swdbjz9wlfgksqhh7m6-IO-Socket-SSL-2.068.tar.gz.drv /tmp/guix-tests/store/8hrzpc4pywrdb5098f74frg4yrkwc985-perl-http-date-6.05.drv /tmp/guix-tests/store/sqg1rxy4x3l5hpmp20ciacx0ixcy6fpg-HTTP-Date-6.05.tar.gz.drv /tmp/guix-tests/store/cpcnsdnsdrq8djdv29f53qgw98lll49r-perl-lwp-mediatypes-6.04.drv /tmp/guix-tests/store/252bgkdf5826m39sg6p5ir6lzlz1dm6w-LWP-MediaTypes-6.04.tar.gz.drv /tmp/guix-tests/store/9wsfba3n6cgwrnyd0nk7rb6p30qj7vra-perl-try-tiny-0.30.drv /tmp/guix-tests/store/7kp5adkbkzgsw1k1hfyd21m6pamr4waj-Try-Tiny-0.30.tar.gz.drv /tmp/guix-tests/store/msmy7w894jb3rbwdjmqb829l4p5jrqg4-perl-test-fatal-0.014.drv /tmp/guix-tests/store/5v0pk6x5ryq2pr9qpmmvqp2cn7vbnw0r-Test-Fatal-0.014.tar.gz.drv /tmp/guix-tests/store/fa76fa752fsm2v4ylin9rh52d2chn4mn-perl-io-html-1.00.drv /tmp/guix-tests/store/1w2ps966mwp7y09qyqwacwyhal6mr8n3-IO-HTML-1.00.tar.gz.drv /tmp/guix-tests/store/i4ysglrmbga9xbj7aiq5v0hif8dw2l1a-perl-http-daemon-6.01.drv /tmp/guix-tests/store/gg97lch2yfiqd3r65jkn00riq9hq9z5q-HTTP-Daemon-6.01.tar.gz.drv /tmp/guix-tests/store/jdaymicps378ky4drdmzw8xdln0mn481-perl-http-message-6.18.drv /tmp/guix-tests/store/pvkhl924lzyvbb5d8s10smjizipggfdf-HTTP-Message-6.18.tar.gz.drv /tmp/guix-tests/store/zrzvkl33h6gfj7m2w8v04ib39lpdz1mc-perl-encode-locale-1.05.drv /tmp/guix-tests/store/jxjn1n3s55g3i068gc7vqp2vqg6bk1pm-Encode-Locale-1.05.tar.gz.drv /tmp/guix-tests/store/q7xl9i21gpwsg5n3af4mjg7yp1wjyp50-wget-1.21.1.tar.lz.drv /tmp/guix-tests/store/7dn7yzsc72spw0lvr7f5h42nkkgq3jib-nano-6.0.drv /tmp/guix-tests/store/gzsiy44bjlzvqlikwf784ahs5ddcgda8-nano-6.0.tar.xz.drv /tmp/guix-tests/store/7w5akmhcxgj5kwk8i34l4ar0347fwxas-module-import-compiled.drv /tmp/guix-tests/store/cnw03bpim0dmbp6kvnsqgw0rm1b2wk60-psmisc-23.4.drv /tmp/guix-tests/store/08simppg2pdjj3fa5vj5z2jr4nsshdfd-psmisc-23.4.tar.xz.drv /tmp/guix-tests/store/cz7npp4iaygyfnn0rn9nxzz48s3pac7a-iw-4.14.drv /tmp/guix-tests/store/v9nnd7qj0ikm0jd20rwjsghz9rrnnkk9-iw-4.14.tar.xz.drv /tmp/guix-tests/store/f6qwlxh95h8kspn0c8rf7qlmzf1d570m-mg-20210609.drv /tmp/guix-tests/store/jlfzl42fs15znvh7bjsjkzb4j7hiy3vn-diffutils-3.8.drv /tmp/guix-tests/store/ksqy4pgivydykas6p5vr55vhm85ywlp4-diffutils-3.8.tar.xz.drv /tmp/guix-tests/store/npmm1196qbjwzi9n0kyzjd0ggv0c1lib-mg-20210609-checkout.drv /tmp/guix-tests/store/pphf5gq1nspncfvlbz04yq7b6nj4f965-mg-20210609-checkout.drv /tmp/guix-tests/store/glj6vpavn6hsq4mn6mv4ljajrwphhpnd-less-590.drv /tmp/guix-tests/store/yccr1pc9hpqqk14mfasvcppqj4cl04as-less-590.tar.xz.drv /tmp/guix-tests/store/madpyki5i3q3r4sh9sdivm7db8nhydkc-less-590.tar.gz.drv /tmp/guix-tests/store/jf7imq8fj831wfmp8x89cswxq1vnp2h8-util-linux-with-udev-2.37.1.drv /tmp/guix-tests/store/jm3jb8p39zaf6dimvgdlsqbsbq5x5rb1-guile-colorized-0.1.drv /tmp/guix-tests/store/1mi82141ikz1qv34bhrsh23dga5ml303-guile-colorized-0.1-checkout.drv /tmp/guix-tests/store/k1xws21mxn355ck2jjmdvdy0wlqnwy5l-guix-icons-0.1.drv /tmp/guix-tests/store/45pic93zs22dvh7kncbl30czrqmgaqkz-module-import-compiled.drv /tmp/guix-tests/store/666b3184y9jlxm2b6b64k2q08nqc1b15-guile-rsvg-2.18.1-0.05c6a2f.drv /tmp/guix-tests/store/knz970wh9br51388mhnrfj0lfa7xfkdl-guile-cairo-1.11.2.drv /tmp/guix-tests/store/i1zcl2pd4r8agw87xa2hhzj7jzfjdp3h-guile-cairo-1.11.2.tar.xz.drv /tmp/guix-tests/store/psqszs75zic5lxkw9nf654xmajg6pq81-guile-cairo-1.11.2.tar.gz.drv /tmp/guix-tests/store/sxi5wqkgj4v0w92rdfglk4fpld1dh2lr-guile-rsvg-2.18.1-0.05c6a2f.tar.xz.drv /tmp/guix-tests/store/rfy46yh6r8lza6l20qyhjkw1pd2lwm0h-guile-rsvg-2.18.1-0.05c6a2f.tar.gz.drv /tmp/guix-tests/store/rdc732dgcpdp087ycy1j9rxvp8xg8n60-guix-artwork-2f2fe74-checkout.drv /tmp/guix-tests/store/mc3gnkfpjwnglbs46ka049kl8ghnzmd4-patch-2.7.6.drv /tmp/guix-tests/store/pksym19g14alxabzbvkvdvbhdbmii5rf-patch-2.7.6.tar.xz.drv /tmp/guix-tests/store/pkizvh2nvpfjkx46xv2fwym2kjpssqc7-openssh-8.8p1.drv /tmp/guix-tests/store/2gp7mvsj30djscl02w91386270q03bfj-libedit-20191231-3.1.drv /tmp/guix-tests/store/z6wdh85r38rzzf21nbbbd79smxaknwiz-libedit-20191231-3.1.tar.gz.drv /tmp/guix-tests/store/98f8kvbarwxm9x8lk32qaq6alnl0cygg-libfido2-1.9.0.drv /tmp/guix-tests/store/n6vq15hi5fvpflxkkfc96wsffpy4pkf8-libfido2-1.9.0-checkout.drv /tmp/guix-tests/store/sagi2napp294wy3nymc9ykjqix54zwwz-libcbor-0.8.0.drv /tmp/guix-tests/store/6z3vddk8f9fkbhfy0lvn91pkingman5h-libcbor-0.8.0-checkout.drv /tmp/guix-tests/store/bs46k0fsn2w04n6qkww2s8y3dpickaqi-openssh-8.8p1.tar.xz.drv /tmp/guix-tests/store/0y6r2qb5xrk81k7p6v6842iyrgwx2dpg-openssh-8.8p1.tar.gz.drv /tmp/guix-tests/store/z9kp9fqdg6pgq70c2sf5dn934h6xa20p-xauth-1.1.drv /tmp/guix-tests/store/v5dwiil3v248c7i7gkn1wqp6hw4l0365-cmdtest-0.32-14-gcdfe14e.drv /tmp/guix-tests/store/0kk12c5jgadf1frc7i17r577dwzlx02v-cmdtest-0.32-14-gcdfe14e-checkout.drv /tmp/guix-tests/store/21iajp4byj919q1kargk23n5wbk62k6d-python-pyyaml-5.4.1.drv /tmp/guix-tests/store/did0v08xgdgvjzrs6qp4v8g7v5jywpsd-PyYAML-5.4.1.tar.gz.drv /tmp/guix-tests/store/7xhr1hxhiwhz69g6jzaj175vdd7rqkpy-python-pyaml-18.11.0.drv /tmp/guix-tests/store/zb3gygdivx9fdbav1jn89d0k0703p863-python-unidecode-1.1.1.drv /tmp/guix-tests/store/6calv0k3mx9dyb5ws53cirv9qghshvw0-Unidecode-1.1.1.tar.gz.drv /tmp/guix-tests/store/zdnq00w1rqbd651y42kksixg4rpgvmjy-pyaml-18.11.0.tar.gz.drv /tmp/guix-tests/store/fms0jhj8v5n6qm73fj582m43yaqzwpi5-python-markdown-3.3.4.drv /tmp/guix-tests/store/sxny34kcqyrk6wjcw11h62zs78jrgrqx-Markdown-3.3.4.tar.gz.drv /tmp/guix-tests/store/k67ix9x6cqxawbjlyiaqwmc4p6q09phy-python-ttystatus-0.38.drv /tmp/guix-tests/store/aywcr39i4cdwqv9cmcchvlpa4l1nwzlp-python-ttystatus-0.38-checkout.drv /tmp/guix-tests/store/lisdqydp64nz894vbhjzcp1ggvangcz3-python-coverage-test-runner-1.15.drv /tmp/guix-tests/store/5fbrvzf9rb2zn84qyaqcfdfm98f5cgcp-coverage-test-runner-1.15.tar.gz.drv /tmp/guix-tests/store/zsb2955w63w1sm5y9fwhh6z6d7kam7s6-python-pep8-1.7.0.drv /tmp/guix-tests/store/xyjk5wkn2w5fdsagh5d8bpkbfsfx244v-pep8-1.7.0.tar.xz.drv /tmp/guix-tests/store/knzbzv5jj7xm59sxdfss2xkid972axmc-pep8-1.7.0.tar.gz.drv /tmp/guix-tests/store/kba27af4s1l38zm0yyxcnlw9x08pnq71-python-cliapp-1.20180812.1.drv /tmp/guix-tests/store/k6n8xyk1cp80lvy0qms7q7299fzhqry3-cliapp-1.20180812.1.tar.gz.drv /tmp/guix-tests/store/y8g0mir80xvrdf3kz3q5dmng6y09mggl-xauth-1.1.tar.bz2.drv /tmp/guix-tests/store/rkkpd7b5xklw29fxsxnfb3ajdv8yfzj4-man-db-2.9.4.drv /tmp/guix-tests/store/3qvn6zj3apw6vnprlj7akinpwzz1ky5x-man-db-2.9.4.tar.xz.drv /tmp/guix-tests/store/f1w548d30n4p6zjd573aw5vlvxzkflwz-libpipeline-1.5.3.drv /tmp/guix-tests/store/mhpl6hr81nh5hc3nz8fmszf44aq2s52d-libpipeline-1.5.3.tar.gz.drv /tmp/guix-tests/store/gy4ky336kyffswp0864rnzm12j7lbcgx-groff-minimal-1.22.4.drv /tmp/guix-tests/store/rmcpxjv7lz78alzgsa3nspqqggjkxy02-info-reader-6.7.drv /tmp/guix-tests/store/rszwyvn10fsx28m5yvf3vyfsk0vkday7-screen-4.8.0.drv /tmp/guix-tests/store/7276si8g9hd4lk26fikp0343yb9r0ism-screen-4.8.0.tar.xz.drv /tmp/guix-tests/store/i6i9skxd1glamnr729acbvxc1jb1y9jg-screen-4.8.0.tar.gz.drv /tmp/guix-tests/store/gs1yf3z7qns4md3i0xd09l1fhsks3lf1-guile-gdbm-ffi-20120209.fa1d5b6.drv /tmp/guix-tests/store/ixizak8jmhxlx20a6mfhjyfpyvfymk31-guile-gdbm-ffi-20120209.fa1d5b6-checkout.drv /tmp/guix-tests/store/3mkzj099x06c836655r5m1dwk8nnwi2f-guile-gdbm-ffi-20120209.fa1d5b6-checkout.drv /tmp/guix-tests/store/jn061ljmq78h8q0d8hkhz7hc82nb4s0y-module-import-compiled.drv /tmp/guix-tests/store/2d2cbya67yyji8xchr1in8knxix9mcr8-mkfontdir-1.0.7.drv /tmp/guix-tests/store/k1sh37msdlm5cq4phpj9kj9gqvw7pqr2-mkfontscale-1.2.1.drv /tmp/guix-tests/store/akh1wmkmcaxhfk1s4pf9wka6bim8671l-mkfontscale-1.2.1.tar.bz2.drv /tmp/guix-tests/store/my0azai9frif7yfdr4flv0a39hd9xj52-mkfontdir-1.0.7.tar.bz2.drv /tmp/guix-tests/store/vsjakghydi7drfic19zf183zr36qahyd-module-import-compiled.drv /tmp/guix-tests/store/wqjfykadv11c1876h8sr0ahfbwafb326-profile.drv /tmp/guix-tests/store/m7w7d0ba41gg665aq9shwk68d56q44sd-grub-efi-2.06.drv /tmp/guix-tests/store/1vbgi0a26rnyvws37v5afqmzfs29l585-grub-2.06.tar.xz.drv /tmp/guix-tests/store/7k5daaqrmca44w4lgdgc3gbf3bngn5sj-grub-2.06.tar.xz.drv /tmp/guix-tests/store/54z5zijpccpjfsq44794svsybv0ifl4v-xorriso-1.5.2.drv /tmp/guix-tests/store/ix4k1853388gpg9gk7q7j60c25q809nf-xorriso-1.5.2.tar.gz.drv /tmp/guix-tests/store/94jsmp2v461d86cpsqfsvcpdivlxppv5-parted-3.4.drv /tmp/guix-tests/store/py9prgrxz261l11b346blzvbnv3dcnjk-parted-3.4.tar.xz.drv /tmp/guix-tests/store/9a5fv9invv6f983qi23000sh9yb8zjwp-efibootmgr-17.drv /tmp/guix-tests/store/g41l93j4hpnm5qw4bia65rrv60p6fn3q-efivar-37.drv /tmp/guix-tests/store/yf9bxihf2j8xg2l060507sg6l334wypb-efivar-37.tar.xz.drv /tmp/guix-tests/store/bpn7r66bw8pzfx209ya5friz55ih15r2-efivar-37.tar.bz2.drv /tmp/guix-tests/store/j6qdjbiz7k9ga72dk4bqm92421l9lbaz-efibootmgr-17-checkout.drv /tmp/guix-tests/store/manwiff0fnbvq1v95ad5za889jphabpa-efibootmgr-17-checkout.drv /tmp/guix-tests/store/xci6rbyxxcqq000dhw1brycb3va9j0py-console-setup-1.205.drv /tmp/guix-tests/store/3xnnjz19snffsz4ifn39bkhp9sxbnskh-bdftopcf-1.1.drv /tmp/guix-tests/store/m51xbgwmddmalhlb47hxy5i186qs2gjh-bdftopcf-1.1.tar.bz2.drv /tmp/guix-tests/store/4d82476lpigdh993vsy0w2yvjka381zk-sharutils-4.15.2.drv /tmp/guix-tests/store/qx4b0qq0ccvbqmc8l9g5dxlxvlixj8q7-sharutils-4.15.2.tar.xz.drv /tmp/guix-tests/store/acqnvmjhnsy1paadqd9sgbp49i9wvcys-sharutils-4.15.2.tar.xz.drv /tmp/guix-tests/store/j8hnirmx00civbqqarxska8l83p7cgyz-console-setup-1.205-checkout.drv /tmp/guix-tests/store/qwha10vgcvwfqd8q3hmbris7gml6fs9r-bdfresize-1.5-11.drv /tmp/guix-tests/store/k4lqfhgql9xp59fijigg9zcg3rizbkn4-bdfresize-1.5-11-checkout.drv /tmp/guix-tests/store/5pfnj4vjixnff85ifhj1lc6cxlag9b08-bdfresize-1.5-11-checkout.drv /tmp/guix-tests/store/ydq5y6crh7ahaf2p7zvx5w55brkviqbn-mdadm-4.1.drv /tmp/guix-tests/store/gfw5yabijmqdn3l5a7w9y1bnrrcra12r-mdadm-4.1.tar.xz.drv /tmp/guix-tests/store/zpv61y3la0frkx599ls4jywkgvdd5mr8-unifont-7.0.06.bdf.gz.drv /tmp/guix-tests/store/v8k63mzx9dvxq2afyv4pjpq8b8dj0165-fakeroot-1.26.drv /tmp/guix-tests/store/8xk6fb9bwny377v0mb2qhlqznfaj56pa-autoconf-2.71.drv /tmp/guix-tests/store/ccv9fgnxwxiz328h7a0p78d6lvi8y0jc-autoconf-2.71.tar.xz.drv /tmp/guix-tests/store/mp6vvksgvkd6qq5h907crxr8xdgkx0vy-fakeroot-1.26.tar.xz.drv /tmp/guix-tests/store/ixb5l7ybyn4ilwjy2nvhmirs40f4nqnl-fakeroot-1.26.tar.gz.drv /tmp/guix-tests/store/zwqg6wjkj8a2hgi3w88fgglfj4rk83r3-module-import-compiled.drv /tmp/guix-tests/store/662q8zq7w181cqjvn6n5acmwp9yjh0j9-partition.img.drv + for example in gnu/system/examples/*.tmpl + grep hurd + echo gnu/system/examples/desktop.tmpl + target= + guix system -n disk-image gnu/system/examples/desktop.tmpl accepted connection from pid 13502, user nixbld guix system: warning: 'disk-image' is deprecated: use 'image' instead guix system: error: service 'xorg-server' provided more than once + rm -f t-guix-system-13177 t-guix-system-error-13177 /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/t-guix-system-13177/config.scm /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/t-guix-system-13177/my-torrc + rmdir /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/t-guix-system-13177 FAIL tests/guix-system.sh (exit status: 1) SKIP: tests/guix-home ===================== accepted connection from pid 13528, user nixbld + set -e + guix home --version guix show (GNU Guix) 1.3.0-17.2a49ddb Copyright (C) 2021 the Guix authors License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. ++ guile -c '(use-modules (guix config))(display %storedir)' + NIX_STORE_DIR=/gnu/store ++ guile -c '(use-modules (guix config))(display %localstatedir)' + localstatedir=/var + GUIX_DAEMON_SOCKET=/var/guix/daemon-socket/socket + export NIX_STORE_DIR GUIX_DAEMON_SOCKET + guile -c '(use-modules (guix)) (exit (false-if-exception (open-connection)))' + exit 77 SKIP tests/guix-home.sh (exit status: 77) SKIP: tests/guix-environment-container ====================================== accepted connection from pid 14177, user nixbld + set -e + exit 77 SKIP tests/guix-environment-container.sh (exit status: 77) SKIP: tests/guix-describe ========================= accepted connection from pid 14605, user nixbld + guix describe --version guix describe (GNU Guix) 1.3.0-17.2a49ddb Copyright (C) 2021 the Guix authors License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. + tmpfile=t-guix-describe-14615 + trap 'rm -f t-guix-describe-14615' EXIT + rm -f t-guix-describe-14615 + '[' -d /tmp/guix-build-guix-1.3.0-17.2a49ddb.drv-0/source/.git ']' + exit 77 + rm -f t-guix-describe-14615 SKIP tests/guix-describe.sh (exit status: 77) error: in phase 'check': uncaught exception: %exception #<&invoke-error program: "make" arguments: ("check") exit-status: 2 term-signal: #f stop-signal: #f> phase `check' failed after 1268.7 seconds command "make" "check" failed with status 2 builder for `/gnu/store/63xi2j7wfp9lhbx9q4i5v6zhr79lq6gk-guix-1.3.0-17.2a49ddb.drv' failed with exit code 1 build of /gnu/store/63xi2j7wfp9lhbx9q4i5v6zhr79lq6gk-guix-1.3.0-17.2a49ddb.drv failed Could not find build log for '/gnu/store/63xi2j7wfp9lhbx9q4i5v6zhr79lq6gk-guix-1.3.0-17.2a49ddb.drv'. cannot build derivation `/gnu/store/hlh3g4hy16ckzwqbz2aa4gh63xsyyfsj-activate.drv': 1 dependencies couldn't be built cannot build derivation `/gnu/store/5afdyf17y9b9acyqsglrqwn7rwxlg50f-on-first-login.drv': 1 dependencies couldn't be built cannot build derivation `/gnu/store/5y6r0ak51wwsgwyz185s93vaija93k9y-home.drv': 1 dependencies couldn't be built guix home: error: build of `/gnu/store/5y6r0ak51wwsgwyz185s93vaija93k9y-home.drv' failed + chmod -Rf +w /tmp/tmp.yuNYsByhPF + rm -rf /tmp/tmp.yuNYsByhPF FAIL tests/guix-home.sh (exit status: 1)