mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
758b6fa94b
- Add desktop item - Use `finalAttrs` pattern - Sort attributes and parameters naturally - Update license - Add `meta.mainProgram` attribute - Add `drupol` as maintainer
123 lines
2.7 KiB
Nix
123 lines
2.7 KiB
Nix
{ lib
|
|
, fetchzip
|
|
, fetchFromGitHub
|
|
, stdenv
|
|
, fetchpatch
|
|
, copyDesktopItems
|
|
, curl
|
|
, makeBinaryWrapper
|
|
, pkg-config
|
|
, which
|
|
, freetype
|
|
, libglvnd
|
|
, libogg
|
|
, libvorbis
|
|
, libxmp
|
|
, openal
|
|
, SDL2
|
|
, speex
|
|
, makeDesktopItem
|
|
}:
|
|
|
|
let
|
|
openarena-maps = fetchzip {
|
|
name = "openarena-maps";
|
|
url = "https://download.tuxfamily.org/openarena/rel/088/openarena-0.8.8.zip";
|
|
hash = "sha256-Rup1n14k9sKcyVFYzFqPYV+BEBCnUNwpnFsnyGrhl20=";
|
|
};
|
|
|
|
openarena-source = fetchFromGitHub {
|
|
name = "openarena-source";
|
|
owner = "OpenArena";
|
|
repo = "engine";
|
|
rev = "075cb860a4d2bc43e75e5f506eba7da877708aba";
|
|
hash = "sha256-ofQKQyS3ti5TSN+zqwPFYuJiB9kvdER6zTWn8yrOpQU=";
|
|
};
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "openarena";
|
|
version = "unstable-2023-03-02";
|
|
|
|
srcs = [
|
|
openarena-source
|
|
openarena-maps
|
|
];
|
|
|
|
sourceRoot = "openarena-source";
|
|
|
|
patches = [
|
|
# Fix Makefile `copyFiles` target
|
|
# Related upstream issue: https://github.com/OpenArena/engine/issues/83
|
|
(fetchpatch {
|
|
url = "https://github.com/OpenArena/engine/commit/f2b424bd332e90a1e2592edd21c62bdb8cd05214.patch";
|
|
hash = "sha256-legiXLtZAeG2t1esiBa37qkAgxPJVM7JLhjpxGUmWCo=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
copyDesktopItems
|
|
curl
|
|
makeBinaryWrapper
|
|
pkg-config
|
|
which
|
|
];
|
|
|
|
buildInputs = [
|
|
freetype
|
|
libglvnd
|
|
libogg
|
|
libvorbis
|
|
libxmp
|
|
openal
|
|
SDL2
|
|
speex
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = [
|
|
"USE_INTERNAL_LIBS=0"
|
|
"USE_FREETYPE=1"
|
|
"USE_OPENAL_DLOPEN=0"
|
|
"USE_CURL_DLOPEN=0"
|
|
"ARCH=${stdenv.hostPlatform.linuxArch}"
|
|
];
|
|
|
|
installTargets = [ "copyfiles" ];
|
|
installFlags = [ "COPYDIR=$(out)/share/openarena" ];
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/share/openarena
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -Dm644 misc/quake3.svg $out/share/icons/hicolor/scalable/apps/openarena.svg
|
|
|
|
makeWrapper $out/share/openarena/openarena.* $out/bin/openarena
|
|
makeWrapper $out/share/openarena/oa_ded.* $out/bin/oa_ded
|
|
|
|
ln -s ${openarena-maps}/baseoa $out/share/openarena/baseoa
|
|
ln -s ${openarena-maps}/missionpack $out/share/openarena/missionpack
|
|
'';
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "OpenArena";
|
|
exec = "openarena";
|
|
icon = "openarena";
|
|
comment = "A fast-paced 3D first-person shooter, similar to id Software Inc.'s Quake III Arena";
|
|
desktopName = "openarena";
|
|
categories = [ "Game" "ActionGame" ];
|
|
})
|
|
];
|
|
|
|
meta = {
|
|
description = "A fast-paced 3D first-person shooter, similar to id Software Inc.'s Quake III Arena";
|
|
homepage = "http://openarena.ws/";
|
|
license = lib.licenses.gpl2Plus;
|
|
mainProgram = "openarena";
|
|
maintainers = with lib.maintainers; [ drupol wyvie ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|