diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-04-22 15:20:59 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-04-23 00:32:30 +0200 |
commit | 34db952a4b655cca9d5dc7158e9a8552d389cbcf (patch) | |
tree | 098e35a0cf1581968429bad4186a27131c251d21 | |
parent | 55e90e555857afdcca90b42115b9de8539e4f4ac (diff) | |
download | guix-34db952a4b655cca9d5dc7158e9a8552d389cbcf.tar.gz |
import: go: Autoload (htmlprag).
Fixes <https://bugs.gnu.org/47924>. Reported by Carl Dong <contact@carldong.me>. * guix/import/go.scm: Autoload (htmlprag).
-rw-r--r-- | guix/import/go.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/import/go.scm b/guix/import/go.scm index 71f2316719..d110954664 100644 --- a/guix/import/go.scm +++ b/guix/import/go.scm @@ -33,7 +33,7 @@ #:use-module (guix http-client) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix memoization) - #:use-module (htmlprag) ;from Guile-Lib + #:autoload (htmlprag) (html->sxml) ;from Guile-Lib #:autoload (guix git) (update-cached-checkout) #:autoload (gcrypt hash) (open-hash-port hash-algorithm sha256) #:autoload (guix serialization) (write-file) |