nixpkgs/pkgs/games/bzflag/default.nix

26 lines
764 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";
2020-05-04 21:07:41 +00:00
version = "2.4.20";
src = fetchurl {
url = "https://download.bzflag.org/${pname}/source/${version}/${pname}-${version}.tar.bz2";
2020-05-04 21:07:41 +00:00
sha256 = "16brxqmfiyz4j4lb8ihzjcbwqmpsms6vm3ijbp34lnw0blbwdjb2";
};
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 ];
};
}