summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/embree/2.x.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/embree/2.x.nix')
-rw-r--r--pkgs/development/libraries/embree/2.x.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/embree/2.x.nix b/pkgs/development/libraries/embree/2.x.nix
index d8e102a0d40b..083dbbc74500 100644
--- a/pkgs/development/libraries/embree/2.x.nix
+++ b/pkgs/development/libraries/embree/2.x.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, cmake, pkgconfig, ispc, tbb, glfw,
+{ stdenv, fetchFromGitHub, cmake, pkg-config, ispc, tbb, glfw,
openimageio, libjpeg, libpng, libpthreadstubs, libX11
}:
@@ -14,11 +14,11 @@ stdenv.mkDerivation {
};
cmakeFlags = [ "-DEMBREE_TUTORIALS=OFF" ];
- enableParallelBuilding = true;
-
- buildInputs = [ pkgconfig cmake ispc tbb glfw openimageio libjpeg libpng libX11 libpthreadstubs ];
+
+ nativeBuildInputs = [ cmake pkg-config ];
+ buildInputs = [ ispc tbb glfw openimageio libjpeg libpng libX11 libpthreadstubs ];
meta = with stdenv.lib; {
- description = "High performance ray tracing kernels from Intel";
+ description = "High performance ray tracing kernels from Intel";
homepage = "https://embree.github.io/";
maintainers = with maintainers; [ hodapp ];
license = licenses.asl20;