me
/
guix
Archived
1
0
Fork 0

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>
master
Valentin Ignatev 2020-01-26 01:46:39 +03:00 committed by Efraim Flashner
parent 341069bac6
commit 2a75243042
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -9759,6 +9759,28 @@ giga, kibi.")
"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")