pollymc/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 23:30:37 +05:30
, msaClientID ? ""
2022-01-09 11:38:39 +05:30
2022-03-13 21:48:46 +05:30
# flake
, self
2022-03-13 21:48:46 +05:30
, version
, libnbtplusplus
, quazip
}:
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-03-13 21:48:46 +05:30
];
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";
2022-03-13 21:48:46 +05:30
inherit version;
src = lib.cleanSource self;
nativeBuildInputs = [ cmake ninja file makeWrapper ];
2022-03-14 03:11:45 +05:30
buildInputs = [ qtbase jdk zlib ];
2022-01-08 13:03:26 +05:30
2022-01-09 11:38:39 +05:30
dontWrapQtApps = true;
2022-02-26 03:17:47 +05:30
postPatch = lib.optionalString (msaClientID != "") ''
2022-01-09 23:30:37 +05:30
# add client ID
substituteInPlace CMakeLists.txt \
--replace '17b47edd-c884-4997-926d-9e7f9a6b4647' '${msaClientID}'
'';
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}
2022-03-13 21:48:46 +05:30
cp -a ${libnbtplusplus}/* source/libraries/libnbtplusplus
cp -a ${quazip}/* source/libraries/quazip
2022-01-09 01:01:13 +05:30
chmod a+r+w source/libraries/{libnbtplusplus,quazip}/*
'';
2022-01-08 13:03:26 +05:30
cmakeFlags = [
"-GNinja"
2022-02-15 00:42:14 +05:30
"-DLauncher_PORTABLE=OFF"
];
2022-01-08 13:03:26 +05:30
postInstall = ''
# 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} \
2022-02-26 03:17:47 +05:30
--prefix POLYMC_JAVA_PATHS : ${jdk}/lib/openjdk/bin/java:${jdk8}/lib/openjdk/bin/java \
--prefix PATH : ${lib.makeBinPath [ xorg.xrandr ]}
2022-01-08 13:03:26 +05:30
'';
2022-02-14 21:07:56 +05:30
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 ];
};
}