From 8e8be88067fc568d81f88ad6a93fd03218d9ca60 Mon Sep 17 00:00:00 2001 From: superherointj <5861043+superherointj@users.noreply.github.com> Date: Sat, 11 Mar 2023 11:52:03 -0300 Subject: [PATCH 1/2] SDL2: 2.26.3 -> 2.26.4 Release: https://github.com/libsdl-org/SDL/releases/tag/release-2.26.4 --- pkgs/development/libraries/SDL2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/SDL2/default.nix b/pkgs/development/libraries/SDL2/default.nix index 91f0af4e7ea16..6bf606c5a233c 100644 --- a/pkgs/development/libraries/SDL2/default.nix +++ b/pkgs/development/libraries/SDL2/default.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { pname = "SDL2"; - version = "2.26.3"; + version = "2.26.4"; src = fetchurl { url = "https://www.libsdl.org/release/${pname}-${version}.tar.gz"; - sha256 = "sha256-xmEgWlU7fSUkJfS3Uf8TIJ5eAguHa7+hWYSUr2F5AFc="; + sha256 = "sha256-Gg9oZJj7dorZ8/gLOQN6fQBurAk6rTnLTrzIMqiIcjE="; }; dontDisableStatic = if withStatic then 1 else 0; outputs = [ "out" "dev" ]; From 490e77ce0aca322268bd64c3508e26be2fc784f1 Mon Sep 17 00:00:00 2001 From: superherointj <5861043+superherointj@users.noreply.github.com> Date: Sat, 11 Mar 2023 11:55:48 -0300 Subject: [PATCH 2/2] SDL2: add superherointj as maintainer --- pkgs/development/libraries/SDL2/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/SDL2/default.nix b/pkgs/development/libraries/SDL2/default.nix index 6bf606c5a233c..520a3fd8af3ff 100644 --- a/pkgs/development/libraries/SDL2/default.nix +++ b/pkgs/development/libraries/SDL2/default.nix @@ -173,6 +173,6 @@ stdenv.mkDerivation rec { homepage = "http://www.libsdl.org/"; license = licenses.zlib; platforms = platforms.all; - maintainers = with maintainers; [ cpages ]; + maintainers = with maintainers; [ cpages superherointj ]; }; }