diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-01-31 00:07:06 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:44:46 +0200 |
commit | 84728d5ba408c11344f78a6da50fd720d74e3c0a (patch) | |
tree | 5f03760563e687179744a7e28bc2355198eb135e /gnu/packages/plan9.scm | |
parent | a9bd08f8f5012628a0f3c02e3cdb683c5ecec5b1 (diff) | |
download | guix-84728d5ba408c11344f78a6da50fd720d74e3c0a.tar guix-84728d5ba408c11344f78a6da50fd720d74e3c0a.tar.gz |
gnu: Do not eagerly load (gnu packages commencement).
As its top comment says, this module is not meant to be imported to avoid
circular module dependencies.
* gnu/packages/chicken.scm (chicken) [propagated-inputs]: Resolve
gcc-toolchain lazily.
* gnu/packages/plan9.scm (plan9port): Likewise.
* gnu/packages/raspberry-pi.scm (raspi-arm64-chainloader)
[native-inputs]: Resolve ld-wrapper lazily.
Change-Id: Ie9859046ed32b67dc53bcc5444d6ae162e5d4022
Diffstat (limited to 'gnu/packages/plan9.scm')
-rw-r--r-- | gnu/packages/plan9.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/plan9.scm b/gnu/packages/plan9.scm index 862eeb9802..cb170c76ac 100644 --- a/gnu/packages/plan9.scm +++ b/gnu/packages/plan9.scm @@ -26,7 +26,6 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages base) #:use-module (gnu packages bash) - #:use-module (gnu packages commencement) #:use-module (gnu packages fontutils) #:use-module (gnu packages freedesktop) #:use-module (gnu packages linux) @@ -180,7 +179,9 @@ reconstruct a Plan 9 terminal-like experience from a non-Plan 9 system.") fontconfig libx11 libxext libxt)) ;; Propagate gcc-toolchain because some programs, like the 9c compiler, ;; are just aliased scripts to gcc equivalents. - (propagated-inputs (list gcc-toolchain)) + (propagated-inputs (list (module-ref (resolve-interface + '(gnu packages commencement)) + 'gcc-toolchain))) (home-page "https://9fans.github.io/plan9port/") (synopsis "Port of many Plan 9 libraries and programs") (description |