about summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL2
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2024-02-03 11:38:59 +0000
committerSergei Trofimovich <slyich@gmail.com>2024-02-03 11:40:41 +0000
commit2f1b2150ef0722f2280c6a475e581d287677bf96 (patch)
tree9bb5dff41104a8a684865c0ec4ece818c1638a52 /pkgs/development/libraries/SDL2
parent8f2659f142636164b94165df1b396bbf92b23de0 (diff)
SDL2: 2.28.5 -> 2.30.0
Changes: https://github.com/libsdl-org/SDL/releases/tag/release-2.30.0
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 2532bab798bcb..167f0cbe7638c 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.5";
+  version = "2.30.0";
 
   src = fetchFromGitHub {
     owner = "libsdl-org";
     repo = "SDL";
     rev = "release-${finalAttrs.version}";
-    hash = "sha256-YcM7bfLo+KkWx8LdtG4z2UwJvzlEkvIkm+M5aMSztwU=";
+    hash = "sha256-uKL9/T6vCEqMqmD3Q3rCMtKPRJZ4fRYVUr+4628/Ajg=";
   };
   dontDisableStatic = if withStatic then 1 else 0;
   outputs = [ "out" "dev" ];