4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
40 lines
1.6 KiB
Nix
40 lines
1.6 KiB
Nix
{ lib, stdenv, mkDerivation, fetchFromGitHub, cmake, jdk8, zlib, file, makeWrapper, xorg, libpulseaudio, qtbase }:
|
|
|
|
let
|
|
jdk = jdk8;
|
|
libpath = with xorg; stdenv.lib.makeLibraryPath [ libX11 libXext libXcursor libXrandr libXxf86vm libpulseaudio ];
|
|
in mkDerivation rec {
|
|
pname = "multimc";
|
|
version = "0.6.11";
|
|
src = fetchFromGitHub {
|
|
owner = "MultiMC";
|
|
repo = "MultiMC5";
|
|
rev = version;
|
|
sha256 = "1jkbmb4sgfk8d93f5l1vd9pkpvhq9sxacc61w0rvf5xmz0wnszmz";
|
|
fetchSubmodules = true;
|
|
};
|
|
nativeBuildInputs = [ cmake file makeWrapper ];
|
|
buildInputs = [ qtbase jdk zlib ];
|
|
|
|
cmakeFlags = [ "-DMultiMC_LAYOUT=lin-system" ];
|
|
|
|
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
|
|
|
|
# xorg.xrandr needed for LWJGL [2.9.2, 3) https://github.com/LWJGL/lwjgl/issues/128
|
|
wrapProgram $out/bin/multimc --set GAME_LIBRARY_PATH /run/opengl-driver/lib:${libpath} --prefix PATH : ${jdk}/bin/:${xorg.xrandr}/bin/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
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.
|
|
'';
|
|
platforms = platforms.linux;
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = [ maintainers.cleverca22 ];
|
|
};
|
|
}
|