nixpkgs/pkgs/games/bzflag/default.nix

27 lines
785 B
Nix
Raw Normal View History

2017-02-28 14:59:14 +00:00
{ stdenv, lib, fetchurl, pkgconfig
2018-12-22 23:01:20 +00:00
, curl, SDL2, libGLU_combined, glew, ncurses, c-ares
, Carbon, CoreServices }:
stdenv.mkDerivation rec {
2017-02-28 14:59:14 +00:00
name = "${pname}-${version}";
pname = "bzflag";
version = "2.4.18";
src = fetchurl {
2017-02-28 14:59:14 +00:00
url = "https://download.bzflag.org/${pname}/source/${version}/${name}.tar.bz2";
sha256 = "1gmz31wmn3f8zq1bfilkgbf4qmi4fa0c93cs76mhg8h978pm23cx";
};
2017-02-28 14:59:14 +00:00
nativeBuildInputs = [ pkgconfig ];
2018-12-22 23:01:20 +00:00
buildInputs = [ curl SDL2 libGLU_combined glew ncurses c-ares ]
++ lib.optionals stdenv.isDarwin [ Carbon CoreServices ];
2017-02-28 14:59:14 +00:00
meta = with lib; {
description = "Multiplayer 3D Tank game";
2017-06-19 23:57:23 +00:00
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 ];
};
}