Skip to content

Commit 1b5f3af

Browse files
authored
SDL2_image: 2.8.2 -> 2.8.3 (#366222)
2 parents bb78413 + 3763f57 commit 1b5f3af

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

pkgs/by-name/sd/SDL2_image/package.nix

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
lib,
33
SDL2,
4+
autoreconfHook,
45
darwin,
56
fetchurl,
67
giflib,
@@ -22,15 +23,16 @@ let
2223
in
2324
stdenv.mkDerivation (finalAttrs: {
2425
pname = "SDL2_image";
25-
version = "2.8.2";
26+
version = "2.8.3";
2627

2728
src = fetchurl {
2829
url = "https://www.libsdl.org/projects/SDL_image/release/SDL2_image-${finalAttrs.version}.tar.gz";
29-
hash = "sha256-j0hrv7z4Rk3VjJ5dkzlKsCVc5otRxalmqRgkSCCnbdw=";
30+
hash = "sha256-SwAPLCOM44CAfuDLaKDvAFhxaR7Ohkbb9PQlpYKxuyI=";
3031
};
3132

3233
nativeBuildInputs = [
3334
SDL2
35+
autoreconfHook
3436
pkg-config
3537
];
3638

pkgs/by-name/sd/SDL2_image_2_0/package.nix

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,11 @@ SDL2_image.overrideAttrs (oldAttrs: {
77
inherit (oldAttrs.src) url;
88
hash = "sha256-vdX24CZoL31+G+C2BRsgnaL0AqLdi9HEvZwlrSYxCNA";
99
};
10+
11+
postPatch =
12+
(oldAttrs.postPatch or "")
13+
+ ''
14+
# allow newer autoreconf to run successfully
15+
touch NEWS README AUTHORS ChangeLog
16+
'';
1017
})

0 commit comments

Comments
 (0)