diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-05-22 17:11:33 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-08-14 19:37:56 +0300 |
commit | 6979b8a6f05b59223271484676aff2a8d627b692 (patch) | |
tree | ea9d5038d9742e628e23a0f90ac93c1494209785 /gnu/packages | |
parent | bf3279cf3c186ffd678ff5a3fc5cf0f14c4c3c3b (diff) | |
download | guix-6979b8a6f05b59223271484676aff2a8d627b692.tar.gz |
gnu: Add rust-smart-default-0.7.
* gnu/packages/crates-io.scm (rust-smart-default-0.7): New variable. ((rust-smart-default-0.6): Inherit from rust-smart-default-0.7.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/crates-io.scm | 34 |
1 files changed, 26 insertions, 8 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index ec0d5e5b87..973d8885bd 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -59345,8 +59345,33 @@ stack.") #:cargo-development-inputs (("rust-bincode" ,rust-bincode-1)))))) +(define-public rust-smart-default-0.7 + (package + (name "rust-smart-default") + (version "0.7.1") + (source (origin + (method url-fetch) + (uri (crate-uri "smart-default" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1hgzs1250559bpayxmn46gzas5ycqn39wkf4srjgqh4461k1ic0f")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-2)))) + (home-page "https://github.com/idanarye/rust-smart-default") + (synopsis "Custom-derive macro for Default with more control on the fields") + (description + "This package provides a custom-derive macro for Default with more +control on the fields.") + (license license:expat))) + (define-public rust-smart-default-0.6 (package + (inherit rust-smart-default-0.7) (name "rust-smart-default") (version "0.6.0") (source @@ -59356,19 +59381,12 @@ stack.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1xnvxz9wilj4d5b8kg4wbs0yk48wm41fnwkmn3p6wi9rafhmjdhk")))) - (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-proc-macro2" ,rust-proc-macro2-1) ("rust-quote" ,rust-quote-1) - ("rust-syn" ,rust-syn-1)))) - (home-page "https://github.com/idanarye/rust-smart-default") - (synopsis "Custom-derive macro for Default with more control on the fields") - (description - "This package provides a custom-derive macro for Default with more -control on the fields.") - (license license:expat))) + ("rust-syn" ,rust-syn-1)))))) (define-public rust-smartstring-1 (package |