2021-01-25 09:26:54 +01:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, cmake, jdk8, zlib, file, makeWrapper, xorg, libpulseaudio, qtbase, libGL }:
|
2015-11-25 11:34:26 +01:00
|
|
|
|
2018-02-20 14:38:15 +01:00
|
|
|
let
|
2020-09-19 17:43:00 +02:00
|
|
|
jdk = jdk8;
|
2021-01-24 02:47:06 +01:00
|
|
|
libpath = with xorg; lib.makeLibraryPath [ libX11 libXext libXcursor libXrandr libXxf86vm libpulseaudio libGL ];
|
2019-07-28 00:17:02 +02:00
|
|
|
in mkDerivation rec {
|
2019-07-29 12:20:55 +02:00
|
|
|
pname = "multimc";
|
2021-01-24 02:47:06 +01:00
|
|
|
version = "unstable-2021-01-17";
|
2015-11-25 11:34:26 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "MultiMC";
|
|
|
|
repo = "MultiMC5";
|
2021-01-24 02:47:06 +01:00
|
|
|
rev = "02887536f773643313f15442fc82cebf616da54a";
|
|
|
|
sha256 = "1aykvavcv415lq488hx4ig2a79g5a561jg92gw14fb964r43782i";
|
2018-02-20 14:29:56 +01:00
|
|
|
fetchSubmodules = true;
|
2015-11-25 11:34:26 +01:00
|
|
|
};
|
2018-02-20 15:45:52 +01:00
|
|
|
nativeBuildInputs = [ cmake file makeWrapper ];
|
|
|
|
buildInputs = [ qtbase jdk zlib ];
|
2015-11-25 11:34:26 +01:00
|
|
|
|
2019-07-29 12:20:55 +02:00
|
|
|
cmakeFlags = [ "-DMultiMC_LAYOUT=lin-system" ];
|
2019-07-28 00:17:02 +02:00
|
|
|
|
2019-07-29 12:20:55 +02:00
|
|
|
postInstall = ''
|
|
|
|
install -Dm644 ../application/resources/multimc/scalable/multimc.svg $out/share/pixmaps/multimc.svg
|
|
|
|
install -Dm755 ../application/package/linux/multimc.desktop $out/share/applications/multimc.desktop
|
2018-06-23 15:35:59 +02:00
|
|
|
|
2019-07-29 12:20:55 +02:00
|
|
|
# xorg.xrandr needed for LWJGL [2.9.2, 3) https://github.com/LWJGL/lwjgl/issues/128
|
2020-08-24 18:58:24 +02:00
|
|
|
wrapProgram $out/bin/multimc --set GAME_LIBRARY_PATH /run/opengl-driver/lib:${libpath} --prefix PATH : ${jdk}/bin/:${xorg.xrandr}/bin/
|
2015-11-25 11:34:26 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2019-07-29 12:20:55 +02:00
|
|
|
homepage = "https://multimc.org/";
|
2015-11-25 11:34:26 +01:00
|
|
|
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.
|
|
|
|
'';
|
2016-11-20 18:05:18 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.lgpl21Plus;
|
2021-01-24 02:47:06 +01:00
|
|
|
maintainers = with maintainers; [ cleverca22 starcraft66 ];
|
2015-11-25 11:34:26 +01:00
|
|
|
};
|
|
|
|
}
|