diff options
| author | Hugo Buddelmeijer <hugo@buddelmeijer.nl> | 2026-01-14 23:19:39 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-16 20:13:29 +0100 |
| commit | cfc5ec77a72d4e4d04d4e93aa8dee8462baa2cf7 (patch) | |
| tree | d20c930f036165f8d283f062d85319287c8355b4 /gnu | |
| parent | 044108d022c7646610fb520948d481814ed1d922 (diff) | |
gnu: guile-2.2.4: Fix build by using libxcrypt-without-failure-tokens.
* gnu/packages/guile.scm (guile-2.2.4): Use libxcrypt-without-failure-tokens.
Change-Id: I91d4d7287636f34aa64ce8d47736b14c311b7a62
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Merges: #5624
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/guile.scm | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 2980b46f2b9..8f138c24bd7 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -335,18 +335,21 @@ without requiring the source code to be rewritten.") (files '("lib/guile/2.2/site-ccache"))))))) (define-public guile-2.2.4 - ;; This has no dependencies, but is used in (guix quirks). + ;; guile-2.2.4 has no dependents, 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")))))) + (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")))) + ;; libxcrypt-without-failure-tokens uses --disable-failure-tokens, which is + ;; necessary for the "crypt: glibc EINVAL" test of guile-2.2.4. + (inputs (modify-inputs (package-inputs guile-2.2) + (replace "libxcrypt" libxcrypt-without-failure-tokens))))) (define-public guile-3.0 ;; This is the latest Guile stable version. |
