chromium-extension: Compute json at argument evaluation time.

* gnu/build/chromium-extension.scm (make-chromium-extension): Make use of the
make-signing-key procedure inside the argument field, making sure that it is
not evaluated at file-load time.  This would otherwise try to resolve gnutls
when we can't guarantee it's defined because of dependency cycles.

Change-Id: Ia7b13acfbca475c2df073e9a88fc8bb9264dd968
This commit is contained in:
Josselin Poiret 2023-12-27 17:18:52 +01:00
parent 8f03a51f5c
commit 93ac4c20bf
No known key found for this signature in database
GPG key ID: 505E40B916171A8A

View file

@ -120,12 +120,7 @@ (define* (make-chromium-extension pkg #:optional (pkg-output "out"))
when installed, will make the extension contained in PKG available as a
Chromium browser extension. PKG-OUTPUT specifies which output of PKG to use."
(let* ((name (package-name pkg))
(version (package-version pkg))
(private-key (make-signing-key name))
(public-key (signing-key->public-der private-key))
(checksum (file-sha256sum public-key))
(crx (make-crx private-key pkg pkg-output))
(json (crx->chromium-json crx version)))
(version (package-version pkg)))
(package
(inherit pkg)
(name (string-append name "-chromium"))
@ -138,6 +133,12 @@ (define* (make-chromium-extension pkg #:optional (pkg-output "out"))
(arguments
(list #:modules '((guix build utils))
#:builder
(let*
((private-key (make-signing-key name))
(public-key (signing-key->public-der private-key))
(checksum (file-sha256sum public-key))
(crx (make-crx private-key pkg pkg-output))
(json (crx->chromium-json crx version)))
#~(begin
(use-modules (guix build utils))
(define (base16-char->chromium-base16 char)
@ -152,4 +153,4 @@ (define (base16-char->chromium-base16 char)
"/share/chromium/extensions")))
(mkdir-p extension-directory)
(symlink #$json (string-append extension-directory "/"
file-name ".json")))))))))
file-name ".json"))))))))))