diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-10-11 14:44:46 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-10-12 17:00:52 +0300 |
commit | daf38746df935d019c3dcdfdc73bd66513c80daa (patch) | |
tree | 3034b09656cdf4f24d94a98a41b898faf88156ca /gnu/packages | |
parent | b802c104de0cde1cde85607983ae0c702dcc1354 (diff) | |
download | guix-daf38746df935d019c3dcdfdc73bd66513c80daa.tar.gz guix-daf38746df935d019c3dcdfdc73bd66513c80daa.zip |
gnu: ripgrep: Prepare for cross-compiling.
* gnu/packages/rust-apps.scm (ripgrep) [native-inputs]: Move pcre2 ...
[inputs]: ... to here.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/rust-apps.scm | 4 |
1 files changed, 3 insertions, 1 deletions
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 |