* Added Dosbox, a DOS (x86) emulator.

svn path=/nixpkgs/trunk/; revision=4331
This commit is contained in:
Eelco Dolstra 2005-12-03 02:32:02 +00:00
parent b6befed50e
commit b13100fbdc
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,10 @@
{stdenv, fetchurl, SDL}:
stdenv.mkDerivation {
name = "dosbox-0.63";
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/dosbox/dosbox-0.63.tar.gz;
md5 = "629413e41224ae9cdd115fdafd55cbdc";
};
buildInputs = [SDL];
}

View File

@ -1891,6 +1891,10 @@ rec {
inherit (gtkLibs1x) gtk;
};
dosbox = (import ../misc/emulators/dosbox) {
inherit fetchurl stdenv SDL;
};
tetex = (import ../misc/tex/tetex) {
inherit fetchurl stdenv flex bison zlib libpng ncurses ed;
};