Le Mon, 27 Jul 2020 13:29:28 -0500, mbcladw...@stihie.net a écrit : > (inputs > `(("guile" ,guile)))
The variable that contains the latest guile package is not named guile, which explains the error you get. Although the package is named "guile" (because of its name field), the variable that contains it is guile-3.0, so use this instead: > (inputs > `(("guile" ,guile-3.0))) You'll also need pkg-config as a native-inputs, and to import the module (gnu packages pkg-config) for the variable to be defined: > (native-inputs > `(("pkg-config" ,pkg-config))) HTH!