about summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL2
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2024-03-06 21:45:39 +0000
committerSergei Trofimovich <slyich@gmail.com>2024-03-06 21:45:39 +0000
commit74b1253a65f2e4fb0226228a4e68f53d81461963 (patch)
tree0e488e7b0ca3ec6fcdd5e08bda7674ada28aad0b /pkgs/development/libraries/SDL2
parent58ae79ea707579c40102ddf62d84b902a987c58b (diff)
SDL2: 2.30.0 -> 2.30.1
Changes: https://github.com/libsdl-org/SDL/releases/tag/release-2.30.1
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 1aac55d6ef9ee..a69b8216124a2 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.0";
+  version = "2.30.1";
 
   src = fetchFromGitHub {
     owner = "libsdl-org";
     repo = "SDL";
     rev = "release-${finalAttrs.version}";
-    hash = "sha256-uKL9/T6vCEqMqmD3Q3rCMtKPRJZ4fRYVUr+4628/Ajg=";
+    hash = "sha256-nwmmyJK1/5Mu7l1YCk4PsasJIrx3jdiM5f/Cu3n0paA=";
   };
   dontDisableStatic = if withStatic then 1 else 0;
   outputs = [ "out" "dev" ];