diff options
author | John Soo <jsoo1@asu.edu> | 2019-12-19 10:24:03 -0800 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-01-02 20:16:54 +0200 |
commit | 61a3fc72cdf6e2774f4b2ebbe9ea8aaf0602915d (patch) | |
tree | 3560db27cbf6ff77b2995a0c8913458b9e8c8ca8 /gnu | |
parent | 0b85a418a77ef1f2098d2fcd4eb3e36652da17b7 (diff) | |
download | patches-61a3fc72cdf6e2774f4b2ebbe9ea8aaf0602915d.tar patches-61a3fc72cdf6e2774f4b2ebbe9ea8aaf0602915d.tar.gz |
gnu: Add rust-rustfix-0.4.
* gnu/packages/crates-io.scm (rust-rustfix-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 6f4bac13ee..7002e957b8 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -2773,6 +2773,40 @@ cross platform API.") (license (list license:asl2.0 license:expat)))) +(define-public rust-rustfix-0.4 + (package + (name "rust-rustfix") + (version "0.4.6") + (source + (origin + (method url-fetch) + (uri (crate-uri "rustfix" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "01zn0ysnass3mmrhxk90584y713vjfq1x97mi4saac99g9vsql3i")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-failure" ,rust-failure-0.1) + ("rust-log" ,rust-log-0.4) + ("rust-serde" ,rust-serde-1.0) + ("rust-serde-json" ,rust-serde-json-1.0)) + #:cargo-development-inputs + (("rust-difference" ,rust-difference-2.0) + ("rust-duct" ,rust-duct-0.13) + ("rust-env-logger" ,rust-env-logger-0.6) + ("rust-log" ,rust-log-0.4) + ("rust-proptest" ,rust-proptest-0.9) + ("rust-tempdir" ,rust-tempdir-0.3)))) + (home-page "https://github.com/rust-lang/rustfix") + (synopsis "Automatically apply the suggestions made by rustc") + (description + "Automatically apply the suggestions made by rustc.") + (license (list license:expat license:asl2.0)))) + (define-public rust-fixedbitset-0.1 (package (name "rust-fixedbitset") |