3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add rust-fluid-attributes-0.4.

* gnu/packages/crates-io.scm (rust-fluid-attributes-0.4): New variable.
This commit is contained in:
Arun Isaac 2020-09-21 11:35:23 +05:30
parent bb9003c975
commit 4fabe74173
No known key found for this signature in database
GPG key ID: 2E25EE8B61802BB3

View file

@ -8433,6 +8433,31 @@ streams.")
"This package provides a total ordering for floating-point numbers.")
(license (list license:asl2.0 license:expat))))
(define-public rust-fluid-attributes-0.4
(package
(name "rust-fluid-attributes")
(version "0.4.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "fluid_attributes" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1i67vcas0gr64bc8spprlfp7m7msv1jyspghgq1q8f0qrnvy8px8"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-proc-macro2" ,rust-proc-macro2-0.4)
("rust-quote" ,rust-quote-0.6)
("rust-syn" ,rust-syn-0.15)
("rust-uuid" ,rust-uuid-0.7))))
(home-page "https://gitlab.com/Boiethios/fluid-rs/wikis")
(synopsis "Proc macro attributes for the fluid crate")
(description "This package provides proc macro attributes for the fluid
crate.")
(license license:asl2.0)))
(define-public rust-fnv-1
(package
(name "rust-fnv")