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
18 lines
398 B
Nix
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
|
|
'';
|
|
})
|