PrismLauncher/packages/nix/polymc/default.nix

93 lines
2.1 KiB
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, 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
2022-03-13 16:18:46 +00:00
# flake
, self
2022-03-13 16:18:46 +00:00
, version
, libnbtplusplus
, quazip
}:
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-03-13 16:18:46 +00:00
];
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";
2022-03-13 16:18:46 +00:00
inherit version;
src = lib.cleanSource self;
nativeBuildInputs = [ cmake ninja file makeWrapper ];
2022-03-13 21:41:45 +00:00
buildInputs = [ qtbase jdk zlib ];
2022-01-08 07:33:26 +00:00
2022-01-09 06:08:39 +00:00
dontWrapQtApps = true;
2022-02-25 21:47:47 +00:00
postPatch = lib.optionalString (msaClientID != "") ''
2022-01-09 18:00:37 +00:00
# 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}
2022-03-13 16:18:46 +00:00
cp -a ${libnbtplusplus}/* source/libraries/libnbtplusplus
cp -a ${quazip}/* source/libraries/quazip
2022-01-08 19:31:13 +00:00
chmod a+r+w source/libraries/{libnbtplusplus,quazip}/*
'';
2022-01-08 07:33:26 +00:00
cmakeFlags = [
"-GNinja"
2022-02-14 19:12:14 +00:00
"-DLauncher_PORTABLE=OFF"
];
2022-01-08 07:33:26 +00:00
postInstall = ''
# 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} \
2022-02-25 21:47:47 +00:00
--prefix POLYMC_JAVA_PATHS : ${jdk}/lib/openjdk/bin/java:${jdk8}/lib/openjdk/bin/java \
--prefix PATH : ${lib.makeBinPath [ xorg.xrandr ]}
2022-01-08 07:33:26 +00:00
'';
2022-02-14 15:37:56 +00:00
meta = with lib; {
homepage = "https://polymc.org/";
description = "A free, open source launcher for Minecraft";
longDescription = ''
Allows you to have multiple, separate instances of Minecraft (each with
their own mods, texture packs, saves, etc) and helps you manage them and
their associated options with a simple interface.
'';
platforms = platforms.unix;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ starcraft66 kloenk ];
};
}