mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
gnu: Add vhacd.
* gnu/packages/graphics.scm (vhacd): New variable. Change-Id: If26793a7ff9fcb77174494f01d884432599e395a
This commit is contained in:
parent
6ad790907e
commit
c836e99311
1 changed files with 25 additions and 0 deletions
|
|
@ -3507,3 +3507,28 @@ meshes for these stages, as well as algorithms to reduce the mesh complexity
|
|||
and storage overhead.")
|
||||
(home-page "https://github.com/zeux/meshoptimizer")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public vhacd
|
||||
(package
|
||||
(name "vhacd")
|
||||
(version "4.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/kmammou/v-hacd")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1v462m6yyhrfpaa5bph1rma6c0yhnkadmggs5l3jxi746z2238qs"))))
|
||||
(build-system copy-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:install-plan
|
||||
#~`(("include/VHACD.h" "include/"))))
|
||||
(synopsis "Approximate convex decomposition")
|
||||
(description
|
||||
"This is a headers-only library that allows approximate convex decomposition
|
||||
of a 3D surface.")
|
||||
(home-page "https://github.com/kmammou/v-hacd")
|
||||
(license license:bsd-3)))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue