mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
c391e5855b
svn path=/nixpkgs/trunk/; revision=6895
16 lines
267 B
Nix
16 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";
|
|
};
|
|
}
|