diff options
| author | Danylo Kondratiev <danylo@posteo.ie> | 2026-03-26 18:53:16 +0200 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2026-03-27 11:58:48 +0300 |
| commit | 5c8bde597597cf79a9bfd673de9e5fbd3287af3c (patch) | |
| tree | 9353b55c199d273c1607c01f182d69b660b6cd18 /gnu/packages/rust-apps.scm | |
| parent | 15b7fc7f212fd3397811e4eecf62e9b98c33179c (diff) | |
gnu: tokei: Update to 14.0.0.
* gnu/packages/rust-apps.scm (tokei): Update to 14.0.0.
[arguments]: Add cargo-test-flags.
[inputs]: Remove libgit2, add libgit2-1.8.
* gnu/packages/rust-crates.scm (lookup-cargo-inputs): Update entry for
tokei.
Change-Id: I979d4035081196bfd268fed939fc6f8d566bd76f
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages/rust-apps.scm')
| -rw-r--r-- | gnu/packages/rust-apps.scm | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index db0f263264c..bf791aab392 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -3431,21 +3431,25 @@ colorized view to stdout.") (define-public tokei (package (name "tokei") - (version "12.1.2") + (version "14.0.0") (source (origin (method url-fetch) (uri (crate-uri "tokei" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "000w549v1bpw7r57xw656p40ywf1gimvxxx5cjnri2js0xg927x4")))) + (base32 "15v7ha13w4zrr2a6vlrj641qcrczvyjhvnqf147g64n3q1spipp4")))) (build-system cargo-build-system) (arguments - `(#:install-source? #f)) - (native-inputs - (list pkg-config)) - (inputs - (cons* libgit2 openssl zlib (cargo-inputs 'tokei))) + `(#:cargo-test-flags + '("--" + ;; Tests directory not included in release. + "--skip=language::language_type::tests::lf_embedded_language_is_counted" + "--skip=language::language_type::tests::jupyter_notebook_has_correct_totals") + #:install-source? #f)) + (native-inputs (list pkg-config)) + (inputs (cons* libgit2-1.8 openssl zlib + (cargo-inputs 'tokei))) (home-page "https://tokei.rs") (synopsis "Count code, quickly") (description |
