help-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: No Guile development packages were found.


From: Julien Lepiller
Subject: Re: No Guile development packages were found.
Date: Mon, 27 Jul 2020 22:25:21 +0200

Le Mon, 27 Jul 2020 13:29:28 -0500,
mbcladwell@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!



reply via email to

[Prev in Thread] Current Thread [Next in Thread]