diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-09-08 00:46:28 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-09-08 00:47:35 +0200 |
commit | d15c7974a2346ec0d379eba3fd60ef59012d9a80 (patch) | |
tree | 42b4fe7d8790d7bd0d51dc22f97ff8494dbfb323 /guix/android-repo-download.scm | |
parent | d2a7114e0b46fccad1e02e301c58a5124f361c5c (diff) |
android-repo-download: Remove unnecessary use of Guile-JSON.
* guix/android-repo-download.scm (android-repo-fetch)[guile-json]: Remove.
[build]: Remove GUILE-JSON from 'with-extensions'.
Diffstat (limited to 'guix/android-repo-download.scm')
-rw-r--r-- | guix/android-repo-download.scm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/guix/android-repo-download.scm b/guix/android-repo-download.scm index 9d8937ddc0..5ff3e7edd4 100644 --- a/guix/android-repo-download.scm +++ b/guix/android-repo-download.scm @@ -78,9 +78,6 @@ generic name if unset." (define zlib (module-ref (resolve-interface '(gnu packages compression)) 'zlib)) - (define guile-json - (module-ref (resolve-interface '(gnu packages guile)) 'guile-json-3)) - (define gnutls (module-ref (resolve-interface '(gnu packages tls)) 'gnutls)) @@ -102,7 +99,7 @@ generic name if unset." (define build (with-imported-modules modules - (with-extensions (list guile-json gnutls) ;for (guix swh) + (with-extensions (list gnutls) #~(begin (use-modules (guix build android-repo) (guix build utils) |