Skip to content
Snippets Groups Projects
Verified Commit 3c41f899 authored by FARGES Olivier's avatar FARGES Olivier
Browse files

debug star-3d

parent 830946f8
Branches
No related tags found
No related merge requests found
(define-module (edix packages embree-edix)
#:use-module (gnu packages graphics)
#:use-module (guix packages)
#:use-module (guix git-download)
#:use-module (guix build-system gnu)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages tbb)
#:use-module (gnu packages gl)
#:use-module (guix licenses)
#:use-module (guix utils)
#:use-module (guix git-download)
#:use-module (guix build-system cmake)
#:use-module (guix packages))
(define-public embree-edix
(package
(name "embree")
(version "4.0.0")
(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 "1hqplgzsn1mp68w7wlllp9a0x54vgln6f2fvvxqvfr8wr05nzfw6"))))
(build-system cmake-build-system)
(arguments
`(#:tests? #f ; no tests (apparently)
#:configure-flags
(list
"-DEMBREE_ISPC_SUPPORT=OFF")))
(inputs
(list tbb glfw))
(home-page "https://www.embree.org/")
(synopsis "High performance ray tracing kernels")
(description
"Embree is a collection of high-performance ray tracing kernels.
Embree is meant to increase performance of photo-realistic rendering
applications.")
(license license:asl2.0)))
......@@ -13,7 +13,7 @@
#:use-module (gnu packages maths)
#:use-module (gnu packages bash)
#:use-module (gnu packages check)
#:use-module (gnu packages graphics)
#:use-module (edix packages embree-edix)
#:use-module (edix packages rsys))
......@@ -35,7 +35,7 @@
(list gcc
gfortran
bash
gnu-make rsys embree
gnu-make rsys embree-edix
))
(arguments
`(#:make-flags (list (string-append "CC=gcc" ))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment