about summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL2
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2024-04-02 09:17:13 +0100
committerSergei Trofimovich <slyich@gmail.com>2024-04-02 09:17:13 +0100
commit923ebca2480107027d4ed39532bb7b62318c1144 (patch)
tree57224dfa37ac27bd65c58b63d86f9d6b073660c4 /pkgs/development/libraries/SDL2
parentcb1f3bcd8b88bc71906f66ba4edec11d81c9567b (diff)
SDL2: 2.30.1 -> 2.30.2
Changes: https://github.com/libsdl-org/SDL/releases/tag/release-2.30.2
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 838bb9ecdbe5c..a15a963cb78bf 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.30.1";
+  version = "2.30.2";
 
   src = fetchFromGitHub {
     owner = "libsdl-org";
     repo = "SDL";
     rev = "release-${finalAttrs.version}";
-    hash = "sha256-nwmmyJK1/5Mu7l1YCk4PsasJIrx3jdiM5f/Cu3n0paA=";
+    hash = "sha256-yYYtsF6+IKynXpfay0rUmCQPdL8vp6dlmon8N7UG89A=";
   };
   dontDisableStatic = if withStatic then 1 else 0;
   outputs = [ "out" "dev" ];