* An example of supporting legacy applications using dosbox ;-)

svn path=/nixpkgs/trunk/; revision=6895
This commit is contained in:
Eelco Dolstra
2006-10-28 22:28:35 +00:00
parent f95a93197a
commit c391e5855b
4 changed files with 60 additions and 8 deletions
+16
View File
@@ -0,0 +1,16 @@
{stdenv, fetchurl, dosbox, unzip}:
stdenv.mkDerivation {
name = "keen4";
builder = ./builder.sh;
dist = /home/eelco/keen4.zip;
buildInputs = [unzip];
inherit dosbox;
meta = {
description = "Commander Keen Episode 4: Secret of the Oracle";
};
}