guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 7bae542dc3886274c996fdc0a68ded4a0e7a43b1
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Tue Nov 25 14:47:23 2025 +0100
gnu: waypipe: Fix build.
* gnu/packages/freedesktop.scm (waypipe)[#:phases]: Wrap in with-extensions
to
add cargo-guile-json.
---
gnu/packages/freedesktop.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 10107356c8..09a68cad0e 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -3474,7 +3474,8 @@ notifies the user using any notification daemon
implementing
(guix build meson-build-system)
(guix build utils))
#:phases
- #~(modify-phases %standard-phases
+ (with-extensions (list (cargo-guile-json))
+ #~(modify-phases %standard-phases
(add-after 'unpack 'prepare-cargo-build-system
(lambda args
(for-each
@@ -3484,7 +3485,7 @@ notifies the user using any notification daemon
implementing
'(unpack-rust-crates
configure
check-for-pregenerated-files
- patch-cargo-checksums)))))
+ patch-cargo-checksums))))))
#:configure-flags
#~(list "-Dwith_lz4=enabled"
"-Dwith_vaapi=enabled"