2016-03-07 22:02:32 +00:00
|
|
|
{ lib, stdenv, fetchurl, dosbox, unzip }:
|
2006-10-28 22:28:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "keen4";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
|
2006-10-28 22:31:46 +00:00
|
|
|
dist = fetchurl {
|
2013-06-25 12:05:48 +00:00
|
|
|
url = http://tarballs.nixos.org/keen4.zip;
|
2014-10-12 14:13:21 +00:00
|
|
|
sha256 = "12rnc9ksl7v6l8wsxvr26ylkafzq80dbsa7yafzw9pqc8pafkhx1";
|
2006-10-28 22:31:46 +00:00
|
|
|
};
|
2006-10-28 22:28:35 +00:00
|
|
|
|
|
|
|
buildInputs = [unzip];
|
|
|
|
|
|
|
|
inherit dosbox;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Commander Keen Episode 4: Secret of the Oracle";
|
2016-03-07 22:02:32 +00:00
|
|
|
license = lib.licenses.unfree;
|
|
|
|
maintainers = [ lib.maintainers.eelco ];
|
2006-10-28 22:28:35 +00:00
|
|
|
};
|
|
|
|
}
|