about summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL_gfx
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-05-02 09:27:45 +0000
committerLudovic Courtès <ludo@gnu.org>2010-05-02 09:27:45 +0000
commit61ec7e828d5c52c6f6d411ed13aebce446b3e35b (patch)
tree8f7e7f759218d95bbcbfa3b9c3d2a4d3d83aebf8 /pkgs/development/libraries/SDL_gfx
parent8da4605505cb49e2f931c12db69219a4d9f2eea9 (diff)
downloadnixlib-61ec7e828d5c52c6f6d411ed13aebce446b3e35b.tar
nixlib-61ec7e828d5c52c6f6d411ed13aebce446b3e35b.tar.gz
nixlib-61ec7e828d5c52c6f6d411ed13aebce446b3e35b.tar.bz2
nixlib-61ec7e828d5c52c6f6d411ed13aebce446b3e35b.tar.lz
nixlib-61ec7e828d5c52c6f6d411ed13aebce446b3e35b.tar.xz
nixlib-61ec7e828d5c52c6f6d411ed13aebce446b3e35b.tar.zst
nixlib-61ec7e828d5c52c6f6d411ed13aebce446b3e35b.zip
Add SDL_gfx.
Contributed by Brian Gough <bjg@gnu.org>.

svn path=/nixpkgs/trunk/; revision=21554
Diffstat (limited to 'pkgs/development/libraries/SDL_gfx')
-rw-r--r--pkgs/development/libraries/SDL_gfx/default.nix44
1 files changed, 44 insertions, 0 deletions
diff --git a/pkgs/development/libraries/SDL_gfx/default.nix b/pkgs/development/libraries/SDL_gfx/default.nix
new file mode 100644
index 000000000000..7f4ee8ac20ca
--- /dev/null
+++ b/pkgs/development/libraries/SDL_gfx/default.nix
@@ -0,0 +1,44 @@
+{stdenv, fetchurl, SDL} :
+
+stdenv.mkDerivation rec {
+  name = "SDL_gfx-2.0.20";
+
+  src = fetchurl {
+    url = "http://www.ferzkopp.net/Software/SDL_gfx-2.0/${name}.tar.gz";
+    sha256 = "0dyc1sj0ymv2ghmlgwfb2c6r07scbgmi2dfhmnddsb27y8wjqz4q";
+  };
+
+  buildInputs = [ SDL ] ;
+
+  configureFlags = "--disable-mmx";
+
+  postInstall = "ln -s $out/include/SDL/*.h $out/include/";
+
+  meta = {
+    description = "SDL graphics drawing primitives and support functions";
+
+    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.
+
+	 The current components of the SDL_gfx library are:
+
+	    * 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)
+
+	 The library is backwards compatible to the above mentioned
+         code. Its is written in plain C and can be used in C++ code.
+       '';
+
+    homepage = https://sourceforge.net/projects/sdlgfx/;
+    license = "LGPLv2+";
+
+    maintainers = [ stdenv.lib.maintainers.bjg ];
+    platforms = stdenv.lib.platforms.all;
+  };
+}