summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-07-19 19:50:58 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-07-20 10:32:58 +0700
commit1e2484a27c6c130751ed70695f9a20e5bf042502 (patch)
tree4b2bde007de22951cd1103641aab3336e8c989d5
parent914b93541e67b535c6c6e5588d5ce33b485bfedf (diff)
downloadnixpkgs-1e2484a27c6c130751ed70695f9a20e5bf042502.tar
nixpkgs-1e2484a27c6c130751ed70695f9a20e5bf042502.tar.gz
nixpkgs-1e2484a27c6c130751ed70695f9a20e5bf042502.tar.bz2
nixpkgs-1e2484a27c6c130751ed70695f9a20e5bf042502.tar.lz
nixpkgs-1e2484a27c6c130751ed70695f9a20e5bf042502.tar.xz
nixpkgs-1e2484a27c6c130751ed70695f9a20e5bf042502.tar.zst
nixpkgs-1e2484a27c6c130751ed70695f9a20e5bf042502.zip
treewide: remove unnecessary enableParallelBuilding when using cmake
-rw-r--r--pkgs/applications/audio/mixxx/default.nix2
-rw-r--r--pkgs/applications/audio/tageditor/default.nix2
-rw-r--r--pkgs/development/compilers/terra/default.nix1
-rw-r--r--pkgs/test/cuda/cuda-library-samples/generic.nix1
4 files changed, 0 insertions, 6 deletions
diff --git a/pkgs/applications/audio/mixxx/default.nix b/pkgs/applications/audio/mixxx/default.nix
index 6f0d34b870a..a3df5196cdc 100644
--- a/pkgs/applications/audio/mixxx/default.nix
+++ b/pkgs/applications/audio/mixxx/default.nix
@@ -110,8 +110,6 @@ mkDerivation rec {
     wavpack
   ];
 
-  enableParallelBuilding = true;
-
   qtWrapperArgs = [
     "--set LOCALE_ARCHIVE ${glibcLocales}/lib/locale/locale-archive"
   ];
diff --git a/pkgs/applications/audio/tageditor/default.nix b/pkgs/applications/audio/tageditor/default.nix
index 02e23084cf5..320a26b8172 100644
--- a/pkgs/applications/audio/tageditor/default.nix
+++ b/pkgs/applications/audio/tageditor/default.nix
@@ -45,8 +45,6 @@ stdenv.mkDerivation rec {
     tagparser
   ];
 
-  enableParallelBuilding = true;
-
   meta = with pkgs.lib; {
     homepage = "https://github.com/Martchus/tageditor";
     description = "A tag editor with Qt GUI and command-line interface supporting MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska";
diff --git a/pkgs/development/compilers/terra/default.nix b/pkgs/development/compilers/terra/default.nix
index ac1851a683b..3174744fdde 100644
--- a/pkgs/development/compilers/terra/default.nix
+++ b/pkgs/development/compilers/terra/default.nix
@@ -50,7 +50,6 @@ in stdenv.mkDerivation rec {
   ] ++ lib.optional enableCUDA "-DTERRA_ENABLE_CUDA=ON";
 
   doCheck = true;
-  enableParallelBuilding = true;
   hardeningDisable = [ "fortify" ];
   outputs = [ "bin" "dev" "out" "static" ];
 
diff --git a/pkgs/test/cuda/cuda-library-samples/generic.nix b/pkgs/test/cuda/cuda-library-samples/generic.nix
index f1ce243bfa6..350decef22d 100644
--- a/pkgs/test/cuda/cuda-library-samples/generic.nix
+++ b/pkgs/test/cuda/cuda-library-samples/generic.nix
@@ -16,7 +16,6 @@ let
     version = lib.strings.substring 0 7 rev + "-" + lib.versions.majorMinor cudatoolkit.version;
     nativeBuildInputs = [ cmake addOpenGLRunpath ];
     buildInputs = [ cudatoolkit ];
-    enableParallelBuilding = true;
     postFixup = ''
       for exe in $out/bin/*; do
         addOpenGLRunpath $exe