diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-04-22 15:20:59 +0200 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-04-23 23:39:34 -0400 |
commit | 68a4ca148b8820d424d18a200626ed00bb41543d (patch) | |
tree | 89805a46ddf95ee53b5a48ad2409fe63afd6068a | |
parent | 9406bb12ee9aa10a419eab0aa20bad3de70f9783 (diff) | |
download | guix-68a4ca148b8820d424d18a200626ed00bb41543d.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) |