diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-04-01 22:17:02 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-04-01 22:32:28 +0200 |
commit | 77eaf5fcd1e9d64c52f6d42d44a5d1ea72344d4e (patch) | |
tree | bc7268496b6bb6af8888739588fdf078e00dc68c /gnu/packages/tex.scm | |
parent | 2743a0b28dc55837f118b87cc04aa2baf1386faf (diff) | |
download | guix-77eaf5fcd1e9d64c52f6d42d44a5d1ea72344d4e.tar guix-77eaf5fcd1e9d64c52f6d42d44a5d1ea72344d4e.tar.gz |
gnu: Fix packages that were importing Guile modules from the host.
Those packages were importing (ice-9 match) & co. from the host Guile,
which could potentially lead to different derivations depending on the
Guile in use.
Uncovered by the warning emitted by 'gexp-modules'.
* gnu/packages/admin.scm (inxi-minimal)[arguments]: Remove Guile modules
from #:modules.
* gnu/packages/dns.scm (ddclient)[arguments]: Likewise.
* gnu/packages/tex.scm (texlive-latex-koma-script)[arguments]: Likewise.
* gnu/packages/java.scm (openjdk11)[arguments]: Likewise for #:imported-modules.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d45fe3045b..ec21221ea1 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6752,8 +6752,7 @@ produce either PostScript or PDF output.") "1vz9zg7s5w52xr323zgglzprfrvba2zvyzf6b8vrdf4wdghlpv4z")))) (build-system trivial-build-system) (arguments - `(#:modules ((guix build utils) - (ice-9 match)) + `(#:modules ((guix build utils)) #:builder (begin (use-modules (guix build utils) |