mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
gnu: Add embree-3.
Fixes <https://issues.guix.gnu.org/73186>. Followup to commit
31a55a652f
which updated embree; libigl needs an
older version.
* gnu/packages/engineering.scm (embree-3): New variable.
* gnu/packages/engineering.scm (libigl)[inputs]: Replace embree with embree-3
Change-Id: I8c1f038b918c8f4411fec7f53703945df6e6008a
This commit is contained in:
parent
d4869b7e43
commit
b2f5a9dd67
2 changed files with 16 additions and 1 deletions
|
@ -3845,7 +3845,7 @@ (define (fix-external-library cmake source)
|
||||||
`(("boost" ,boost)
|
`(("boost" ,boost)
|
||||||
("cgal" ,cgal)
|
("cgal" ,cgal)
|
||||||
("eigen" ,eigen)
|
("eigen" ,eigen)
|
||||||
("embree" ,embree)
|
("embree" ,embree-3)
|
||||||
("glfw" ,glfw-3.4)
|
("glfw" ,glfw-3.4)
|
||||||
("gmp" ,gmp)
|
("gmp" ,gmp)
|
||||||
("mesa" ,mesa)
|
("mesa" ,mesa)
|
||||||
|
|
|
@ -475,6 +475,21 @@ (define-public embree
|
||||||
applications.")
|
applications.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public embree-3
|
||||||
|
(package
|
||||||
|
(inherit embree)
|
||||||
|
(name "embree")
|
||||||
|
(version "3.3.15")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/embree/embree")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1kcvz7g6j56anv9zjyd3gidxl46vipw0gg82lns12m45cd43iwxm"))))))
|
||||||
|
|
||||||
(define-public openvdb
|
(define-public openvdb
|
||||||
(package
|
(package
|
||||||
(name "openvdb")
|
(name "openvdb")
|
||||||
|
|
Loading…
Reference in a new issue