2018-02-20 14:45:52 +00:00
|
|
|
{ stdenv, 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 ];
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "multimc-${version}";
|
2018-06-23 13:23:24 +00:00
|
|
|
# Current release as of 2018-06-23 (v0.6.2) breaks under Qt 5.11—see
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/42387
|
|
|
|
version = "unstable-2018-06-04";
|
2015-11-25 10:34:26 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "MultiMC";
|
|
|
|
repo = "MultiMC5";
|
2018-06-23 13:23:24 +00:00
|
|
|
rev = "19bb50b872da2702b8e0b65f3f7b6b54c1c5b071";
|
|
|
|
sha256 = "01frkk2klm1axr7ywnj23ikxn5pkgj8q6w8vqbslsvmh8bni8rk0";
|
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;
|
|
|
|
|
2018-02-20 13:38:15 +00:00
|
|
|
postInstall = ''
|
2018-06-03 00:58:34 +00:00
|
|
|
mkdir -p $out/share/{applications,pixmaps}
|
|
|
|
cp ../application/resources/multimc/scalable/multimc.svg $out/share/pixmaps
|
|
|
|
cp ../application/package/linux/multimc.desktop $out/share/applications
|
2018-02-20 13:38:15 +00:00
|
|
|
wrapProgram $out/bin/MultiMC --add-flags "-d \$HOME/.multimc/" --set GAME_LIBRARY_PATH /run/opengl-driver/lib:${libpath} --prefix PATH : ${jdk}/bin/
|
2015-11-25 10:34:26 +00:00
|
|
|
'';
|
|
|
|
|
2016-11-20 17:05:18 +00:00
|
|
|
meta = with stdenv.lib; {
|
2015-11-25 10:34:26 +00:00
|
|
|
homepage = https://multimc.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.
|
|
|
|
'';
|
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
|
|
|
};
|
|
|
|
}
|