Merge pull request #231053 from kenranunderscore/update-infra-arcana

infra-arcana: 21.0.1 -> 22.0.0

authored by

Guillaume Girol and committed by
GitHub
d9a32fcd 43dcd990

+4 -15
+4 -15
pkgs/games/infra-arcana/default.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchFromGitLab 4 - , cmake 5 - , makeWrapper 6 - , SDL2 7 - , SDL2_image 8 - , SDL2_mixer 1 + { lib, stdenv, fetchFromGitLab, cmake, makeWrapper, SDL2, SDL2_image, SDL2_mixer 9 2 }: 10 3 11 4 stdenv.mkDerivation rec { 12 5 pname = "infra-arcana"; 13 - version = "21.0.1"; 6 + version = "22.0.0"; 14 7 15 8 src = fetchFromGitLab { 16 9 owner = "martin-tornqvist"; 17 10 repo = "ia"; 18 11 rev = "v${version}"; 19 - sha256 = "sha256-E2ssxdYa27qRk5cCmM7A5VqXGExwXHblR34y+rOUBRI="; 12 + sha256 = "sha256-EFpeuzxhRriQOBtmw0D+SY6sOWGyY8iA5Xnm6PCaMX0="; 20 13 }; 21 14 22 15 nativeBuildInputs = [ cmake makeWrapper ]; 23 16 buildInputs = [ SDL2 SDL2_image SDL2_mixer ]; 24 17 25 - # Some parts of the game don't compile with glibc 2.34. As soon as 26 - # this is fixed upstream we can switch to the default build flags. 27 - buildFlags = [ "ia" ]; 28 - 29 18 installPhase = '' 30 19 runHook preInstall 31 20 ··· 35 24 rm -rf CMake* cmake* compile_commands.json CTest* Makefile 36 25 cp -ra * $out/opt/ia 37 26 38 - # Uses relative paths when looking for assets 27 + # IA uses relative paths when looking for assets 39 28 wrapProgram $out/opt/ia/ia --run "cd $out/opt/ia" 40 29 ln -s $out/opt/ia/ia $out/bin/infra-arcana 41 30