diff options
| author | Andreas Enge <andreas@enge.fr> | 2025-08-21 12:05:31 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-08-21 12:06:40 +0200 |
| commit | 7b45058bec3a9ded802bb22bd9c7d1a4a1825214 (patch) | |
| tree | e31be865ee4a5e031e0947efbf2fda198573f516 | |
| parent | 6d8e329b3f8f254a7ad9cdd60974acd0060db4dd (diff) | |
Revert "gnu: Remove guile-2.2.4."
This reverts commit b1ca13ffb8728fec9e0dc42ba5f178de37cc68d9.
See new comments in the code.
Fixes: guix/guix#2149
Change-Id: Ic58872d2e3289a1f8fda8bc601bcfa007547f2a4
| -rw-r--r-- | gnu/packages/guile.scm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index c068945441a..55c4ad69dce 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -334,6 +334,20 @@ without requiring the source code to be rewritten.") (variable "GUILE_LOAD_COMPILED_PATH") (files '("lib/guile/2.2/site-ccache"))))))) +(define-public guile-2.2.4 + ;; This has no dependencies, but is used in (guix quirks). + ;; Do not remove! + (package + (inherit guile-2.2) + (version "2.2.4") + (source (origin + (inherit (package-source guile-2.2)) + (uri (string-append "mirror://gnu/guile/guile-" version + ".tar.xz")) + (sha256 + (base32 + "07p3g0v2ba2vlfbfidqzlgbhnzdx46wh2rgc5gszq1mjyx5bks6r")))))) + (define-public guile-3.0 ;; This is the latest Guile stable version. (package |
