97182f0bcb
They expected to sit in the same directory as the SDL headers. svn path=/nixpkgs/trunk/; revision=26574
30 lines
770 B
Nix
30 lines
770 B
Nix
{ stdenv, fetchurl, SDL, libpng, libjpeg, libtiff, libungif, libXpm }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "SDL_image";
|
|
version = "1.2.10";
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.libsdl.org/projects/${pname}/release/${name}.tar.gz";
|
|
sha256 = "0xhqw56xgc0rn3ziccirib8ai2whbbidjmvig527n9znjlg5vq3m";
|
|
};
|
|
|
|
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 $out/include/SDL/SDL_image.h $out/include/
|
|
'';
|
|
|
|
meta = {
|
|
description = "SDL image library";
|
|
};
|
|
}
|