summary refs log tree commit diff
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-12-03 07:03:58 +0000
committerOrivej Desh <orivej@gmx.fr>2017-12-07 08:52:42 +0000
commitef151343e560f1a012d19860a41dabd751de442d (patch)
tree19a868fabb6471374e92913e148a2d7dee4e352c
parent5ae64cbfe71ae358a4a16b802c2fc9dc4e5801af (diff)
downloadnixpkgs-ef151343e560f1a012d19860a41dabd751de442d.tar
nixpkgs-ef151343e560f1a012d19860a41dabd751de442d.tar.gz
nixpkgs-ef151343e560f1a012d19860a41dabd751de442d.tar.bz2
nixpkgs-ef151343e560f1a012d19860a41dabd751de442d.tar.lz
nixpkgs-ef151343e560f1a012d19860a41dabd751de442d.tar.xz
nixpkgs-ef151343e560f1a012d19860a41dabd751de442d.tar.zst
nixpkgs-ef151343e560f1a012d19860a41dabd751de442d.zip
editorconfig-core-c: disable parallel building
-rw-r--r--pkgs/development/tools/misc/editorconfig-core-c/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/editorconfig-core-c/default.nix b/pkgs/development/tools/misc/editorconfig-core-c/default.nix
index 5509ededb07..a0d6e49c025 100644
--- a/pkgs/development/tools/misc/editorconfig-core-c/default.nix
+++ b/pkgs/development/tools/misc/editorconfig-core-c/default.nix
@@ -14,6 +14,10 @@ stdenv.mkDerivation rec {
   buildInputs = [ pcre ];
   nativeBuildInputs = [ cmake doxygen ];
 
+  # Multiple doxygen can not generate man pages in the same base directory in
+  # parallel: https://bugzilla.gnome.org/show_bug.cgi?id=791153
+  enableParallelBuilding = false;
+
   meta = with stdenv.lib; {
     homepage = http://editorconfig.org/;
     description = "EditorConfig core library written in C";