summary refs log tree commit diff
path: root/pkgs/tools/filesystems
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/filesystems
parentfb2311d4307f9873ccd38c7f080fbf1df8f17daa (diff)
downloadnixpkgs-3ae5e6ce03f9dbf3f0a0a3e3161c83e28c1b45af.tar
nixpkgs-3ae5e6ce03f9dbf3f0a0a3e3161c83e28c1b45af.tar.gz
nixpkgs-3ae5e6ce03f9dbf3f0a0a3e3161c83e28c1b45af.tar.bz2
nixpkgs-3ae5e6ce03f9dbf3f0a0a3e3161c83e28c1b45af.tar.lz
nixpkgs-3ae5e6ce03f9dbf3f0a0a3e3161c83e28c1b45af.tar.xz
nixpkgs-3ae5e6ce03f9dbf3f0a0a3e3161c83e28c1b45af.tar.zst
nixpkgs-3ae5e6ce03f9dbf3f0a0a3e3161c83e28c1b45af.zip
treewide: remove enableParallelBuilding = true if using cmake
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/ceph/default.nix2
-rw-r--r--pkgs/tools/filesystems/cryfs/default.nix2
-rw-r--r--pkgs/tools/filesystems/encfs/default.nix2
-rw-r--r--pkgs/tools/filesystems/securefs/default.nix2
4 files changed, 0 insertions, 8 deletions
diff --git a/pkgs/tools/filesystems/ceph/default.nix b/pkgs/tools/filesystems/ceph/default.nix
index 1a43d792ad3..7a9809bdfc2 100644
--- a/pkgs/tools/filesystems/ceph/default.nix
+++ b/pkgs/tools/filesystems/ceph/default.nix
@@ -195,8 +195,6 @@ in rec {
       test -f $out/bin/ceph-volume
     '';
 
-    enableParallelBuilding = true;
-
     outputs = [ "out" "lib" "dev" "doc" "man" ];
 
     doCheck = false; # uses pip to install things from the internet
diff --git a/pkgs/tools/filesystems/cryfs/default.nix b/pkgs/tools/filesystems/cryfs/default.nix
index 8f7f4f1a313..ef95bad0c24 100644
--- a/pkgs/tools/filesystems/cryfs/default.nix
+++ b/pkgs/tools/filesystems/cryfs/default.nix
@@ -48,8 +48,6 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ boost cryptopp curl fuse openssl ];
 
-  enableParallelBuilding = true;
-
   cmakeFlags = [
     "-DCRYFS_UPDATE_CHECKS:BOOL=FALSE"
     "-DBoost_USE_STATIC_LIBS:BOOL=FALSE" # this option is case sensitive
diff --git a/pkgs/tools/filesystems/encfs/default.nix b/pkgs/tools/filesystems/encfs/default.nix
index 24aa52e366f..57affc2603e 100644
--- a/pkgs/tools/filesystems/encfs/default.nix
+++ b/pkgs/tools/filesystems/encfs/default.nix
@@ -23,8 +23,6 @@ stdenv.mkDerivation rec {
       "-DINSTALL_LIBENCFS=ON"
     ];
 
-  enableParallelBuilding = true;
-
   meta = with stdenv.lib; {
     description = "An encrypted filesystem in user-space via FUSE";
     homepage = "https://vgough.github.io/encfs";
diff --git a/pkgs/tools/filesystems/securefs/default.nix b/pkgs/tools/filesystems/securefs/default.nix
index c8efa4d61ab..a83f6ba515c 100644
--- a/pkgs/tools/filesystems/securefs/default.nix
+++ b/pkgs/tools/filesystems/securefs/default.nix
@@ -17,8 +17,6 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ cmake ];
   buildInputs = [ fuse ];
 
-  enableParallelBuilding = true;
-
   meta = with stdenv.lib; {
     inherit (src.meta) homepage;
     description = "Transparent encryption filesystem";