Merge pull request #196854 from jansol/SDL2main-fix

Fixes https://github.com/NixOS/nixpkgs/issues/200022
This commit is contained in:
Martin Weinelt
2022-11-07 18:18:15 +01:00
committed by GitHub
+2 -2
View File
@@ -59,11 +59,11 @@ with lib;
stdenv.mkDerivation rec {
pname = "SDL2";
version = "2.24.0";
version = "2.24.2";
src = fetchurl {
url = "https://www.libsdl.org/release/${pname}-${version}.tar.gz";
sha256 = "sha256-keTDSxdo+S05mweOFxRIxq8Yyv2nQ5h+0gZKKJVNbZc=";
sha256 = "sha256-s17wqAKwnZDtOt0NysDpWCCAQgKRT1u3sP63EPGhMp8=";
};
dontDisableStatic = if withStatic then 1 else 0;
outputs = [ "out" "dev" ];