1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 20:21:14 +00:00
nixpkgs/pkgs/games/keen4/default.nix

17 lines
267 B
Nix
Raw Normal View History

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