* 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:
6
pkgs/development/compilers/nasm/builder.sh
Normal file
6
pkgs/development/compilers/nasm/builder.sh
Normal file
@@ -0,0 +1,6 @@
|
||||
. $stdenv/setup
|
||||
|
||||
mkdir -p $out/bin
|
||||
mkdir -p $out/man/man1
|
||||
|
||||
genericBuild
|
||||
10
pkgs/development/compilers/nasm/default.nix
Normal file
10
pkgs/development/compilers/nasm/default.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "nasm-0.98.38";
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = http://heanet.dl.sourceforge.net/sourceforge/nasm/nasm-0.98.38.tar.bz2;
|
||||
md5 = "9f682490c132b070d54e395cb6ee145e";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user