fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, ispc, tbb, glfw,
2openimageio, libjpeg, libpng, libpthreadstubs, libX11
3}:
4
5stdenv.mkDerivation {
6 pname = "embree";
7 version = "2.17.4";
8
9 src = fetchFromGitHub {
10 owner = "embree";
11 repo = "embree";
12 rev = "v2.17.4";
13 sha256 = "0q3r724r58j4b6cbyy657fsb78z7a2c7d5mwdp7552skynsn2mn9";
14 };
15
16 cmakeFlags = [ "-DEMBREE_TUTORIALS=OFF" ];
17
18 nativeBuildInputs = [ cmake pkg-config ];
19 buildInputs = [ ispc tbb glfw openimageio libjpeg libpng libX11 libpthreadstubs ];
20 meta = with lib; {
21 description = "High performance ray tracing kernels from Intel";
22 homepage = "https://embree.github.io/";
23 maintainers = with maintainers; [ hodapp ];
24 license = licenses.asl20;
25 platforms = [ "x86_64-linux" ];
26 };
27}