nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

dev86: explicitly disable build parallelism due to missing depends

+9 -1
+9 -1
pkgs/development/compilers/dev86/default.nix
··· 13 13 14 14 makeFlags = [ "PREFIX=$(out)" ]; 15 15 16 + # Parallel builds are not supported due to build process structure: 17 + # tools are built sequentially in submakefiles and are reusing the 18 + # same targets as dependencies. Building dependencies in parallel 19 + # from different submakes is not synchronized and fails: 20 + # make[3]: Entering directory '/build/dev86-0.16.21/libc' 21 + # Unable to execute as86. 22 + enableParallelBuilding = false; 23 + 16 24 meta = { 17 25 description = "Linux 8086 development environment"; 18 - homepage = "http://v3.sk/~lkundrak/dev86/"; 26 + homepage = "https://github.com/lkundrak/dev86"; 19 27 platforms = lib.platforms.linux; 20 28 }; 21 29 }