diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2025-09-02 09:50:12 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2025-09-02 09:50:12 +0300 |
commit | 8e6540e87d147a977d2e9b20771140055571a0ee (patch) | |
tree | 8b234d8336d26a78de48b8a9fbe1e48240757e72 | |
parent | bf35d9cd09c4d7dee2a9739084dc21539e98f0c3 (diff) | |
download | guix-8e6540e87d147a977d2e9b20771140055571a0ee.tar guix-8e6540e87d147a977d2e9b20771140055571a0ee.tar.gz |
gnu: niri: Fix shell completions when cross-compiling.
* gnu/packages/wm.scm (niri)[arguments]: When cross-compiling find the
niri binary to create the shell completions.
Change-Id: I0a2b230f90b0cec55f5be54e98f20735407ec453
-rw-r--r-- | gnu/packages/wm.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 63796fe5cd..82b7db7f87 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -1990,7 +1990,7 @@ limited size and a few external dependencies. It is configurable via (mkdir-p (in-vicinity #$output (dirname path))) (let ((binary (if #$(%current-target-system) - (search-input-file native-inputs "bin/nir") + (search-input-file native-inputs "bin/niri") (in-vicinity #$output "bin/niri")))) (with-output-to-file (in-vicinity #$output path) (lambda _ |