2021-01-19 09:50:56 +03:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, pkg-config, ispc, tbb, glfw,
|
2020-10-06 17:00:14 +03:00
|
|
|
openimageio, libjpeg, libpng, libpthreadstubs, libX11, glib }:
|
2020-09-18 15:12:27 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "embree";
|
2021-05-09 06:39:33 +03:00
|
|
|
version = "3.13.0";
|
2020-09-18 15:12:27 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "embree";
|
|
|
|
repo = "embree";
|
|
|
|
rev = "v${version}";
|
2021-05-09 06:39:33 +03:00
|
|
|
sha256 = "sha256-w93GYslQRg0rvguMKv/CuT3+JzIis2CRbY9jYUFKWOM=";
|
2020-09-18 15:12:27 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
# Fix duplicate /nix/store/.../nix/store/.../ paths
|
|
|
|
sed -i "s|SET(EMBREE_ROOT_DIR .*)|set(EMBREE_ROOT_DIR $out)|" \
|
|
|
|
common/cmake/embree-config.cmake
|
|
|
|
sed -i "s|$""{EMBREE_ROOT_DIR}/||" common/cmake/embree-config.cmake
|
2020-10-06 17:00:14 +03:00
|
|
|
substituteInPlace common/math/math.h --replace 'defined(__MACOSX__) && !defined(__INTEL_COMPILER)' 0
|
|
|
|
substituteInPlace common/math/math.h --replace 'defined(__WIN32__) || defined(__FreeBSD__)' 'defined(__WIN32__) || defined(__FreeBSD__) || defined(__MACOSX__)'
|
2020-09-18 15:12:27 +03:00
|
|
|
'';
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DEMBREE_TUTORIALS=OFF"
|
|
|
|
"-DEMBREE_RAY_MASK=ON"
|
|
|
|
];
|
|
|
|
|
2020-10-06 17:00:14 +03:00
|
|
|
|
2021-01-19 09:50:56 +03:00
|
|
|
nativeBuildInputs = [ ispc pkg-config cmake ];
|
2020-10-06 17:00:14 +03:00
|
|
|
buildInputs = [ tbb glfw openimageio libjpeg libpng libX11 libpthreadstubs ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ glib ];
|
2020-09-18 15:12:27 +03:00
|
|
|
|
2021-01-21 20:00:13 +03:00
|
|
|
meta = with lib; {
|
2020-09-18 15:12:27 +03:00
|
|
|
description = "High performance ray tracing kernels from Intel";
|
|
|
|
homepage = "https://embree.github.io/";
|
|
|
|
maintainers = with maintainers; [ hodapp gebner ];
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|