Hi,
On Sat, 02 Jul 2022 at 10:18, Akib Azmain Turja <[email protected]> wrote:
> I don't know why this is occurring. "guix install curl" installs curl
> 7.79.1, but "guix install wine" tries to install curl 7.84.0, and fails.
I do not know why it fails for you. The substitute is available:
https://ci.guix.gnu.org/build/1083905/details
> Yes, "guix weather curl" says me that substitutes are available.
Hum, looking more closely,
--8<---------------cut here---------------start------------->8---
$ guix graph wine64 | grep curl
"139723464965392" [label = "[email protected]", shape = box, fontname = sans];
$ guix graph --path wine64 curl
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
--8<---------------cut here---------------end--------------->8---
but,
--8<---------------cut here---------------start------------->8---
(define-public curl
(package
(name "curl")
(version "7.79.1")
(replacement curl-7.84.0)
[...]
;; Replacement package with fixes for multiple vulnerabilities.
;; See <https://curl.se/docs/security.html>.
(define curl-7.84.0
(package
(inherit curl)
(version "7.84.0")
--8<---------------cut here---------------end--------------->8---
And I do not know exactly which ’curl’ is thus considered.
Well, in any case, it fetches the substitutes,
--8<---------------cut here---------------start------------->8---
$ guix time-machine --commit=81cf674 \
-- build --no-grafts \
-e '(@@ (gnu packages curl) curl-7.84.0)'
--8<---------------cut here---------------end--------------->8---
and it builds fine for me,
--8<---------------cut here---------------start------------->8---
$ guix time-machine --commit=81cf674 \
-- build --no-grafts \
-e '(@@ (gnu packages curl) curl-7.84.0)' \
--check
--8<---------------cut here---------------end--------------->8---
What is the output of these two commands for you?
Idem for the other [email protected].
Cheers,
simon