gnu: guile-fibers: Provide correct ‘git-reference’.

This is a followup to 6a45a2aac0.

* gnu/packages/guile-xyz.scm (guile-fibers-1.4)[source]: Add missing ‘uri’
field.

Change-Id: Ie17a4e70c18c021aac9d5d88f1789c16fd4c7ad9
This commit is contained in:
Ludovic Courtès 2025-08-31 12:15:54 +02:00
parent 19f2030b3c
commit a5ff617c24
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1148,11 +1148,14 @@ is not available for Guile 2.0.")
(version "1.4.0")
(source
(origin (inherit (package-source guile-fibers-1.3))
(file-name (git-file-name name version))
(sha256
(base32
"1ryp04w6ghgdfhlv9hkwl00iv6nwnw2hj2pywlxvpp92pyxhkwpi"))
(patches '())))))
(file-name (git-file-name name version))
(uri (git-reference
(url (package-home-page guile-fibers-1.3))
(commit (string-append "v" version))))
(sha256
(base32
"1ryp04w6ghgdfhlv9hkwl00iv6nwnw2hj2pywlxvpp92pyxhkwpi"))
(patches '())))))
(define-public guile-fibers guile-fibers-1.4)