nixpkgs/pkgs/games/keen4/default.nix
Eelco Dolstra c391e5855b * An example of supporting legacy applications using dosbox ;-)
svn path=/nixpkgs/trunk/; revision=6895
2006-10-28 22:28:35 +00:00

17 lines
267 B
Nix

{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";
};
}