Merge pull request #38462 from xeji/p/tome4

tome4: disable parallel build
This commit is contained in:
Jörg Thalheim 2018-04-05 14:19:34 +01:00 committed by GitHub
commit eb83b2f9db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,8 @@ in stdenv.mkDerivation rec {
libGLU openal libpng libvorbis SDL2 SDL2_ttf SDL2_image
];
enableParallelBuilding = true;
# disable parallel building as it caused sporadic build failures
enableParallelBuilding = false;
NIX_CFLAGS_COMPILE = [
"-I${SDL2_image}/include/SDL2"
@ -81,6 +82,6 @@ in stdenv.mkDerivation rec {
homepage = https://te4.org/;
license = licenses.gpl3;
maintainers = with maintainers; [ chattered peterhoeg ];
platforms = platforms.linux;
platforms = subtractLists ["aarch64-linux"] platforms.linux;
};
}