openarena: compile from sources

- Add desktop item
- Use `finalAttrs` pattern
- Sort attributes and parameters naturally
- Update license
- Add `meta.mainProgram` attribute
- Add `drupol` as maintainer
This commit is contained in:
Pol Dellaiera 2023-08-18 09:58:31 +02:00
parent 30683ca1d4
commit 758b6fa94b
No known key found for this signature in database
GPG key ID: D476DFE9C67467CA

View file

@ -1,43 +1,122 @@
{ lib, fetchurl, makeWrapper, patchelf, pkgs, stdenv, SDL, libglvnd, libogg, libvorbis, curl, openal }:
{ lib
, fetchzip
, fetchFromGitHub
, stdenv
, fetchpatch
, copyDesktopItems
, curl
, makeBinaryWrapper
, pkg-config
, which
, freetype
, libglvnd
, libogg
, libvorbis
, libxmp
, openal
, SDL2
, speex
, makeDesktopItem
}:
stdenv.mkDerivation {
pname = "openarena";
version = "0.8.8";
src = fetchurl {
name = "openarena.zip";
url = "http://openarena.ws/request.php?4";
sha256 = "0jmc1cmdz1rcvqc9ilzib1kilpwap6v0d331l6q53wsibdzsz3ss";
let
openarena-maps = fetchzip {
name = "openarena-maps";
url = "https://download.tuxfamily.org/openarena/rel/088/openarena-0.8.8.zip";
hash = "sha256-Rup1n14k9sKcyVFYzFqPYV+BEBCnUNwpnFsnyGrhl20=";
};
nativeBuildInputs = [ pkgs.unzip patchelf makeWrapper];
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";
installPhase = let
gameDir = "$out/openarena-$version";
interpreter = "$(< \"$NIX_CC/nix-support/dynamic-linker\")";
libPath = lib.makeLibraryPath [ SDL libglvnd libogg libvorbis curl openal ];
arch = {
"x86_64-linux" = "x86_64";
"i386-linux" = "i386";
}.${stdenv.hostPlatform.system};
in ''
mkdir -pv $out/bin
cd $out
unzip $src
srcs = [
openarena-source
openarena-maps
];
patchelf --set-interpreter "${interpreter}" "${gameDir}/openarena.${arch}"
patchelf --set-interpreter "${interpreter}" "${gameDir}/oa_ded.${arch}"
sourceRoot = "openarena-source";
makeWrapper "${gameDir}/openarena.${arch}" "$out/bin/openarena" \
--prefix LD_LIBRARY_PATH : "${libPath}"
makeWrapper "${gameDir}/oa_ded.${arch}" "$out/bin/oa_ded"
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 = "Crossplatform openarena client";
description = "A fast-paced 3D first-person shooter, similar to id Software Inc.'s Quake III Arena";
homepage = "http://openarena.ws/";
maintainers = [ lib.maintainers.wyvie ];
platforms = [ "i386-linux" "x86_64-linux" ];
license = lib.licenses.gpl2;
license = lib.licenses.gpl2Plus;
mainProgram = "openarena";
maintainers = with lib.maintainers; [ drupol wyvie ];
platforms = lib.platforms.linux;
};
}
})