diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-02-08 10:27:10 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:58:42 +0200 |
commit | 8949fb9a8768f7371f5614fe4e4384f6fac5b1c8 (patch) | |
tree | 1bad6840dd00e2bca807b4da11d981f402c002e5 /gnu/packages/crates-io.scm | |
parent | 27ddd4c52128e077fa95d799ade3f1f48d298f4f (diff) |
gnu: rust-scan-fmt-0.2: Update to 0.2.6.
* gnu/packages/crates-io.scm (rust-scan-fmt-0.2): Update to 0.2.6.
[arguments]: Don't skip the build.
Change-Id: If720882971d248a1719dc33401d16dd1e10b2a00
Diffstat (limited to 'gnu/packages/crates-io.scm')
-rw-r--r-- | gnu/packages/crates-io.scm | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index cccb4e3434..65929125ca 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -56476,25 +56476,21 @@ encodable types.") (define-public rust-scan-fmt-0.2 (package (name "rust-scan-fmt") - (version "0.2.5") + (version "0.2.6") (source (origin (method url-fetch) (uri (crate-uri "scan_fmt" version)) - (file-name - (string-append name "-" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 - "1gmaa07z8bkkdv5xhq2lrgml6ri7fqyyrjpiks3phmpmq3p8d0i4")))) + (base32 "0j0jb1dsa8zjpnc875wy72190zlyngvl62mfv8pqwal8vfjv0lqb")))) (build-system cargo-build-system) (arguments - `(#:skip-build? #t - #:cargo-inputs + `(#:cargo-inputs (("rust-regex" ,rust-regex-1)))) (home-page "https://github.com/wlentz/scan_fmt") (synopsis "Simple scanf()-like input for Rust") - (description - "This package provides a simple scanf()-like input for Rust") + (description "This package provides a simple scanf()-like input for Rust.") (license license:expat))) (define-public rust-sce-0.1 |