Merge pull request #42334 from Hodapp87/luxcorerender_pr

luxcorerender: init at 2.0, embree: init at 2.17.4
This commit is contained in:
Matthew Bauer
2018-06-28 22:19:50 -04:00
committed by GitHub
3 changed files with 118 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub, cmake, pkgconfig, ispc, tbb, glfw,
openimageio, libjpeg, libpng, libpthreadstubs, libX11
}:
stdenv.mkDerivation rec {
name = "embree-${version}";
version = "2.17.4";
src = fetchFromGitHub {
owner = "embree";
repo = "embree";
rev = "v2.17.4";
sha256 = "0q3r724r58j4b6cbyy657fsb78z7a2c7d5mwdp7552skynsn2mn9";
};
cmakeFlags = [ "-DEMBREE_TUTORIALS=OFF" ];
enableParallelBuilding = true;
buildInputs = [ pkgconfig cmake ispc tbb glfw openimageio libjpeg libpng libX11 libpthreadstubs ];
meta = with stdenv.lib; {
description = "High performance ray tracing kernels from Intel";
homepage = https://embree.github.io/;
maintainers = with maintainers; [ hodapp ];
license = licenses.asl20;
platforms = platforms.linux;
};
}