about summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL2
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2023-11-03 16:34:52 +0000
committerSergei Trofimovich <slyich@gmail.com>2023-11-11 18:15:24 +0000
commit14bd32cbf1ae99bbf63a8dc34ddd9f562309b4a3 (patch)
treece53a707ca6eea823b3a628546f3ddb87cf526fc /pkgs/development/libraries/SDL2
parentc389a3f8776eb3bc6a3abaec9994e54c40897d94 (diff)
SDL2: 2.28.4 -> 2.28.5
Changes: https://github.com/libsdl-org/SDL/releases/tag/release-2.28.5
Diffstat (limited to 'pkgs/development/libraries/SDL2')
-rw-r--r--pkgs/development/libraries/SDL2/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/SDL2/default.nix b/pkgs/development/libraries/SDL2/default.nix
index 2c05252c84734..8a2297a1e26da 100644
--- a/pkgs/development/libraries/SDL2/default.nix
+++ b/pkgs/development/libraries/SDL2/default.nix
@@ -58,13 +58,13 @@
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "SDL2";
-  version = "2.28.4";
+  version = "2.28.5";
 
   src = fetchFromGitHub {
     owner = "libsdl-org";
     repo = "SDL";
     rev = "release-${finalAttrs.version}";
-    hash = "sha256-1+1m0s3pBCTu924J/4aIu4IHk/N88x2djWDEsDpAJn4=";
+    hash = "sha256-YcM7bfLo+KkWx8LdtG4z2UwJvzlEkvIkm+M5aMSztwU=";
   };
   dontDisableStatic = if withStatic then 1 else 0;
   outputs = [ "out" "dev" ];