l...@gnu.org (Ludovic Courtès) writes: > taylanbayi...@gmail.com (Taylan Ulrich "Bayırlı/Kammer") skribis: > >> compiling >> '/gnu/store/dbkpm8rqjz096w0bchmnlj8gw15q2riy-guix-latest/guix/scripts/environment.scm'... >> Backtrace: >> In ice-9/boot-9.scm: >> 2401: 19 [save-module-excursion #<procedure 4dd6ea0 at >> ice-9/boot-9.scm:3066:17 ()>] >> 3085: 18 [#<procedure 4dd6ea0 at ice-9/boot-9.scm:3066:17 ()>] >> In unknown file: >> ?: 17 [primitive-load-path "gnu/packages/cross-base" ...] >> In ice-9/eval.scm: >> 505: 16 [#<procedure 79a6a0 at ice-9/eval.scm:499:4 (exp)> (define-module # >> # ...)] >> In ice-9/psyntax.scm: >> 1106: 15 [expand-top-sequence ((define-module # # # ...)) () ((top)) ...] >> 989: 14 [scan ((define-module (gnu packages cross-base) #:use-module ...)) >> () ...] >> 279: 13 [scan ((#(syntax-object let # ...) (#) (# #) ...)) () ...] >> In ice-9/eval.scm: >> 411: 12 [eval # ()] >> In ice-9/boot-9.scm: >> 2951: 11 [define-module* (gnu packages cross-base) #:filename ...] >> 2926: 10 [resolve-imports ((#) (#) (#) (#) ...)] >> 2864: 9 [resolve-interface (gnu packages commencement) #:select ...] >> 2789: 8 [#<procedure 84d300 at ice-9/boot-9.scm:2777:4 (name #:optional >> autoload version #:key ensure)> # ...] >> 3065: 7 [try-module-autoload (gnu packages commencement) #f] >> 2401: 6 [save-module-excursion #<procedure 4df8900 at >> ice-9/boot-9.scm:3066:17 ()>] >> 3085: 5 [#<procedure 4df8900 at ice-9/boot-9.scm:3066:17 ()>] >> In unknown file: >> ?: 4 [primitive-load-path "gnu/packages/commencement" ...] >> In ice-9/eval.scm: >> 432: 3 Exception thrown while printing backtrace: >> ERROR: In procedure package-location: Wrong type argument: Error while >> printing exception. > > (gnu scripts environment) imports (gnu packages bash), so we end up > loading a big bunch of (gnu packages …) modules. > > The problem is that (gnu packages commencement) refers to (gnu packages > bash) from its top-level. But here, we are loading (gnu packages bash) > first, which somehow entails loading (gnu packages cross-base), which > loads (gnu packages commencement), which sees a (gnu packages bash) > module containing zero bindings. > > What’s unclear to me though is why (gnu packages cross-base) gets loaded > in the first place. > > Could you investigate in that direction?
It seems to be (guix scripts environment) -> (gnu system linux-container) -> (gnu system) -> (gnu packages firmware) -> (gnu packages cross-base) It would be amazing if we could easily create graphs of Guile modules... Taylan