nixpkgs/pkgs/games/bzflag/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
756 B
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, pkg-config
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";
2022-11-21 11:49:26 +01:00
version = "2.4.26";
src = fetchurl {
url = "https://download.bzflag.org/${pname}/source/${version}/${pname}-${version}.tar.bz2";
2022-11-21 11:49:26 +01:00
sha256 = "sha256-AYMEBf8mrR3FlafgaVyCTCeG5niGjZ/4Iq6xSsdIEBQ=";
};
nativeBuildInputs = [ pkg-config ];
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;
maintainers = with maintainers; [ ];
};
}