nixpkgs/pkgs/games/bzflag/default.nix

26 lines
763 B
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, pkg-config
2019-11-10 19:44:34 +03:00
, curl, SDL2, libGLU, libGL, glew, ncurses, c-ares
2018-12-23 02:01:20 +03:00
, Carbon, CoreServices }:
stdenv.mkDerivation rec {
2017-02-28 17:59:14 +03:00
pname = "bzflag";
2021-03-03 09:28:25 +03:00
version = "2.4.22";
src = fetchurl {
url = "https://download.bzflag.org/${pname}/source/${version}/${pname}-${version}.tar.bz2";
2021-03-03 09:28:25 +03:00
sha256 = "sha256-nmRlMwK2V72LX5b+EVCp/4Ch1Tptfoo1E4xrGwIAak0=";
};
nativeBuildInputs = [ pkg-config ];
2019-11-10 19:44:34 +03:00
buildInputs = [ curl SDL2 libGLU libGL glew ncurses c-ares ]
2018-12-23 02:01:20 +03:00
++ lib.optionals stdenv.isDarwin [ Carbon CoreServices ];
2017-02-28 17:59:14 +03:00
meta = with lib; {
description = "Multiplayer 3D Tank game";
homepage = "https://bzflag.org/";
2017-02-28 17:59:14 +03:00
license = licenses.lgpl21Plus;
2018-12-23 02:01:20 +03:00
platforms = platforms.unix;
2017-02-28 17:59:14 +03:00
maintainers = with maintainers; [ fpletz ];
};
}