nixpkgs/pkgs/games/bzflag/default.nix

26 lines
763 B
Nix
Raw Normal View History

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