mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -05:00
gnu: Add rust-cordic-0.1.
* gnu/packages/crates-io.scm (rust-cordic-0.1): New variable.
This commit is contained in:
parent
70c2f95f80
commit
9c605ee3be
1 changed files with 23 additions and 0 deletions
|
@ -4135,6 +4135,29 @@ (define-public rust-conv-0.3
|
|||
semantics than those provided by @code{as} or @code{From}/@code{Into}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-cordic-0.1
|
||||
(package
|
||||
(name "rust-cordic")
|
||||
(version "0.1.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "cordic" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"13zvqn6c8d8lp18p9ik10q100wfsyv2m2n4fca16laq3yw7r231m"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t ; rust-fixed fails to build
|
||||
#:cargo-inputs (("rust-fixed" ,rust-fixed-1))))
|
||||
(home-page "https://github.com/sebcrozet/cordic")
|
||||
(synopsis "Special functions for fixed-point numbers using the CORDIC method")
|
||||
(description "This package provides special functions for fixed-point
|
||||
numbers using the CORDIC method.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public rust-core-arch-0.1
|
||||
(package
|
||||
(name "rust-core-arch")
|
||||
|
|
Loading…
Reference in a new issue