summary refs log tree commit diff
path: root/pkgs/games/hexen/default.nix
blob: 48379da3a0a4fa609eecc1e124de0742b6f0353c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl, SDL} :

stdenv.mkDerivation {
  name = "hexen-0.2.3";
  src = fetchurl {
    url = https://www.libsdl.org/projects/hexen/src/hexen-0.2.3.tar.gz;
    sha256 = "c1433e930f2003c5f817f935406bb28ba15298a15b1c11f83f42df3e9f1f3bc4";
  };

  buildInputs = [ SDL ];

  meta = {
    homepage = http://www.libsdl.org/projects/hexen/;
    description = "Port of Raven Software's popular Hexen 3-D shooter game";
    license = stdenv.lib.licenses.free;
    broken = true;
  };
}