mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
121 lines
3.2 KiB
Nix
121 lines
3.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
makeDesktopItem,
|
|
makeWrapper,
|
|
cmake,
|
|
libjpeg,
|
|
zlib,
|
|
libpng,
|
|
libGL,
|
|
SDL2,
|
|
unstableGitUpdater,
|
|
}:
|
|
|
|
let
|
|
jamp = makeDesktopItem rec {
|
|
name = "jamp";
|
|
exec = name;
|
|
icon = "OpenJK_Icon_128";
|
|
comment = "Open Source Jedi Academy game released by Raven Software";
|
|
desktopName = "Jedi Academy (Multi Player)";
|
|
genericName = "Jedi Academy";
|
|
categories = [ "Game" ];
|
|
};
|
|
jasp = makeDesktopItem rec {
|
|
name = "jasp";
|
|
exec = name;
|
|
icon = "OpenJK_Icon_128";
|
|
comment = "Open Source Jedi Academy game released by Raven Software";
|
|
desktopName = "Jedi Academy (Single Player)";
|
|
genericName = "Jedi Academy";
|
|
categories = [ "Game" ];
|
|
};
|
|
josp = makeDesktopItem rec {
|
|
name = "josp";
|
|
exec = name;
|
|
icon = "OpenJK_Icon_128";
|
|
comment = "Open Source Jedi Outcast game released by Raven Software";
|
|
desktopName = "Jedi Outcast (Single Player)";
|
|
genericName = "Jedi Outcast";
|
|
categories = [ "Game" ];
|
|
};
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "openjk";
|
|
version = "0-unstable-2024-04-07";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JACoders";
|
|
repo = "OpenJK";
|
|
rev = "2815211a87ccb8de1b0ee090d429a63f47e0ac7a";
|
|
hash = "sha256-F3JF6jFgyMinIZ7dZAJ0ugGrJFianh2b6dX5A4iEnns=";
|
|
};
|
|
|
|
dontAddPrefix = true;
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
cmake
|
|
];
|
|
buildInputs = [
|
|
libjpeg
|
|
zlib
|
|
libpng
|
|
libGL
|
|
SDL2
|
|
];
|
|
|
|
outputs = [
|
|
"out"
|
|
"openjo"
|
|
"openja"
|
|
];
|
|
|
|
# move from $out/JediAcademy to $out/opt/JediAcademy
|
|
preConfigure = ''
|
|
cmakeFlagsArray=("-DCMAKE_INSTALL_PREFIX=$out/opt")
|
|
'';
|
|
cmakeFlags = [
|
|
"-DBuildJK2SPEngine:BOOL=ON"
|
|
"-DBuildJK2SPGame:BOOL=ON"
|
|
"-DBuildJK2SPRdVanilla:BOOL=ON"
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/bin $openja/bin $openjo/bin
|
|
mkdir -p $openja/share/applications $openjo/share/applications
|
|
mkdir -p $openja/share/icons/hicolor/128x128/apps $openjo/share/icons/hicolor/128x128/apps
|
|
mkdir -p $openja/opt $openjo/opt
|
|
mv $out/opt/JediAcademy $openja/opt/
|
|
mv $out/opt/JediOutcast $openjo/opt/
|
|
jaPrefix=$openja/opt/JediAcademy
|
|
joPrefix=$openjo/opt/JediOutcast
|
|
|
|
makeWrapper $jaPrefix/openjk.* $openja/bin/jamp --chdir "$jaPrefix"
|
|
makeWrapper $jaPrefix/openjk_sp.* $openja/bin/jasp --chdir "$jaPrefix"
|
|
makeWrapper $jaPrefix/openjkded.* $openja/bin/openjkded --chdir "$jaPrefix"
|
|
makeWrapper $joPrefix/openjo_sp.* $openjo/bin/josp --chdir "$joPrefix"
|
|
|
|
cp $src/shared/icons/OpenJK_Icon_128.png $openjo/share/icons/hicolor/128x128/apps
|
|
cp $src/shared/icons/OpenJK_Icon_128.png $openja/share/icons/hicolor/128x128/apps
|
|
ln -s ${jamp}/share/applications/* $openja/share/applications
|
|
ln -s ${jasp}/share/applications/* $openja/share/applications
|
|
ln -s ${josp}/share/applications/* $openjo/share/applications
|
|
ln -s $openja/bin/* $out/bin
|
|
ln -s $openjo/bin/* $out/bin
|
|
rm -rf $out/opt
|
|
'';
|
|
|
|
passthru.updateScript = unstableGitUpdater { };
|
|
|
|
meta = with lib; {
|
|
description = "Open-source engine for Star Wars Jedi Academy game";
|
|
homepage = "https://github.com/JACoders/OpenJK";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ tgunnoe ];
|
|
};
|
|
}
|