linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / SDL2_net / default.nix
blobfe6cb9445a39623a8e2e11aa7843046c6c336bcc
1 { lib, stdenv, darwin, fetchurl, SDL2 }:
3 stdenv.mkDerivation rec {
4   pname = "SDL2_net";
5   version = "2.0.1";
7   src = fetchurl {
8     url = "https://www.libsdl.org/projects/SDL_net/release/${pname}-${version}.tar.gz";
9     sha256 = "08cxc1bicmyk89kiks7izw1rlx5ng5n6xpy8fy0zxni3b9z8mkhm";
10   };
12   buildInputs = lib.optional stdenv.isDarwin darwin.libobjc;
14   configureFlags = lib.optional stdenv.isDarwin "--disable-sdltest";
16   propagatedBuildInputs = [ SDL2 ];
18   meta = with lib; {
19     description = "SDL multiplatform networking library";
20     homepage = "https://www.libsdl.org/projects/SDL_net";
21     license = licenses.zlib;
22     maintainers = with maintainers; [ MP2E ];
23     platforms = platforms.unix;
24   };