2008-01-30 18:20:48 +01:00
|
|
|
args: with args;
|
|
|
|
stdenv.mkDerivation {
|
2007-08-09 19:33:18 +02:00
|
|
|
name = "SDL_image-1.2.6";
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
src = fetchurl {
|
2007-08-09 19:33:18 +02:00
|
|
|
url = http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-2.0.9.tar.gz;
|
|
|
|
sha256 = "0ls6anmlmwrmy21p3y9nfyl6fkwz4jpgh74kw7xd0hwbg5v8h95l";
|
|
|
|
};
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
buildInputs = [SDL freetype];
|
2007-08-09 19:33:18 +02:00
|
|
|
|
|
|
|
postInstall = "ln -s \${out}/include/SDL/SDL_ttf.h \${out}/include/";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "
|
|
|
|
SDL image library.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
}
|