mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: Add rust-plain.
* gnu/packages/crates-io.scm (rust-plain): New variable.
This commit is contained in:
parent
b275df9cd3
commit
b1c3b9e73b
1 changed files with 20 additions and 0 deletions
|
@ -432,6 +432,26 @@ (define-public rust-pin-utils
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-plain
|
||||||
|
(package
|
||||||
|
(name "rust-plain")
|
||||||
|
(version "0.2.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "plain" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"19n1xbxb4wa7w891268bzf6cbwq4qvdb86bik1z129qb0xnnnndl"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(home-page "https://github.com/randomites/plain")
|
||||||
|
(synopsis "Rust library that allows reinterpreting data safely")
|
||||||
|
(description "This package provides a small Rust library that allows users
|
||||||
|
to reinterpret data of certain types safely.")
|
||||||
|
(license (list license:asl2.0
|
||||||
|
license:expat))))
|
||||||
|
|
||||||
(define-public rust-proc-macro2
|
(define-public rust-proc-macro2
|
||||||
(package
|
(package
|
||||||
(name "rust-proc-macro2")
|
(name "rust-proc-macro2")
|
||||||
|
|
Loading…
Reference in a new issue