Hi, Indeed, there is a bug. Because the source of ’icecat’ raises a case that is not handled by ’check-archival’ in (guix lint).
Basically in the snippet: --8<---------------cut here---------------start------------->8--- (match (lookup-content (content-hash-value hash) (symbol->string (content-hash-algorithm hash))) --8<---------------cut here---------------end--------------->8--- ’lookup-content’ expect a bytevector for ’content-hash’ and in the case of ’icecat’, it returns #f. Then raises the backtrace. For the record, compare ’icecat’ with ’hello’: --8<---------------cut here---------------start------------->8--- $ guix repl GNU Guile 3.0.5 Copyright (C) 1995-2021 Free Software Foundation, Inc. Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'. This program is free software, and you are welcome to redistribute it under certain conditions; type `,show c' for details. Enter `,help' for help. scheme@(guix-user)> ,use(guix packages) scheme@(guix-user)> ,use(guix swh) scheme@(guix-user)> ,use(gnu packages gnuzilla) scheme@(guix-user)> (content-hash-value (origin-hash (package-source icecat))) $1 = #f scheme@(guix-user)> (lookup-content (content-hash-value (origin-hash (package-source icecat))) "sha256") ice-9/boot-9.scm:1669:16: In procedure raise-exception: In procedure bv-length: Wrong type argument in position 1 (expecting bytevector): #f Entering a new prompt. Type `,bt' for a backtrace or `,q' to continue. scheme@(guix-user) [1]> ,q --8<---------------cut here---------------end--------------->8--- then --8<---------------cut here---------------start------------->8--- scheme@(guix-user)> ,use(gnu packages base) scheme@(guix-user)> (content-hash-value (origin-hash (package-source hello))) $3 = #vu8(49 224 102 19 122 150 38 118 232 159 105 209 182 83 130 222 149 167 239 125 145 75 140 185 86 244 30 167 46 15 81 107) scheme@(guix-user)> (lookup-content (content-hash-value (origin-hash (package-source hello))) "sha256") $2 = #<<content> checksums: (("sha1" . #vu8(247 190 191 111 156 98 162 41 94 136 159 102 224 92 233 191 174 217 172 227)) ("blake2s256" . #vu8(4 255 253 50 132 65 210 22 201 36 146 173 114 211 115 136 216 199 120 137 136 11 6 145 81 41 135 134 253 72 216 137)) ("sha1_git" . #vu8(202 230 179 60 195 63 170 253 45 107 216 108 107 66 115 249 51 140 105 194)) ("sha256" . #vu8(49 224 102 19 122 150 38 118 232 159 105 209 182 83 130 222 149 167 239 125 145 75 140 185 86 244 30 167 46 15 81 107))) data-url: "https://archive.softwareheritage.org/api/1/content/sha256:31e066137a962676e89f69d1b65382de95a7ef7d914b8cb956f41ea72e0f516b/raw/" file-type-url: "https://archive.softwareheritage.org/api/1/content/sha256:31e066137a962676e89f69d1b65382de95a7ef7d914b8cb956f41ea72e0f516b/filetype/" language-url: "https://archive.softwareheritage.org/api/1/content/sha256:31e066137a962676e89f69d1b65382de95a7ef7d914b8cb956f41ea72e0f516b/language/" length: 725946 license-url: "https://archive.softwareheritage.org/api/1/content/sha256:31e066137a962676e89f69d1b65382de95a7ef7d914b8cb956f41ea72e0f516b/license/"> --8<---------------cut here---------------end--------------->8--- Cheers, simon