mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add rust-funty-2.
* gnu/packages/crates-io.scm (rust-funty-2): New variable.
This commit is contained in:
parent
b4cd818570
commit
12a62abbb1
1 changed files with 22 additions and 0 deletions
|
@ -22993,6 +22993,28 @@ (define-public rust-fuchsia-zircon-sys-0.3
|
|||
(description "Low-level Rust bindings for the Zircon kernel.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public rust-funty-2
|
||||
(package
|
||||
(name "rust-funty")
|
||||
(version "2.0.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "funty" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"177w048bm0046qlzvp33ag3ghqkqw4ncpzcm5lq36gxf2lla7mg6"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-development-inputs
|
||||
(("rust-static-assertions" ,rust-static-assertions-1))))
|
||||
(home-page "https://ferrilab.github.io/ferrilab")
|
||||
(synopsis "Trait generalization over the primitive types")
|
||||
(description "The funty crate (fundamental types) provides traits that
|
||||
unify the Rust non-pointer primitives. It also unifies pointers and
|
||||
references by lifting access permissions into the trait system.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-funty-1
|
||||
(package
|
||||
(name "rust-funty")
|
||||
|
|
Loading…
Reference in a new issue