diff options
| author | Zhu Zihao <all_but_last@163.com> | 2026-03-04 22:57:21 +0800 |
|---|---|---|
| committer | John Kehayias <john@guixotic.coop> | 2026-03-04 11:57:02 -0500 |
| commit | 53306de04bbe1ae0f19e91166ee3ff6463a089d5 (patch) | |
| tree | f9c30649f7112c5409354bb4988130611b4b753e /gnu | |
| parent | 22ae76cfcef2bf306f728dbc35b6eabc52065b82 (diff) | |
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 <john@guixotic.coop>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/rust-apps.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index dcb3e0236f2..8a54f12b8b4 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) |
