nixpkgs/pkgs/games/odamex/default.nix

23 lines
664 B
Nix
Raw Normal View History

2021-01-15 04:31:39 +00:00
{ lib, stdenv, cmake, fetchurl, pkgconfig, SDL, SDL_mixer, SDL_net, wxGTK30 }:
stdenv.mkDerivation rec {
pname = "odamex";
2020-04-10 06:08:02 +00:00
version = "0.8.2";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${pname}-src-${version}.tar.bz2";
2020-04-10 06:08:02 +00:00
sha256 = "0d4v1l7kghkz1xz92jxlx50x3iy94z7ix1i3209m5j5545qzxrqq";
};
nativeBuildInputs = [ cmake pkgconfig ];
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 04:31:39 +00:00
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ MP2E ];
};
}