mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
26 lines
763 B
Nix
26 lines
763 B
Nix
{ stdenv, lib, fetchurl, pkg-config
|
|
, curl, SDL2, libGLU, libGL, glew, ncurses, c-ares
|
|
, Carbon, CoreServices }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bzflag";
|
|
version = "2.4.22";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.bzflag.org/${pname}/source/${version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "sha256-nmRlMwK2V72LX5b+EVCp/4Ch1Tptfoo1E4xrGwIAak0=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ curl SDL2 libGLU libGL glew ncurses c-ares ]
|
|
++ lib.optionals stdenv.isDarwin [ Carbon CoreServices ];
|
|
|
|
meta = with lib; {
|
|
description = "Multiplayer 3D Tank game";
|
|
homepage = "https://bzflag.org/";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
};
|
|
}
|