[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: ripgrep: Prepare for cross-compiling.
From: |
guix-commits |
Subject: |
02/02: gnu: ripgrep: Prepare for cross-compiling. |
Date: |
Thu, 12 Oct 2023 10:05:57 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit daf38746df935d019c3dcdfdc73bd66513c80daa
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Oct 11 14:44:46 2023 +0300
gnu: ripgrep: Prepare for cross-compiling.
* gnu/packages/rust-apps.scm (ripgrep) [native-inputs]: Move pcre2 ...
[inputs]: ... to here.
---
gnu/packages/rust-apps.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index 894173b7dd..2f41ca4849 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -1043,8 +1043,10 @@ bar. It is also compatible with sway.")
"/share/man/man1"))))
#t)))
#:features '("pcre2")))
+ (inputs
+ (list pcre2))
(native-inputs
- (list asciidoc pcre2 pkg-config))
+ (list asciidoc pkg-config))
(home-page "https://github.com/BurntSushi/ripgrep")
(synopsis "Line-oriented search tool")
(description