pollymc/packages/nix/polymc/default.nix

80 lines
1.7 KiB
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, makeDesktopItem
, substituteAll
, fetchpatch
, cmake
, ninja
, jdk8
, jdk
, zlib
, file
, makeWrapper
, xorg
, libpulseaudio
, qtbase
, libGL
2022-01-09 00:45:19 +05:30
# submodules
, self
, submoduleNbt
, submoduleQuazip
}:
2022-01-08 13:03:26 +05:30
let
gameLibraryPath = with xorg; lib.makeLibraryPath [
libX11
libXext
libXcursor
libXrandr
libXxf86vm
libpulseaudio
libGL
];
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 ];
postUnpack = ''
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 = ''
install -Dm644 ../launcher/resources/multimc/scalable/launcher.svg $out/share/pixmaps/multimc.svg
install -Dm755 ${desktopItem}/share/applications/polymc.desktop -t $out/share/applications
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 \
--set GAME_LIBRARY_PATH /run/opengl-driver/lib:${gameLibraryPath} \
--prefix PATH : ${lib.makeBinPath [ xorg.xrandr jdk ]}
2022-01-08 13:03:26 +05:30
'';
}