2021-01-21 20:00:13 +03:00
|
|
|
{ lib, stdenv, darwin, fetchurl, SDL2 }:
|
2013-07-06 10:40:50 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-06 13:25:19 +03:00
|
|
|
pname = "SDL2_gfx";
|
|
|
|
version = "1.0.4";
|
2013-07-06 10:40:50 +04:00
|
|
|
|
2016-08-22 06:25:02 +03:00
|
|
|
src = fetchurl {
|
2019-08-15 15:41:18 +03:00
|
|
|
url = "http://www.ferzkopp.net/Software/${pname}/${pname}-${version}.tar.gz";
|
2018-03-06 13:25:19 +03:00
|
|
|
sha256 = "0qk2ax7f7grlxb13ba0ll3zlm8780s7j8fmrhlpxzjgdvldf1q33";
|
2013-07-06 10:40:50 +04:00
|
|
|
};
|
|
|
|
|
2018-01-21 00:57:44 +03:00
|
|
|
buildInputs = [ SDL2 ]
|
2021-01-21 20:00:13 +03:00
|
|
|
++ lib.optional stdenv.isDarwin darwin.libobjc;
|
2013-07-06 10:40:50 +04:00
|
|
|
|
2018-06-07 02:18:00 +03:00
|
|
|
configureFlags = [(if stdenv.isi686 || stdenv.isx86_64 then "--enable-mmx" else "--disable-mmx")]
|
2021-01-21 20:00:13 +03:00
|
|
|
++ lib.optional stdenv.isDarwin "--disable-sdltest";
|
2013-07-06 10:40:50 +04:00
|
|
|
|
2021-01-21 20:00:13 +03:00
|
|
|
meta = with lib; {
|
2013-07-06 10:40:50 +04:00
|
|
|
description = "SDL graphics drawing primitives and support functions";
|
|
|
|
|
2016-08-06 18:25:51 +03:00
|
|
|
longDescription = ''
|
|
|
|
The SDL_gfx library evolved out of the SDL_gfxPrimitives code
|
|
|
|
which provided basic drawing routines such as lines, circles or
|
|
|
|
polygons and SDL_rotozoom which implemented a interpolating
|
|
|
|
rotozoomer for SDL surfaces.
|
2013-07-06 10:40:50 +04:00
|
|
|
|
2016-08-06 18:25:51 +03:00
|
|
|
The current components of the SDL_gfx library are:
|
2013-07-06 10:40:50 +04:00
|
|
|
|
2016-08-06 18:25:51 +03:00
|
|
|
* Graphic Primitives (SDL_gfxPrimitves.h)
|
|
|
|
* Rotozoomer (SDL_rotozoom.h)
|
|
|
|
* Framerate control (SDL_framerate.h)
|
|
|
|
* MMX image filters (SDL_imageFilter.h)
|
|
|
|
* Custom Blit functions (SDL_gfxBlitFunc.h)
|
2013-07-06 10:40:50 +04:00
|
|
|
|
2016-08-06 18:25:51 +03:00
|
|
|
The library is backwards compatible to the above mentioned
|
|
|
|
code. Its is written in plain C and can be used in C++ code.
|
|
|
|
'';
|
2013-07-06 10:40:50 +04:00
|
|
|
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "http://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/";
|
2016-08-22 06:25:02 +03:00
|
|
|
license = licenses.zlib;
|
2018-03-06 13:25:19 +03:00
|
|
|
maintainers = with maintainers; [ cpages ];
|
2018-01-20 18:26:21 +03:00
|
|
|
platforms = platforms.unix;
|
2013-07-06 10:40:50 +04:00
|
|
|
};
|
|
|
|
}
|