about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/SDL2_net
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/SDL2_net')
-rw-r--r--nixpkgs/pkgs/development/libraries/SDL2_net/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/SDL2_net/default.nix b/nixpkgs/pkgs/development/libraries/SDL2_net/default.nix
new file mode 100644
index 000000000000..b07d860cf0c3
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/SDL2_net/default.nix
@@ -0,0 +1,30 @@
+{ lib, stdenv, pkg-config, darwin, fetchurl, SDL2 }:
+
+stdenv.mkDerivation rec {
+  pname = "SDL2_net";
+  version = "2.2.0";
+
+  src = fetchurl {
+    url = "https://www.libsdl.org/projects/SDL_net/release/${pname}-${version}.tar.gz";
+    sha256 = "sha256-TkqJGYgxYnGXT/TpWF7R73KaEj0iwIvUcxKRedyFf+s=";
+  };
+
+  outputs = [ "out" "dev" ];
+
+  nativeBuildInputs = [ pkg-config ];
+
+  buildInputs = lib.optional stdenv.isDarwin darwin.libobjc;
+
+  configureFlags = [ "--disable-examples" ]
+  ++ lib.optional stdenv.isDarwin "--disable-sdltest";
+
+  propagatedBuildInputs = [ SDL2 ];
+
+  meta = with lib; {
+    description = "SDL multiplatform networking library";
+    homepage = "https://www.libsdl.org/projects/SDL_net";
+    license = licenses.zlib;
+    maintainers = with maintainers; [ MP2E ];
+    platforms = platforms.unix;
+  };
+}