SDL2_{gfx,image,net}: Broken on Darwin

Last successful Darwin build was 11 months ago, presumably nobody cares.

http://hydra.nixos.org/build/38317749
http://hydra.nixos.org/build/38318268
http://hydra.nixos.org/build/38322306
This commit is contained in:
Tuomas Tynkkynen 2016-08-06 18:25:51 +03:00
parent 22281009b7
commit 89c867196c
3 changed files with 19 additions and 19 deletions

View file

@ -1,4 +1,4 @@
{stdenv, fetchsvn, SDL2} :
{stdenv, fetchsvn, SDL2}:
let rev = 5; in
stdenv.mkDerivation rec {
@ -27,8 +27,8 @@ stdenv.mkDerivation rec {
meta = {
description = "SDL graphics drawing primitives and support functions";
longDescription =
'' The SDL_gfx library evolved out of the SDL_gfxPrimitives code
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.
@ -49,6 +49,6 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.lgpl2Plus;
maintainers = [ stdenv.lib.maintainers.bjg ];
platforms = stdenv.lib.platforms.unix;
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -22,6 +22,6 @@ stdenv.mkDerivation rec {
meta = {
description = "SDL image library";
homepage = "http://www.libsdl.org/projects/SDL_image/";
platforms = stdenv.lib.platforms.unix;
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -17,6 +17,6 @@ stdenv.mkDerivation rec {
homepage = https://www.libsdl.org/projects/SDL_net;
license = licenses.zlib;
maintainers = [ maintainers.MP2E ];
platforms = platforms.all;
platforms = platforms.linux;
};
}