me
/
guix
Archived
1
0
Fork 0

gnu: Add alembic.

* gnu/packages/graphics.scm (alembic): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Vinicius Monego 2021-12-27 02:22:34 +00:00 committed by Nicolas Goaziou
parent 3690f6c7a9
commit 5d014c696f
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 24 additions and 0 deletions

View File

@ -936,6 +936,30 @@ applications, full-screen applications, and embedded platforms without standard
operating system features.") operating system features.")
(license license:expat))) ; some examples/ use the zlib licence (license license:expat))) ; some examples/ use the zlib licence
(define-public alembic
(package
(name "alembic")
(version "1.8.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/alembic/alembic")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0glfx3cm7r8zn3cn7j4x4ch1ab6igfis0i2lcy23jc56q87r8yj2"))))
(build-system cmake-build-system)
(arguments
`(#:configure-flags (list "-DUSE_HDF5=ON")))
(inputs
(list hdf5 imath zlib))
(home-page "http://www.alembic.io/")
(synopsis "Framework for storing and sharing scene data")
(description "Alembic is a computer graphics interchange framework. It
distills complex, animated scenes into a set of baked geometric results.")
(license license:bsd-3)))
(define-public ogre (define-public ogre
(package (package
(name "ogre") (name "ogre")