Sergei Trofimovich 3763f57806 SDL2_image: 2.8.2 -> 2.8.3
While at it tweaked `SDL2_image_2_0` to survive `autoreconf`.

Changes: https://github.com/libsdl-org/SDL_image/releases/tag/release-2.8.3
2024-12-18 22:04:21 +00:00

18 lines
398 B
Nix

# Dependency of pygame, toppler
{ SDL2_image, fetchurl }:
SDL2_image.overrideAttrs (oldAttrs: {
version = "2.0.5";
src = fetchurl {
inherit (oldAttrs.src) url;
hash = "sha256-vdX24CZoL31+G+C2BRsgnaL0AqLdi9HEvZwlrSYxCNA";
};
postPatch =
(oldAttrs.postPatch or "")
+ ''
# allow newer autoreconf to run successfully
touch NEWS README AUTHORS ChangeLog
'';
})