From f6b4a177c8553e14f4d7a306bf3b5d426890be84 Mon Sep 17 00:00:00 2001 From: jo! Date: Sat, 24 Dec 2022 13:50:43 +0000 Subject: [PATCH] SDL2-net: 2.0.1 -> 2.2.0 --- pkgs/development/libraries/SDL2_net/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/SDL2_net/default.nix b/pkgs/development/libraries/SDL2_net/default.nix index 81261605388e..5239f3c6546e 100644 --- a/pkgs/development/libraries/SDL2_net/default.nix +++ b/pkgs/development/libraries/SDL2_net/default.nix @@ -2,18 +2,19 @@ stdenv.mkDerivation rec { pname = "SDL2_net"; - version = "2.0.1"; + version = "2.2.0"; src = fetchurl { url = "https://www.libsdl.org/projects/SDL_net/release/${pname}-${version}.tar.gz"; - sha256 = "08cxc1bicmyk89kiks7izw1rlx5ng5n6xpy8fy0zxni3b9z8mkhm"; + sha256 = "sha256-TkqJGYgxYnGXT/TpWF7R73KaEj0iwIvUcxKRedyFf+s="; }; nativeBuildInputs = [ pkg-config ]; buildInputs = lib.optional stdenv.isDarwin darwin.libobjc; - configureFlags = lib.optional stdenv.isDarwin "--disable-sdltest"; + configureFlags = [ "--disable-examples" ] + ++ lib.optional stdenv.isDarwin "--disable-sdltest"; propagatedBuildInputs = [ SDL2 ];