Merge pull request #220398 from trofi/unnethack-disable-parallelism
unnethack: disable build parallelism
This commit is contained in:
commit
2f357f268a
1 changed files with 5 additions and 1 deletions
|
@ -33,7 +33,11 @@ stdenv.mkDerivation rec {
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
# Fails the build occasionally due to missing buid depends:
|
||||||
|
# ./../sys/unix/unixmain.c:9:10: fatal error: date.h: No such file or directory
|
||||||
|
# TODO: remove once upstream issue is fixed:
|
||||||
|
# https://github.com/UnNetHack/UnNetHack/issues/56
|
||||||
|
enableParallelBuilding = false;
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
cp -r /tmp/unnethack $out/share/unnethack/profile
|
cp -r /tmp/unnethack $out/share/unnethack/profile
|
||||||
|
|
Loading…
Reference in a new issue