diff options
author | Ludovic Courtès <ludo@gnu.org> | 2025-05-05 19:06:00 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-05-06 10:07:08 +0200 |
commit | b4693b9d4e131a96e8491651914d6c47d7eca7af (patch) | |
tree | 70606889cd0024192ee34e6d7ac2be5ba11037b8 | |
parent | e4458ee85aa11e245dd34698f0c83494a9c2b7e7 (diff) |
gnu: gash: Update to 0.3.1.core-packages-team-old3
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
-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 7de5605787..1ad246eead 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -972,14 +972,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)) |