-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mindustry: unbreak #146557
Merged
Merged
mindustry: unbreak #146557
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
19c06ba
mindustry: unbreak by building with jdk15
Mindavi 7824302
mindustry: mitigate issue with missing glew
Mindavi a77943c
mindustry-server: use jdk15 to build server
Mindavi 4179df3
mindustry: fix eval error due to #119444
Mindavi 9e58e39
mindustry: format mindustry in top-level/all-packages nicely
Mindavi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -4,7 +4,7 @@ | |||||||||
, copyDesktopItems | ||||||||||
, fetchFromGitHub | ||||||||||
, gradle_6 | ||||||||||
, jdk11 | ||||||||||
, jdk | ||||||||||
, perl | ||||||||||
|
||||||||||
# for arc | ||||||||||
|
@@ -87,8 +87,7 @@ let | |||||||||
popd | ||||||||||
''; | ||||||||||
|
||||||||||
jdk = jdk11; | ||||||||||
gradle = (gradle_6.override (old: { java = jdk11; })); | ||||||||||
gradle = (gradle_6.override (old: { java = jdk; })); | ||||||||||
|
||||||||||
# fake build to pre-download deps into fixed-output derivation | ||||||||||
deps = stdenv.mkDerivation { | ||||||||||
|
@@ -129,6 +128,15 @@ stdenv.mkDerivation rec { | |||||||||
rm Arc/backends/backend-sdl/libs/linux64/libsdl-arc*.so | ||||||||||
'' + cleanupMindustrySrc; | ||||||||||
|
||||||||||
# Propagate glew to prevent it from being cleaned up. | ||||||||||
# Since a jar is a compressed archive, nix can't figure out that the dependency is actually in there, | ||||||||||
# and will assume that it's not actually needed. | ||||||||||
# This can cause issues. | ||||||||||
# See https://github.com/NixOS/nixpkgs/issues/109798. | ||||||||||
propagatedBuildInputs = lib.optionals enableClient [ | ||||||||||
glew.out | ||||||||||
]; | ||||||||||
|
||||||||||
buildInputs = lib.optionals enableClient [ | ||||||||||
SDL2 | ||||||||||
glew | ||||||||||
|
@@ -157,9 +165,11 @@ stdenv.mkDerivation rec { | |||||||||
'' + optionalString enableClient '' | ||||||||||
gradle --offline --no-daemon jnigenBuild -Pbuildversion=${buildVersion} | ||||||||||
gradle --offline --no-daemon sdlnatives -Pdynamic -Pbuildversion=${buildVersion} | ||||||||||
glewlib=${lib.getLib glew}/lib/libGLEW.so | ||||||||||
sdllib=${lib.getLib SDL2}/lib/libSDL2.so | ||||||||||
patchelf ../Arc/backends/backend-sdl/libs/linux64/libsdl-arc*.so \ | ||||||||||
--add-needed ${glew.out}/lib/libGLEW.so \ | ||||||||||
--add-needed ${SDL2}/lib/libSDL2.so | ||||||||||
--add-needed $glewlib \ | ||||||||||
--add-needed $sdllib | ||||||||||
Comment on lines
+171
to
+172
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
gradle --offline --no-daemon desktop:dist -Pbuildversion=${buildVersion} | ||||||||||
'' + optionalString enableServer '' | ||||||||||
gradle --offline --no-daemon server:dist -Pbuildversion=${buildVersion} | ||||||||||
|
@@ -191,8 +201,6 @@ stdenv.mkDerivation rec { | |||||||||
platforms = platforms.x86_64; | ||||||||||
# Hash mismatch on darwin: | ||||||||||
# https://github.com/NixOS/nixpkgs/pull/105590#issuecomment-737120293 | ||||||||||
broken = stdenv.isDarwin | ||||||||||
# does not work with any maintained java version (https://github.com/Anuken/Mindustry/issues/5114) | ||||||||||
|| true; | ||||||||||
broken = stdenv.isDarwin; | ||||||||||
}; | ||||||||||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.