diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2025-05-05 19:06:00 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:32 +0200 |
| commit | b41738654bbf4ccf76da8e44920a4d032c680815 (patch) | |
| tree | 0df5e98c2c1f001e1a29528a8d94cc2686623f2e /gnu | |
| parent | a358889d80b2b56a78f8dcacedec9cb696c70044 (diff) | |
gnu: gash: Update to 0.3.1.
Fixes <https://issues.guix.gnu.org/75658>.
Fixes a bug whereby Gash sub-shells would randomly crash, typically when
running ‘configure’ scripts, with:
ERROR: In procedure fdopen:
ERROR: In procedure scm_fdes_to_port: Bad file descriptor
The effect is that ‘configure’ would sometimes make wrong guesses,
eventually leading to build failures.
* gnu/packages/shells.scm (gash): Update to 0.3.1.
Change-Id: I5fd48a651601b3c28fbed88dbffaefdef987f1cd
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/shells.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index d2d814a72fb..2a1fbe0a6cb 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -973,14 +973,17 @@ JavaScript users who avoid shell.") (define-public gash (package (name "gash") - (version "0.3.0") + (version "0.3.1") (source + ;; Use a copy built from the unofficial 'EBADF-fixes' branch, + ;; <https://codeberg.org/civodul/gash/commit/7c9bf2110cfe85424fba0cd14445d5f0926c3fbd>. + ;; See <https://issues.guix.gnu.org/75658>. (origin (method url-fetch) - (uri (string-append "mirror://savannah/gash/gash-" + (uri (string-append "mirror://gnu/guix/mirror/gash-" version ".tar.gz")) (sha256 (base32 - "1af2jz4a6rzsshi379wzw4b8d04zvfamdhfzip2pgmk821lyqsjl")))) + "069wizkfkkifij9n0r6fkwbgcnjyr6xvnjid11ckppx0waixc0s7")))) (build-system gnu-build-system) (native-inputs (list pkg-config)) |
