mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: rust-fixed-1: Update to 1.24.0.
* gnu/packages/crates-io.scm (rust-fixed-1): Update to 1.24.0. [arguments]: Don't skip the build. [cargo-inputs]: Add rust-arbitrary-1, rust-borsh-0.10, rust-bytemuck-1. [cargo-development-inputs]: Remove field. Change-Id: I3806de5ad2906c00e1230df8b885bd8d788239e3
This commit is contained in:
parent
f4c1aa3f41
commit
194e453135
1 changed files with 9 additions and 14 deletions
|
@ -23311,30 +23311,25 @@ (define-public rust-findshlibs-0.10
|
|||
(define-public rust-fixed-1
|
||||
(package
|
||||
(name "rust-fixed")
|
||||
(version "1.2.0")
|
||||
(version "1.24.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "fixed" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0p0v4jjgbbvp91sl8rkfqb2hldaxbzv89mzwmp8753mlrfqwn185"))))
|
||||
(base32 "0zbfwzk4mrfbawpx2ahz533bkb97jzihv7fxiyhpmwf0wzkrrih2"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-az" ,rust-az-1)
|
||||
`(#:cargo-inputs
|
||||
(("rust-arbitrary" ,rust-arbitrary-1)
|
||||
("rust-az" ,rust-az-1)
|
||||
("rust-borsh" ,rust-borsh-0.10)
|
||||
("rust-bytemuck" ,rust-bytemuck-1)
|
||||
("rust-half" ,rust-half-1)
|
||||
("rust-num-traits" ,rust-num-traits-0.2)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-typenum" ,rust-typenum-1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-criterion" ,rust-criterion-0.3)
|
||||
("rust-num-traits" ,rust-num-traits-0.2)
|
||||
("rust-rand" ,rust-rand-0.7)
|
||||
("rust-rand-xoshiro" ,rust-rand-xoshiro-0.4))))
|
||||
("rust-typenum" ,rust-typenum-1))))
|
||||
(home-page "https://gitlab.com/tspiteri/fixed")
|
||||
(synopsis "Rust fixed-point numbers")
|
||||
(description "This package provides fixed-point numbers in Rust.")
|
||||
|
|
Loading…
Reference in a new issue