Maxime Devos schreef op za 19-03-2022 om 23:28 [+0100]: > The only use of 'module-re-export!' in current Guix is > >   (module-re-export! (current-module) '(delete) #:replace? #t) > > from (guix packages). > > Probably the issue is that 'module-re-export!' did not always support > #:replace?, and that 1.1.0 uses an old version of Guile with the old > calling convention when computing the derivation ... (I don't know > if these details are actually true, it's a bit of a guess.) The extra argument of module-re-export! was introduced with commit cf08dbdc189f0005cab6f2ec7b23ed9d150ec43d in Guile. It seems like the first Guile version after this commit is v2.2.7. Let's try making the '#:replace? ...' conditional upon Guile>2.2 ...