This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 12197aa009 gnu: zola: Explicitly install the binary.
12197aa009 is described below
commit 12197aa0091c042602f07072b775e20ea3fbef3b
Author: Nilesh Patra <[email protected]>
AuthorDate: Sat Nov 22 21:49:49 2025 +0530
gnu: zola: Explicitly install the binary.
* gnu/packages/rust-apps.scm (zola)[arguments]<#:phases>{install}:
Replace by phase copying the executable.
Fixes: guix/guix#4371
Change-Id: I9da509650ca80e96c0a41c623eada1ad8a76dafb
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/rust-apps.scm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index 74cf1e7651..91897b99b8 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -4154,6 +4154,10 @@ and users are in full control of their data and
workflow.")
(ice-9 match))
#:phases
#~(modify-phases %standard-phases
+ (replace 'install
+ (lambda _
+ (let ((bin (string-append #$output "/bin")))
+ (install-file "target/release/zola" bin))))
(add-after 'install 'install-completions
(lambda* (#:key native-inputs #:allow-other-keys)
(for-each