From 7bae542dc3886274c996fdc0a68ded4a0e7a43b1 Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Tue, 25 Nov 2025 14:47:23 +0100 Subject: [PATCH] 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 10107356c85bda2b3c571d952e47f073890cd91a..09a68cad0e119224d9d1447350735c2971192d23 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"