571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
117 lines
2.6 KiB
Nix
117 lines
2.6 KiB
Nix
{ lib
|
|
, fetchzip
|
|
, fetchFromGitHub
|
|
, stdenv
|
|
, fetchpatch
|
|
, copyDesktopItems
|
|
, curl
|
|
, makeBinaryWrapper
|
|
, pkg-config
|
|
, which
|
|
, freetype
|
|
, libglvnd
|
|
, libjpeg
|
|
, libogg
|
|
, libvorbis
|
|
, libxmp
|
|
, openal
|
|
, SDL2
|
|
, speex
|
|
, makeDesktopItem
|
|
, nixosTests
|
|
}:
|
|
|
|
let
|
|
openarena-maps = fetchzip {
|
|
name = "openarena-maps";
|
|
url = "https://download.tuxfamily.org/openarena/rel/088/openarena-0.8.8.zip";
|
|
hash = "sha256-Rup1n14k9sKcyVFYzFqPYV+BEBCnUNwpnFsnyGrhl20=";
|
|
};
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "openarena";
|
|
version = "unstable-2023-03-02";
|
|
|
|
src = fetchFromGitHub {
|
|
name = "openarena-source";
|
|
owner = "OpenArena";
|
|
repo = "engine";
|
|
rev = "075cb860a4d2bc43e75e5f506eba7da877708aba";
|
|
hash = "sha256-ofQKQyS3ti5TSN+zqwPFYuJiB9kvdER6zTWn8yrOpQU=";
|
|
};
|
|
|
|
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
|
|
libjpeg
|
|
libogg
|
|
libvorbis
|
|
libxmp
|
|
openal
|
|
SDL2
|
|
speex
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
preConfigure = ''
|
|
cp ${./Makefile.local} ./Makefile.local
|
|
'';
|
|
|
|
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" ];
|
|
})
|
|
];
|
|
|
|
passthru.tests = { inherit (nixosTests) openarena; };
|
|
|
|
meta = {
|
|
description = "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;
|
|
};
|
|
})
|