mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add rust-obj-0.9.
* gnu/packages/crates-io.scm (rust-obj-0.9): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
341069bac6
commit
2a75243042
1 changed files with 22 additions and 0 deletions
|
@ -9759,6 +9759,28 @@ (define-public rust-numtoa-0.1
|
|||
"This package can convert numbers into stack-allocated byte arrays.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-obj-0.9
|
||||
(package
|
||||
(name "rust-obj")
|
||||
(version "0.9.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "obj" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"10z1r2r0xyhr4j1n07135kz4bc0zhqy98vabs99vz0x171bi8gy0"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-genmesh" ,rust-genmesh-0.6))))
|
||||
(home-page "https://github.com/kvark/obj")
|
||||
(synopsis "Package for loading Wavefront .obj files")
|
||||
(description
|
||||
"This package provides a package for loading Wavefront @code{.obj} files.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public rust-objc-0.2
|
||||
(package
|
||||
(name "rust-objc")
|
||||
|
|
Loading…
Reference in a new issue