17 lines
267 B
Nix
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";
|
||
|
};
|
||
|
}
|