summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL_image/default.nix
blob: 2aa122a8fb28021372e5a861ebdec3476f63d75a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchurl, SDL, libpng, libjpeg, libtiff, libungif, libXpm }:

stdenv.mkDerivation rec {
  name = "SDL_image-1.2.12";

  src = fetchurl {
    url    = "http://www.libsdl.org/projects/SDL_image/release/${name}.tar.gz";
    sha256 = "16an9slbb8ci7d89wakkmyfvp7c0cval8xw4hkg0842nhhlp540b";
  };

  buildInputs = [ SDL libpng libjpeg libtiff libungif libXpm ];

  postInstall = ''
    sed -i -e 's,"SDL.h",<SDL/SDL.h>,' \
      -e 's,"SDL_version.h",<SDL/SDL_version.h>,' \
      -e 's,"begin_code.h",<SDL/begin_code.h>,' \
      -e 's,"close_code.h",<SDL/close_code.h>,' \
      $out/include/SDL/SDL_image.h
    ln -sv SDL/SDL_image.h $out/include/SDL_image.h
  '';

  meta = with stdenv.lib; {
    description = "SDL image library";
    homepage    = http://www.libsdl.org/projects/SDL_image/;
    maintainers = with maintainers; [ lovek323 ];
    platforms   = platforms.linux;
  };
}