nixpkgs/pkgs/development/libraries/SDL2_net/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
824 B
Nix
Raw Normal View History

2021-11-01 09:54:39 +00:00
{ lib, stdenv, pkg-config, darwin, fetchurl, SDL2 }:
2014-08-03 17:49:32 +00:00
stdenv.mkDerivation rec {
pname = "SDL2_net";
2022-12-24 13:50:43 +00:00
version = "2.2.0";
2014-08-03 17:49:32 +00:00
src = fetchurl {
url = "https://www.libsdl.org/projects/SDL_net/release/${pname}-${version}.tar.gz";
2022-12-24 13:50:43 +00:00
sha256 = "sha256-TkqJGYgxYnGXT/TpWF7R73KaEj0iwIvUcxKRedyFf+s=";
2014-08-03 17:49:32 +00:00
};
2023-04-15 17:34:06 +00:00
outputs = [ "out" "dev" ];
2021-11-01 09:54:39 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = lib.optional stdenv.isDarwin darwin.libobjc;
2022-12-24 13:50:43 +00:00
configureFlags = [ "--disable-examples" ]
++ lib.optional stdenv.isDarwin "--disable-sdltest";
propagatedBuildInputs = [ SDL2 ];
2014-08-03 17:49:32 +00:00
meta = with lib; {
2014-08-03 17:49:32 +00:00
description = "SDL multiplatform networking library";
homepage = "https://www.libsdl.org/projects/SDL_net";
2014-08-03 17:49:32 +00:00
license = licenses.zlib;
maintainers = with maintainers; [ MP2E ];
platforms = platforms.unix;
2014-08-03 17:49:32 +00:00
};
}