2023-11-05 15:55:04 +00:00
|
|
|
{ lib, stdenv, darwin, fetchurl, pkg-config, SDL2, testers }:
|
2013-07-06 06:40:50 +00:00
|
|
|
|
2023-11-05 15:55:04 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2018-03-06 10:25:19 +00:00
|
|
|
pname = "SDL2_gfx";
|
|
|
|
version = "1.0.4";
|
2013-07-06 06:40:50 +00:00
|
|
|
|
2016-08-22 03:25:02 +00:00
|
|
|
src = fetchurl {
|
2023-11-05 15:55:04 +00:00
|
|
|
url = "http://www.ferzkopp.net/Software/${finalAttrs.pname}/${finalAttrs.pname}-${finalAttrs.version}.tar.gz";
|
2018-03-06 10:25:19 +00:00
|
|
|
sha256 = "0qk2ax7f7grlxb13ba0ll3zlm8780s7j8fmrhlpxzjgdvldf1q33";
|
2013-07-06 06:40:50 +00:00
|
|
|
};
|
|
|
|
|
2021-11-01 09:54:36 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
2018-01-20 21:57:44 +00:00
|
|
|
buildInputs = [ SDL2 ]
|
2021-01-21 17:00:13 +00:00
|
|
|
++ lib.optional stdenv.isDarwin darwin.libobjc;
|
2013-07-06 06:40:50 +00:00
|
|
|
|
2021-11-21 01:50:41 +00:00
|
|
|
configureFlags = [(if stdenv.hostPlatform.isx86 then "--enable-mmx" else "--disable-mmx")]
|
2021-01-21 17:00:13 +00:00
|
|
|
++ lib.optional stdenv.isDarwin "--disable-sdltest";
|
2013-07-06 06:40:50 +00:00
|
|
|
|
2023-11-05 15:55:04 +00:00
|
|
|
passthru.tests.pkg-config = testers.hasPkgConfigModules {
|
|
|
|
package = finalAttrs.finalPackage;
|
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2013-07-06 06:40:50 +00:00
|
|
|
description = "SDL graphics drawing primitives and support functions";
|
|
|
|
|
2016-08-06 15:25:51 +00: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 06:40:50 +00:00
|
|
|
|
2016-08-06 15:25:51 +00:00
|
|
|
The current components of the SDL_gfx library are:
|
2013-07-06 06:40:50 +00:00
|
|
|
|
2016-08-06 15:25:51 +00: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 06:40:50 +00:00
|
|
|
|
2016-08-06 15:25:51 +00: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 06:40:50 +00:00
|
|
|
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/";
|
2016-08-22 03:25:02 +00:00
|
|
|
license = licenses.zlib;
|
2018-03-06 10:25:19 +00:00
|
|
|
maintainers = with maintainers; [ cpages ];
|
2018-01-20 15:26:21 +00:00
|
|
|
platforms = platforms.unix;
|
2023-11-05 15:55:04 +00:00
|
|
|
pkgConfigModules = [ "SDL2_gfx" ];
|
2013-07-06 06:40:50 +00:00
|
|
|
};
|
2023-11-05 15:55:04 +00:00
|
|
|
})
|