From c2623e72340e21d1b3c89d71a6c499e66b728a37 Mon Sep 17 00:00:00 2001 From: Marcin Serwin Date: Thu, 30 Oct 2025 23:44:54 +0100 Subject: [PATCH] SDL_compat: 1.2.68 -> 1.2.70 Signed-off-by: Marcin Serwin --- pkgs/by-name/sd/SDL_compat/package.nix | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/sd/SDL_compat/package.nix b/pkgs/by-name/sd/SDL_compat/package.nix index e61692af5306..737170945a9f 100644 --- a/pkgs/by-name/sd/SDL_compat/package.nix +++ b/pkgs/by-name/sd/SDL_compat/package.nix @@ -27,13 +27,13 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "SDL_compat"; - version = "1.2.68"; + version = "1.2.70"; src = fetchFromGitHub { owner = "libsdl-org"; repo = "sdl12-compat"; rev = "release-" + finalAttrs.version; - hash = "sha256-f2dl3L7/qoYNl4sjik1npcW/W09zsEumiV9jHuKnUmM="; + hash = "sha256-vmbkeBpuzgq1B/6rp9/Gy8+Y7aF5uz8lC/mK0uA9v7I="; }; nativeBuildInputs = [ @@ -56,11 +56,6 @@ stdenv.mkDerivation (finalAttrs: { ] ++ lib.optionals openglSupport [ libGLU ]; - postPatch = '' - substituteInPlace CMakeLists.txt \ - --replace-fail 'set(CMAKE_SKIP_RPATH TRUE)' 'set(CMAKE_SKIP_RPATH FALSE)' - ''; - dontPatchELF = true; # don't strip rpath cmakeFlags = @@ -79,7 +74,7 @@ stdenv.mkDerivation (finalAttrs: { doCheck = !stdenv.hostPlatform.isDarwin; checkPhase = '' runHook preCheck - ./testver + ./test/testver runHook postCheck '';