nixpkgs/pkgs/games/keen4/default.nix
Eelco Dolstra ef4fe4f102 * Use a proper distribution.
svn path=/nixpkgs/trunk/; revision=6896
2006-10-28 22:31:46 +00:00

20 lines
369 B
Nix

{stdenv, fetchurl, dosbox, unzip}:
stdenv.mkDerivation {
name = "keen4";
builder = ./builder.sh;
dist = fetchurl {
url = http://losser.st-lab.cs.uu.nl/~eelco/dist/keen4.zip;
md5 = "ffcdd9e3bce224d92797166bc3f56f1c";
};
buildInputs = [unzip];
inherit dosbox;
meta = {
description = "Commander Keen Episode 4: Secret of the Oracle";
};
}