diff options
author | Guillaume Girol | 2023-05-14 11:45:35 +0000 |
---|---|---|
committer | GitHub | 2023-05-14 11:45:35 +0000 |
commit | d9a32fcdb98dc84151854e0efd4eea03c88f4bba (patch) | |
tree | 770a1bf7dfd15b3ae8603de39972f2c6914c19d9 /pkgs/games | |
parent | 43dcd99082af724cef265cb1bfc2a0375ac0a0ae (diff) | |
parent | 5fb01235cc9e64471224b341e7e845009f5cbcad (diff) |
Merge pull request #231053 from kenranunderscore/update-infra-arcana
infra-arcana: 21.0.1 -> 22.0.0
Diffstat (limited to 'pkgs/games')
-rw-r--r-- | pkgs/games/infra-arcana/default.nix | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/pkgs/games/infra-arcana/default.nix b/pkgs/games/infra-arcana/default.nix index e48c69a2cf33..4e80ad3e4d13 100644 --- a/pkgs/games/infra-arcana/default.nix +++ b/pkgs/games/infra-arcana/default.nix @@ -1,31 +1,20 @@ -{ lib -, stdenv -, fetchFromGitLab -, cmake -, makeWrapper -, SDL2 -, SDL2_image -, SDL2_mixer +{ lib, stdenv, fetchFromGitLab, cmake, makeWrapper, SDL2, SDL2_image, SDL2_mixer }: stdenv.mkDerivation rec { pname = "infra-arcana"; - version = "21.0.1"; + version = "22.0.0"; src = fetchFromGitLab { owner = "martin-tornqvist"; repo = "ia"; rev = "v${version}"; - sha256 = "sha256-E2ssxdYa27qRk5cCmM7A5VqXGExwXHblR34y+rOUBRI="; + sha256 = "sha256-EFpeuzxhRriQOBtmw0D+SY6sOWGyY8iA5Xnm6PCaMX0="; }; nativeBuildInputs = [ cmake makeWrapper ]; buildInputs = [ SDL2 SDL2_image SDL2_mixer ]; - # Some parts of the game don't compile with glibc 2.34. As soon as - # this is fixed upstream we can switch to the default build flags. - buildFlags = [ "ia" ]; - installPhase = '' runHook preInstall @@ -35,7 +24,7 @@ stdenv.mkDerivation rec { rm -rf CMake* cmake* compile_commands.json CTest* Makefile cp -ra * $out/opt/ia - # Uses relative paths when looking for assets + # IA uses relative paths when looking for assets wrapProgram $out/opt/ia/ia --run "cd $out/opt/ia" ln -s $out/opt/ia/ia $out/bin/infra-arcana |