Skip to content

Commit

Permalink
Merge pull request #323540 from fgaz/mindustry-arc-fix
Browse files Browse the repository at this point in the history
mindustry: fix build with gradle 8.8
  • Loading branch information
SuperSandro2000 authored Jun 30, 2024
2 parents ce32791 + 583466f commit 338d49d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pkgs/games/mindustry/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{ lib, stdenv, fetchurl
, fetchpatch
, makeWrapper
, makeDesktopItem
, copyDesktopItems
Expand Down Expand Up @@ -82,6 +83,19 @@ let

patches = [
./0001-fix-include-path-for-SDL2-on-linux.patch
# Fix build with gradle 8.8, remove on next Arc release
(fetchpatch {
url = "https://github.com/Anuken/Arc/commit/2a91c51bf45d700091e397fd0b62384763901ae6.patch";
hash = "sha256-sSD78GmF14vBvNe+ajUJ4uIc4p857shTP/UkAK6Pyyg=";
extraPrefix = "Arc/";
stripLen = 1;
})
(fetchpatch {
url = "https://github.com/Anuken/Arc/commit/d7f8ea858c425410dbd43374271a703d4443b432.patch";
hash = "sha256-5LPgBOV0r/dUtpyxitTu3/9tMIqjeIKfGVJi3MEr7fQ=";
extraPrefix = "Arc/";
stripLen = 1;
})
];

unpackPhase = ''
Expand Down

0 comments on commit 338d49d

Please sign in to comment.