python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / SDL2_gfx / default.nix
blob3d599c39c05b5cac53b87a0cb6b77c0db01d269c
1 { lib, stdenv, darwin, fetchurl, pkg-config, SDL2 }:
3 stdenv.mkDerivation rec {
4   pname = "SDL2_gfx";
5   version = "1.0.4";
7   src = fetchurl {
8     url = "http://www.ferzkopp.net/Software/${pname}/${pname}-${version}.tar.gz";
9     sha256 = "0qk2ax7f7grlxb13ba0ll3zlm8780s7j8fmrhlpxzjgdvldf1q33";
10   };
12   nativeBuildInputs = [ pkg-config ];
14   buildInputs = [ SDL2 ]
15     ++ lib.optional stdenv.isDarwin darwin.libobjc;
17   configureFlags = [(if stdenv.hostPlatform.isx86 then "--enable-mmx" else "--disable-mmx")]
18      ++ lib.optional stdenv.isDarwin "--disable-sdltest";
20   meta = with lib; {
21     description = "SDL graphics drawing primitives and support functions";
23     longDescription = ''
24       The SDL_gfx library evolved out of the SDL_gfxPrimitives code
25       which provided basic drawing routines such as lines, circles or
26       polygons and SDL_rotozoom which implemented a interpolating
27       rotozoomer for SDL surfaces.
29       The current components of the SDL_gfx library are:
31           * Graphic Primitives (SDL_gfxPrimitves.h)
32           * Rotozoomer (SDL_rotozoom.h)
33           * Framerate control (SDL_framerate.h)
34           * MMX image filters (SDL_imageFilter.h)
35           * Custom Blit functions (SDL_gfxBlitFunc.h)
37       The library is backwards compatible to the above mentioned
38       code. Its is written in plain C and can be used in C++ code.
39     '';
41     homepage = "http://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/";
42     license = licenses.zlib;
43     maintainers = with maintainers; [ cpages ];
44     platforms = platforms.unix;
45   };