me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-funty-2.

* gnu/packages/crates-io.scm (rust-funty-2): New variable.
master
Ricardo Wurmus 2023-03-22 10:10:13 +01:00 committed by Efraim Flashner
parent b4cd818570
commit 12a62abbb1
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -22993,6 +22993,28 @@ pseudorandom number generator")
(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")