"Jan (janneke) Nieuwenhuizen" skribis: > This fixes > > guix offload: error: exception occurred on remote host 'localhost': (%exception #>) > > * gnu/packages/guile.scm (guile-sqlite3)[inputs]: Use sqlite/hurd instead of > sqlite. > --- > gnu/packages/guile.scm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm > index a32bd33293..c651e2427a 100644 > --- a/gnu/packages/guile.scm > +++ b/gnu/packages/guile.scm > @@ -665,7 +665,7 @@ Guile's foreign function interface.") > ("pkg-config" ,pkg-config))) > (inputs > `(("guile" ,guile-3.0) > - ("sqlite" ,sqlite))) > + ("sqlite" ,sqlite/hurd))) This should be guarded by ‘if (hurd-target?)’, right? Ludo’.