mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 23:23:36 +00:00
Merge pull request #144980 from trofi/sequential-clisp
clisp: explicitly disable build parallelism due to missing depends
This commit is contained in:
commit
37c88f68b1
@ -82,6 +82,10 @@ stdenv.mkDerivation rec {
|
|||||||
cd builddir
|
cd builddir
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# Fails to build in parallel due to missing gnulib header dependency used in charstrg.d:
|
||||||
|
# ../src/charstrg.d:319:10: fatal error: uniwidth.h: No such file or directory
|
||||||
|
enableParallelBuilding = false;
|
||||||
|
|
||||||
postInstall =
|
postInstall =
|
||||||
lib.optionalString (withModules != [])
|
lib.optionalString (withModules != [])
|
||||||
(''./clisp-link add "$out"/lib/clisp*/base "$(dirname "$out"/lib/clisp*/base)"/full''
|
(''./clisp-link add "$out"/lib/clisp*/base "$(dirname "$out"/lib/clisp*/base)"/full''
|
||||||
|
Loading…
Reference in New Issue
Block a user