From 5fb01235cc9e64471224b341e7e845009f5cbcad Mon Sep 17 00:00:00 2001 From: Johannes Maier Date: Wed, 10 May 2023 12:42:49 +0200 Subject: [PATCH] infra-arcana: 21.0.1 -> 22.0.0 --- pkgs/games/infra-arcana/default.nix | 19 ++++--------------- 1 file 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