summary refs log tree commit diff
path: root/pkgs/games/odamex/default.nix
blob: af9bccadeb3ea93d23ad2d3e5ee10ec0fa056c96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, cmake, fetchurl, pkgconfig, SDL, SDL_mixer, SDL_net, wxGTK30 }:

stdenv.mkDerivation rec {
  pname = "odamex";
  version = "0.8.2";

  src = fetchurl {
    url = "mirror://sourceforge/${pname}/${pname}-src-${version}.tar.bz2";
    sha256 = "0d4v1l7kghkz1xz92jxlx50x3iy94z7ix1i3209m5j5545qzxrqq";
  };

  nativeBuildInputs = [ cmake pkgconfig ];
  buildInputs = [ SDL SDL_mixer SDL_net wxGTK30 ];

  enableParallelBuilding = true;

  meta = {
    homepage = "http://odamex.net/";
    description = "A client/server port for playing old-school Doom online";
    license = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.linux;
    maintainers = with stdenv.lib.maintainers; [ MP2E ];
  };
}