about summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL2
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2023-10-04 06:31:51 +0100
committerSergei Trofimovich <slyich@gmail.com>2023-10-04 06:31:51 +0100
commit5660d0f73b788104c9e8b8fc6992671d9dc8ec5f (patch)
treed3d3f5b56ad2bfd9643627e91caa8151a0a2e53c /pkgs/development/libraries/SDL2
parentc96a78b5a3e6736180374159cb7c8f5ad32e2c40 (diff)
SDL2: 2.28.3 -> 2.28.4
Changes: https://github.com/libsdl-org/SDL/releases/tag/release-2.28.4
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 7b741b803de0b..0a5980457d631 100644
--- a/pkgs/development/libraries/SDL2/default.nix
+++ b/pkgs/development/libraries/SDL2/default.nix
@@ -56,13 +56,13 @@
 
 stdenv.mkDerivation rec {
   pname = "SDL2";
-  version = "2.28.3";
+  version = "2.28.4";
 
   src = fetchFromGitHub {
     owner = "libsdl-org";
     repo = "SDL";
     rev = "release-${version}";
-    hash = "sha256-/kQ2IyvAfmZ+zIUt1WuEIeX0nYPGXDlAQk2qDsQnFFs=";
+    hash = "sha256-1+1m0s3pBCTu924J/4aIu4IHk/N88x2djWDEsDpAJn4=";
   };
   dontDisableStatic = if withStatic then 1 else 0;
   outputs = [ "out" "dev" ];