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 53306de04b gnu: rust-xremap: Fix broken build.
53306de04b is described below
commit 53306de04bbe1ae0f19e91166ee3ff6463a089d5
Author: Zhu Zihao <[email protected]>
AuthorDate: Wed Mar 4 22:57:21 2026 +0800
gnu: rust-xremap: Fix broken build.
Fixes https://codeberg.org/guix/guix/issues/6885
* gnu/packages/rust-app.scm (rust-xremap)[arguments]<#:features>:
Use '(list) to represent empty list instead of '().
Change-Id: I97c88535c90d54491dcf9bba4d70da6c6d57b0db
Signed-off-by: John Kehayias <[email protected]>
---
gnu/packages/rust-apps.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index dcb3e0236f..8a54f12b8b 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -4274,7 +4274,7 @@ and users are in full control of their data and
workflow.")
(build-system cargo-build-system)
(arguments
(list
- #:features '()
+ #:features '(list)
#:install-source? #f
#:modules
'((guix build cargo-build-system)