diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-06-13 00:24:20 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-06-13 00:38:05 +0200 |
commit | 992987bf484d1787b55772bcf3265b56c4109ba1 (patch) | |
tree | 8e2120c5c12864224b1f71cdd1b20ed9540b2167 /gnu/packages/rust-apps.scm | |
parent | 8a4fb595e8728aafa2b8d82b79dc7283f31774fc (diff) | |
download | guix-992987bf484d1787b55772bcf3265b56c4109ba1.tar.gz guix-992987bf484d1787b55772bcf3265b56c4109ba1.zip |
gnu: ripgrep: Update to 13.0.0.
* gnu/packages/rust-apps.scm (ripgrep): Update to 13.0.0.
[arguments]<#:tests?>: Enable tests again.
<#:cargo-development-inputs>: Add rust-walkdir.
Diffstat (limited to 'gnu/packages/rust-apps.scm')
-rw-r--r-- | gnu/packages/rust-apps.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index 709a75f36c..8048ccc1d6 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -379,7 +379,7 @@ characters, ASCII whitespace characters, other ASCII characters and non-ASCII.") (define-public ripgrep (package (name "ripgrep") - (version "12.1.1") + (version "13.0.0") (source (origin (method url-fetch) @@ -388,13 +388,13 @@ characters, ASCII whitespace characters, other ASCII characters and non-ASCII.") (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1grfi0j9zczzipipc21lkdbqmd2lvy2wlqy65fy4sckqvix5amdr")))) + "1gv4imhjgxmyxaa996yshcjlakmrjw9pf4rycp90pq675cn9sz7k")))) (build-system cargo-build-system) (arguments ;; XXX: Upgrading rust-bstr-0.2 from 0.2.12 to 0.2.15 introduced 11 test ;; failures. Skip tests for now. Check again at next bstr or ripgrep ;; upgrade. - `(#:tests? #false + `(#:tests? #t #:cargo-inputs (("rust-bstr" ,rust-bstr-0.2) ("rust-clap" ,rust-clap-2) @@ -409,7 +409,8 @@ characters, ASCII whitespace characters, other ASCII characters and non-ASCII.") ("rust-termcolor" ,rust-termcolor-1)) #:cargo-development-inputs (("rust-serde" ,rust-serde-1) - ("rust-serde-derive" ,rust-serde-derive-1)) + ("rust-serde-derive" ,rust-serde-derive-1) + ("rust-walkdir" ,rust-walkdir-2)) #:modules ((ice-9 match) (guix build cargo-build-system) (guix build utils)) @@ -422,8 +423,8 @@ characters, ASCII whitespace characters, other ASCII characters and non-ASCII.") (match (find-files "target" "^rg\\.1$") ((manpage) (install-file manpage (string-append - (assoc-ref outputs "out") - "/share/man/man1")))) + (assoc-ref outputs "out") + "/share/man/man1")))) #t))) #:features '("pcre2"))) (native-inputs |