me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-borsh-derive-0.10.

* gnu/packages/crates-io.scm (rust-borsh-derive-0.10): New variable.

Change-Id: Iff809bf9f4e6d109fec414c73ae0b10ab10daacc
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
VÖRÖSKŐI András 2023-11-11 16:35:14 +01:00 committed by Efraim Flashner
parent 862ec51e9b
commit 9d2e93d71d
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 24 additions and 0 deletions

View File

@ -9496,6 +9496,30 @@ programs.")
(description "Blowfish block cipher")
(license (list license:expat license:asl2.0))))
(define-public rust-borsh-derive-0.10
(package
(name "rust-borsh-derive")
(version "0.10.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "borsh-derive" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1xslbx3qj531aq8ny1bkr45ibjmpsx0szsfc57rm33akj4v62m07"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-borsh-derive-internal" ,rust-borsh-derive-internal-0.10)
("rust-borsh-schema-derive-internal" ,rust-borsh-schema-derive-internal-0.10)
("rust-proc-macro-crate" ,rust-proc-macro-crate-0.1)
("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-syn" ,rust-syn-1))))
(home-page "https://borsh.io")
(synopsis "Derive proc-macros for @code{borsh}")
(description "This crate implements derive proc-macros for @code{borsh}.")
(license license:asl2.0)))
(define-public rust-borsh-derive-internal-0.10
(package
(name "rust-borsh-derive-internal")