* Added SDL, Simple DirectMedia Layer.
* Added NASM, the Netwide Assembler. * Added Generator, an emulator for Sega Genesis / Mega Drive machines. Built with XVideo patch. Strangely it crashes with a GDK error when started in normal mode. However, with the "-a" switch (arcade mode) it works, and subsequently switching back to windowed mode (Ctrl-F) also works. svn path=/nixpkgs/trunk/; revision=1509
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
{stdenv, fetchurl, x11}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "SDL-1.2.7";
|
||||
src = fetchurl {
|
||||
url = http://www.libsdl.org/release/SDL-1.2.7.tar.gz;
|
||||
md5 = "d29b34b6ba3ed213893fc9d8d35e357a";
|
||||
};
|
||||
buildInputs = [x11];
|
||||
patches = [./gcc-3.4.patch];
|
||||
}
|
||||
Reference in New Issue
Block a user