about summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL2
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2023-08-12 07:32:05 +0100
committerSergei Trofimovich <slyich@gmail.com>2023-08-12 07:32:05 +0100
commit0c23400bf9b258ec5c8808699572529c6399f1da (patch)
treecf82790a91a3d9d944e604f656a9031872d75b49 /pkgs/development/libraries/SDL2
parent7ad1b2d4e1eb8f7b127271f2540db60eee0c6be0 (diff)
SDL2: 2.28.1 -> 2.28.2
Changes: https://github.com/libsdl-org/SDL/releases/tag/release-2.28.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 aa1cd1d809f0f..4c8c7ed8f435c 100644
--- a/pkgs/development/libraries/SDL2/default.nix
+++ b/pkgs/development/libraries/SDL2/default.nix
@@ -55,11 +55,11 @@
 
 stdenv.mkDerivation rec {
   pname = "SDL2";
-  version = "2.28.1";
+  version = "2.28.2";
 
   src = fetchurl {
     url = "https://www.libsdl.org/release/${pname}-${version}.tar.gz";
-    sha256 = "sha256-SXfOulwAVNvmwvEUZBrO1DzjvytB6mS2o3LWuhKcsV0=";
+    hash = "sha256-ZLEQL6Igk1FbAu8z3Yc53uG6V+nbumoJKUK4u+0aHF4=";
   };
   dontDisableStatic = if withStatic then 1 else 0;
   outputs = [ "out" "dev" ];