2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, cmake, fetchurl, pkg-config, SDL, SDL_mixer, SDL_net, wxGTK30 }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "odamex";
|
2021-12-19 01:06:50 +00:00
|
|
|
version = "0.9.5";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/${pname}/${pname}-src-${version}.tar.bz2";
|
2021-12-19 01:06:50 +00:00
|
|
|
sha256 = "sha256-WBqO5fWzemw1kYlY192v0nnZkbIEVuWmjWYMy+1ODPQ=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ SDL SDL_mixer SDL_net wxGTK30 ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://odamex.net/";
|
|
|
|
description = "A client/server port for playing old-school Doom online";
|
2021-01-15 22:18:51 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = with lib.maintainers; [ MP2E ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|