summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-03 16:43:56 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-03 18:37:40 +0700
commit3ae5e6ce03f9dbf3f0a0a3e3161c83e28c1b45af (patch)
treee1ef883cca4049653aabfc8409cd6e7d51f1de92 /pkgs/tools/graphics
parentfb2311d4307f9873ccd38c7f080fbf1df8f17daa (diff)
treewide: remove enableParallelBuilding = true if using cmake
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/appleseed/default.nix1
-rw-r--r--pkgs/tools/graphics/vulkan-tools-lunarg/default.nix2
-rw-r--r--pkgs/tools/graphics/vulkan-tools/default.nix1
3 files changed, 0 insertions, 4 deletions
diff --git a/pkgs/tools/graphics/appleseed/default.nix b/pkgs/tools/graphics/appleseed/default.nix
index 67e49936f5b8..578ee093c05e 100644
--- a/pkgs/tools/graphics/appleseed/default.nix
+++ b/pkgs/tools/graphics/appleseed/default.nix
@@ -47,7 +47,6 @@ in stdenv.mkDerivation rec {
"-DUSE_SSE=ON"
"-DUSE_SSE42=ON"
];
- enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Open source, physically-based global illumination rendering engine";
diff --git a/pkgs/tools/graphics/vulkan-tools-lunarg/default.nix b/pkgs/tools/graphics/vulkan-tools-lunarg/default.nix
index 9ce87b4cb671..5889df1c4d94 100644
--- a/pkgs/tools/graphics/vulkan-tools-lunarg/default.nix
+++ b/pkgs/tools/graphics/vulkan-tools-lunarg/default.nix
@@ -61,8 +61,6 @@ stdenv.mkDerivation rec {
done
'';
- enableParallelBuilding = true;
-
# Same as vulkan-validation-layers
libraryPath = lib.strings.makeLibraryPath [ vulkan-loader ];
dontPatchELF = true;
diff --git a/pkgs/tools/graphics/vulkan-tools/default.nix b/pkgs/tools/graphics/vulkan-tools/default.nix
index ff620ef8287b..2b0cf1c7a052 100644
--- a/pkgs/tools/graphics/vulkan-tools/default.nix
+++ b/pkgs/tools/graphics/vulkan-tools/default.nix
@@ -15,7 +15,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ python3 vulkan-headers vulkan-loader xlibsWrapper libxcb libXrandr wayland ];
- enableParallelBuilding = true;
libraryPath = lib.strings.makeLibraryPath [ vulkan-loader ];