mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
mindustry: fix eval error due to #119444
The PR https://github.com/NixOS/nixpkgs/pull/119444 broke the build for mindustry even further. This patch fixes that again so it evals and builds properly.
This commit is contained in:
parent
a77943c99a
commit
4179df352b
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user