PrismLauncher/packages/nix/polymc/default.nix

100 lines
2.4 KiB
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, makeDesktopItem
, cmake
, ninja
, jdk8
, jdk
, zlib
, file
, makeWrapper
, xorg
, libpulseaudio
, qtbase
, libGL
2022-01-09 18:00:37 +00:00
, msaClientID ? ""
2022-01-09 06:08:39 +00:00
# flake
, self
, submoduleNbt
, submoduleQuazip
}:
2022-01-08 07:33:26 +00:00
let
2022-01-09 06:08:39 +00:00
# Libraries required to run Minecraft
libpath = with xorg; lib.makeLibraryPath [
libX11
libXext
libXcursor
libXrandr
libXxf86vm
libpulseaudio
libGL
2022-01-09 06:08:39 +00:00
];
# This variable will be passed to Minecraft by PolyMC
gameLibraryPath = libpath + ":/run/opengl-driver/lib";
in
2022-01-08 07:33:26 +00:00
mkDerivation rec {
pname = "polymc";
version = "nightly";
src = lib.cleanSource self;
nativeBuildInputs = [ cmake ninja file makeWrapper ];
2022-01-08 07:33:26 +00:00
buildInputs = [ qtbase jdk8 zlib ];
2022-01-09 06:08:39 +00:00
dontWrapQtApps = true;
2022-01-09 18:00:37 +00:00
postPatch = ''
# hardcode jdk paths
substituteInPlace launcher/java/JavaUtils.cpp \
--replace 'scanJavaDir("/usr/lib/jvm")' 'javas.append("${jdk}/lib/openjdk/bin/java")' \
--replace 'scanJavaDir("/usr/lib32/jvm")' 'javas.append("${jdk8}/lib/openjdk/bin/java")'
'' + lib.optionalString (msaClientID != "") ''
# add client ID
substituteInPlace CMakeLists.txt \
--replace '17b47edd-c884-4997-926d-9e7f9a6b4647' '${msaClientID}'
'';
postUnpack = ''
2022-01-09 06:08:39 +00:00
# Copy submodules inputs
2022-01-08 20:23:55 +00:00
rm -rf source/libraries/{libnbtplusplus,quazip}
2022-01-08 19:31:13 +00:00
mkdir source/libraries/{libnbtplusplus,quazip}
cp -a ${submoduleNbt}/* source/libraries/libnbtplusplus
cp -a ${submoduleQuazip}/* source/libraries/quazip
chmod a+r+w source/libraries/{libnbtplusplus,quazip}/*
'';
2022-01-08 07:33:26 +00:00
cmakeFlags = [
"-GNinja"
"-DLauncher_LAYOUT=lin-system"
];
desktopItem = makeDesktopItem {
name = "polymc";
exec = "polymc";
icon = "polymc";
desktopName = "PolyMC";
genericName = "Minecraft Launcher";
comment = "A custom launcher for Minecraft";
categories = "Game;";
extraEntries = ''
Keywords=game;Minecraft;
'';
};
2022-01-08 07:33:26 +00:00
postInstall = ''
2022-01-09 06:08:39 +00:00
install -Dm644 ../launcher/resources/multimc/scalable/launcher.svg $out/share/pixmaps/polymc.svg
install -Dm644 ${desktopItem}/share/applications/polymc.desktop $out/share/applications/org.polymc.polymc.desktop
2022-01-09 06:08:39 +00:00
2022-01-08 07:33:26 +00:00
# xorg.xrandr needed for LWJGL [2.9.2, 3) https://github.com/LWJGL/lwjgl/issues/128
wrapProgram $out/bin/polymc \
2022-01-09 06:08:39 +00:00
"''${qtWrapperArgs[@]}" \
--set GAME_LIBRARY_PATH ${gameLibraryPath} \
--prefix PATH : ${lib.makeBinPath [ xorg.xrandr jdk ]}
2022-01-08 07:33:26 +00:00
'';
}