2022-05-28 01:12:23 +05:30
|
|
|
{ stdenv
|
|
|
|
, lib
|
2022-01-09 00:25:19 +05:30
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
2022-01-09 03:53:53 +05:30
|
|
|
, ninja
|
2022-01-09 00:25:19 +05:30
|
|
|
, jdk8
|
|
|
|
, jdk
|
|
|
|
, zlib
|
|
|
|
, file
|
2022-05-28 01:12:23 +05:30
|
|
|
, wrapQtAppsHook
|
2022-01-09 00:25:19 +05:30
|
|
|
, xorg
|
|
|
|
, libpulseaudio
|
|
|
|
, qtbase
|
2022-05-29 19:37:12 +05:30
|
|
|
, quazip
|
2022-01-09 00:25:19 +05:30
|
|
|
, libGL
|
2022-01-09 23:30:37 +05:30
|
|
|
, msaClientID ? ""
|
2022-06-07 07:43:10 +05:30
|
|
|
, extraJDKs ? [ ]
|
2022-07-03 14:58:41 +05:30
|
|
|
, extra-cmake-modules
|
2022-01-09 11:38:39 +05:30
|
|
|
|
2022-03-13 21:48:46 +05:30
|
|
|
# flake
|
2022-01-09 01:39:53 +05:30
|
|
|
, self
|
2022-03-13 21:48:46 +05:30
|
|
|
, version
|
|
|
|
, libnbtplusplus
|
2022-05-29 19:37:12 +05:30
|
|
|
, enableLTO ? false
|
2022-01-09 00:25:19 +05:30
|
|
|
}:
|
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 [
|
2022-01-09 00:25:19 +05:30
|
|
|
libX11
|
|
|
|
libXext
|
|
|
|
libXcursor
|
|
|
|
libXrandr
|
|
|
|
libXxf86vm
|
|
|
|
libpulseaudio
|
|
|
|
libGL
|
2022-07-12 02:46:32 +05:30
|
|
|
stdenv.cc.cc.lib
|
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";
|
2022-06-07 07:43:10 +05:30
|
|
|
|
|
|
|
javaPaths = lib.makeSearchPath "bin/java" ([ jdk jdk8 ] ++ extraJDKs);
|
2022-01-09 00:25:19 +05:30
|
|
|
in
|
|
|
|
|
2022-05-28 01:12:23 +05:30
|
|
|
stdenv.mkDerivation rec {
|
2022-01-08 13:03:26 +05:30
|
|
|
pname = "polymc";
|
2022-03-13 21:48:46 +05:30
|
|
|
inherit version;
|
2022-01-09 00:25:19 +05:30
|
|
|
|
2022-01-09 01:39:53 +05:30
|
|
|
src = lib.cleanSource self;
|
2022-01-09 00:25:19 +05:30
|
|
|
|
2022-07-03 14:58:41 +05:30
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules ninja jdk file wrapQtAppsHook ];
|
2022-05-28 00:53:33 +05:30
|
|
|
buildInputs = [ qtbase quazip zlib ];
|
2022-01-08 13:03:26 +05:30
|
|
|
|
2022-01-09 11:38:39 +05:30
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
2022-01-09 01:39:53 +05:30
|
|
|
postUnpack = ''
|
2022-05-28 00:53:33 +05:30
|
|
|
# Copy libnbtplusplus
|
|
|
|
rm -rf source/libraries/libnbtplusplus
|
|
|
|
mkdir source/libraries/libnbtplusplus
|
2022-03-13 21:48:46 +05:30
|
|
|
cp -a ${libnbtplusplus}/* source/libraries/libnbtplusplus
|
2022-05-28 00:53:33 +05:30
|
|
|
chmod a+r+w source/libraries/libnbtplusplus/*
|
2022-01-09 01:39:53 +05:30
|
|
|
'';
|
2022-01-08 13:03:26 +05:30
|
|
|
|
2022-01-09 00:25:19 +05:30
|
|
|
cmakeFlags = [
|
2022-01-09 03:53:53 +05:30
|
|
|
"-GNinja"
|
2022-05-28 01:12:23 +05:30
|
|
|
"-DLauncher_QT_VERSION_MAJOR=${lib.versions.major qtbase.version}"
|
2022-05-29 19:37:12 +05:30
|
|
|
] ++ lib.optionals enableLTO [ "-DENABLE_LTO=on" ]
|
|
|
|
++ lib.optionals (msaClientID != "") [ "-DLauncher_MSA_CLIENT_ID=${msaClientID}" ];
|
2022-01-09 00:25:19 +05:30
|
|
|
|
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
|
2022-05-28 01:12:23 +05:30
|
|
|
wrapQtApp $out/bin/polymc \
|
2022-01-09 11:38:39 +05:30
|
|
|
--set GAME_LIBRARY_PATH ${gameLibraryPath} \
|
2022-06-07 07:43:10 +05:30
|
|
|
--prefix POLYMC_JAVA_PATHS : ${javaPaths} \
|
2022-01-29 20:08:12 +05:30
|
|
|
--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 ];
|
|
|
|
};
|
2022-01-09 00:25:19 +05:30
|
|
|
}
|