2019-07-27 23:17:02 +01:00
|
|
|
{ stdenv, mkDerivation, fetchFromGitHub, cmake, jdk, zlib, file, makeWrapper, xorg, libpulseaudio, qtbase }:
|
2015-11-25 10:34:26 +00:00
|
|
|
|
2018-02-20 13:38:15 +00:00
|
|
|
let
|
|
|
|
libpath = with xorg; stdenv.lib.makeLibraryPath [ libX11 libXext libXcursor libXrandr libXxf86vm libpulseaudio ];
|
2019-07-27 23:17:02 +01:00
|
|
|
in mkDerivation rec {
|
2019-07-29 11:20:55 +01:00
|
|
|
pname = "multimc";
|
2020-03-30 04:36:23 +01:00
|
|
|
version = "0.6.11";
|
2015-11-25 10:34:26 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "MultiMC";
|
|
|
|
repo = "MultiMC5";
|
2019-07-29 11:20:55 +01:00
|
|
|
rev = version;
|
2020-03-30 04:36:23 +01:00
|
|
|
sha256 = "1jkbmb4sgfk8d93f5l1vd9pkpvhq9sxacc61w0rvf5xmz0wnszmz";
|
2018-02-20 13:29:56 +00:00
|
|
|
fetchSubmodules = true;
|
2015-11-25 10:34:26 +00:00
|
|
|
};
|
2018-02-20 14:45:52 +00:00
|
|
|
nativeBuildInputs = [ cmake file makeWrapper ];
|
|
|
|
buildInputs = [ qtbase jdk zlib ];
|
2015-11-25 10:34:26 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-07-29 11:20:55 +01:00
|
|
|
cmakeFlags = [ "-DMultiMC_LAYOUT=lin-system" ];
|
2019-07-27 23:17:02 +01:00
|
|
|
|
2019-07-29 11:20:55 +01: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 14:35:59 +01:00
|
|
|
|
2019-07-29 11:20:55 +01:00
|
|
|
# xorg.xrandr needed for LWJGL [2.9.2, 3) https://github.com/LWJGL/lwjgl/issues/128
|
|
|
|
wrapProgram $out/bin/multimc --add-flags "-d \$HOME/.multimc/" --set GAME_LIBRARY_PATH /run/opengl-driver/lib:${libpath} --prefix PATH : ${jdk}/bin/:${xorg.xrandr}/bin/
|
2015-11-25 10:34:26 +00:00
|
|
|
'';
|
|
|
|
|
2016-11-20 17:05:18 +00:00
|
|
|
meta = with stdenv.lib; {
|
2019-07-29 11:20:55 +01:00
|
|
|
homepage = "https://multimc.org/";
|
2015-11-25 10:34:26 +00: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 17:05:18 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
maintainers = [ maintainers.cleverca22 ];
|
2015-11-25 10:34:26 +00:00
|
|
|
};
|
|
|
|
}
|