diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-14 23:19:31 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-07 15:00:20 +0100 |
commit | e8de49e92466f78354b12e3ebfd6f9f4ef412154 (patch) | |
tree | 83d7c4d57e8970a30a8ac27ff38e3b1c12f3092c | |
parent | d3af95cfda5e0743cb03fe725d5071214d150873 (diff) |
gnu: fish: Extend with (cargo-guile-json).
* gnu/packages/shells.scm (fish)[arguments]
<#:phases>: Extend with (cargo-guile-json).
Change-Id: I393ff7ab1df759efbe22ce1b8c9c5dba1661bc5d
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/shells.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index 64e53fc6e5..d240f9b7a7 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -170,6 +170,7 @@ direct descendant of NetBSD's Almquist Shell (@command{ash}).") ((guix build gnu-build-system) #:prefix gnu:) (guix build utils)) #:phases + (with-extensions (list (cargo-guile-json)) #~(modify-phases %standard-phases (add-after 'unpack 'use-guix-vendored-dependencies (lambda _ @@ -300,8 +301,7 @@ direct descendant of NetBSD's Almquist Shell (@command{ash}).") " set -e fish_function_path\n" "end\n") port) - (close-port port)) - #t))))) + (close-port port)))))))) (synopsis "The friendly interactive shell") (description "Fish (friendly interactive shell) is a shell focused on interactive use, |