summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorHilton Chain <hako@ultrarare.space>2026-06-16 15:02:43 +0800
committerHilton Chain <hako@ultrarare.space>2026-06-20 23:23:55 +0800
commitcacb9d2a924d4cc0201b3c9b607737e77856c12c (patch)
tree1d47070a9145354dd665d3d7675d41f450b56805 /gnu
parentc08189b404a464ae392687db17466a54797ed477 (diff)
gnu: atuin: Patch command references in shell completion to store items.
* gnu/packages/rust-apps.scm (atuin) [arguments] <#:phases>: Patch command references to store items. Merges: #9331
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/rust-apps.scm5
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index 4fdb35de24f..ca1fe487765 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -395,6 +395,11 @@ textual.")
395 "clipboard") 395 "clipboard")
396 #:phases 396 #:phases
397 #~(modify-phases %standard-phases 397 #~(modify-phases %standard-phases
398 (add-after 'unpack 'patch-references
399 (lambda _
400 (substitute* (find-files "crates/atuin/src/shell")
401 (("atuin (uuid|history|search)" all)
402 (string-append #$output "/bin/" all)))))
398 (add-before 'check 'pre-check 403 (add-before 'check 'pre-check
399 (lambda _ 404 (lambda _
400 (setenv "HOME" "/tmp"))) 405 (setenv "HOME" "/tmp")))