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

stdenv.mkDerivation rec {
  name = "bzflag-2.4.2";

  src = fetchurl {
    url = mirror://sourceforge/bzflag/bzflag-2.4.2.tar.bz2;
    sha256 = "04f8c83hfwwh4i74gxqqdbgc2r5hn9ayam986py3jjychhicaysg";
  };

  buildInputs = [ curl SDL mesa glew ncurses ];

  meta = {
    description = "Multiplayer 3D Tank game";
    homepage = http://bzflag.org/;
    license = "LGPLv2.1+";
  };
}