nixpkgs/pkgs/games/bzflag/default.nix

26 lines
762 B
Nix
Raw Normal View History

2017-02-28 15:59:14 +01:00
{ stdenv, lib, fetchurl, pkgconfig
2019-11-10 17:44:34 +01:00
, curl, SDL2, libGLU, libGL, glew, ncurses, c-ares
2018-12-23 00:01:20 +01:00
, Carbon, CoreServices }:
stdenv.mkDerivation rec {
2017-02-28 15:59:14 +01:00
pname = "bzflag";
2020-05-04 23:07:41 +02:00
version = "2.4.20";
src = fetchurl {
url = "https://download.bzflag.org/${pname}/source/${version}/${pname}-${version}.tar.bz2";
2020-05-04 23:07:41 +02:00
sha256 = "16brxqmfiyz4j4lb8ihzjcbwqmpsms6vm3ijbp34lnw0blbwdjb2";
};
2017-02-28 15:59:14 +01:00
nativeBuildInputs = [ pkgconfig ];
2019-11-10 17:44:34 +01:00
buildInputs = [ curl SDL2 libGLU libGL glew ncurses c-ares ]
2018-12-23 00:01:20 +01:00
++ lib.optionals stdenv.isDarwin [ Carbon CoreServices ];
2017-02-28 15:59:14 +01:00
meta = with lib; {
description = "Multiplayer 3D Tank game";
homepage = "https://bzflag.org/";
2017-02-28 15:59:14 +01:00
license = licenses.lgpl21Plus;
2018-12-23 00:01:20 +01:00
platforms = platforms.unix;
2017-02-28 15:59:14 +01:00
maintainers = with maintainers; [ fpletz ];
};
}