mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 23:28:29 +01:00
gnu: Add rust-num-integer.
* gnu/packages/crates-io.scm (rust-num-integer): New variable.
This commit is contained in:
parent
03551c17de
commit
fc4a035445
1 changed files with 26 additions and 0 deletions
|
@ -404,6 +404,32 @@ (define-public rust-md5
|
|||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-num-integer
|
||||
(package
|
||||
(name "rust-num-integer")
|
||||
(version "0.1.41")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "num-integer" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"02dwjjpfbi16c71fq689s4sw3ih52cvfzr5z5gs6qpr5z0g58pmq"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-num-traits" ,rust-num-traits))
|
||||
#:cargo-development-inputs
|
||||
(("rust-autocfg" ,rust-autocfg))))
|
||||
(home-page "https://github.com/rust-num/num-integer")
|
||||
(synopsis "Integer traits and functions")
|
||||
(description "Integer traits and functions.")
|
||||
;; Dual licensed.
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-num-traits
|
||||
(package
|
||||
(name "rust-num-traits")
|
||||
|
|
Loading…
Reference in a new issue