me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-fluid-0.4.

* gnu/packages/crates-io.scm (rust-fluid-0.4): New variable.
master
Arun Isaac 2020-09-21 11:36:41 +05:30
parent 4fabe74173
commit 40b2e9052c
No known key found for this signature in database
GPG Key ID: 2E25EE8B61802BB3
1 changed files with 23 additions and 0 deletions

View File

@ -8433,6 +8433,29 @@ streams.")
"This package provides a total ordering for floating-point numbers.")
(license (list license:asl2.0 license:expat))))
(define-public rust-fluid-0.4
(package
(name "rust-fluid")
(version "0.4.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "fluid" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"04qgdc4lx934158icx9rvs0v6lyvirmb0brllvz38hj9fsaqfbsp"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-colored" ,rust-colored-1)
("rust-fluid-attributes" ,rust-fluid-attributes-0.4)
("rust-num-traits" ,rust-num-traits-0.2))))
(home-page "https://crates.io/crates/fluid")
(synopsis "Human readable test library")
(description "This package provides a human readable test library.")
(license license:asl2.0)))
(define-public rust-fluid-attributes-0.4
(package
(name "rust-fluid-attributes")