pollymc/packages/nix/polymc/default.nix

88 lines
1.9 KiB
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, makeDesktopItem
, cmake
, ninja
, jdk8
, jdk
, zlib
, file
, makeWrapper
, xorg
, libpulseaudio
, qtbase
, libGL
2022-01-09 11:38:39 +05:30
# flake
, self
, submoduleNbt
, submoduleQuazip
}:
2022-01-08 13:03:26 +05:30
let
2022-01-09 11:38:39 +05:30
# Libraries required to run Minecraft
libpath = with xorg; lib.makeLibraryPath [
libX11
libXext
libXcursor
libXrandr
libXxf86vm
libpulseaudio
libGL
2022-01-09 11:38:39 +05:30
];
# This variable will be passed to Minecraft by PolyMC
gameLibraryPath = libpath + ":/run/opengl-driver/lib";
in
2022-01-08 13:03:26 +05:30
mkDerivation rec {
pname = "polymc";
version = "nightly";
src = lib.cleanSource self;
nativeBuildInputs = [ cmake ninja file makeWrapper ];
2022-01-08 13:03:26 +05:30
buildInputs = [ qtbase jdk8 zlib ];
2022-01-09 11:38:39 +05:30
dontWrapQtApps = true;
postUnpack = ''
2022-01-09 11:38:39 +05:30
# Copy submodules inputs
2022-01-09 01:53:55 +05:30
rm -rf source/libraries/{libnbtplusplus,quazip}
2022-01-09 01:01:13 +05:30
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 13:03:26 +05:30
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 13:03:26 +05:30
postInstall = ''
2022-01-09 11:38:39 +05:30
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-08 13:03:26 +05:30
# xorg.xrandr needed for LWJGL [2.9.2, 3) https://github.com/LWJGL/lwjgl/issues/128
wrapProgram $out/bin/polymc \
2022-01-09 11:38:39 +05:30
"''${qtWrapperArgs[@]}" \
--set GAME_LIBRARY_PATH ${gameLibraryPath} \
--prefix PATH : ${lib.makeBinPath [ xorg.xrandr jdk ]}
2022-01-08 13:03:26 +05:30
'';
}