lunar-client: init at 4.2.0

This commit is contained in:
Zyansheep 2020-11-13 12:27:46 -05:00
parent 4e9c5d1902
commit 660864eb6f
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ stdenv, appimageTools, lib, fetchurl, makeDesktopItem }:
let
name = "lunar-client";
version = "2.4.0";
desktopItem = makeDesktopItem {
name = "Lunar Client";
exec = "lunar-client";
icon = "lunarclient";
comment = "Optimized Minecraft Client for 1.7.10 and 1.8.9";
desktopName = "Lunar Client";
genericName = "Minecraft Client";
categories = "Game;";
};
appimageContents = appimageTools.extract {
inherit name src;
};
src = fetchurl {
url = "https://launcherupdates.lunarclientcdn.com/Lunar%20Client-${version}.AppImage";
name = "lunar-client.AppImage";
sha256 = "bb85a62127a9b3848cc60796c20ac75655794f1d3cd17cb6b5499bbf19d16019";
};
in appimageTools.wrapType1 rec {
inherit name src;
extraInstallCommands = ''
mkdir -p $out/share/applications
cp ${desktopItem}/share/applications/* $out/share/applications
cp -r ${appimageContents}/usr/share/icons/ $out/share/
'';
meta = with lib; {
description = "Minecraft 1.7.10 & 1.8.9 PVP Client";
homepage = "https://www.lunarclient.com/";
license = with licenses; [ unfree ];
maintainers = with maintainers; [ zyansheep ];
platforms = [ "x86_64-linux" ];
};
}

View file

@ -5112,6 +5112,8 @@ in
ltwheelconf = callPackage ../applications/misc/ltwheelconf { };
lunar-client = callPackage ../games/lunar-client {};
lvmsync = callPackage ../tools/backup/lvmsync { };
kdbg = libsForQt5.callPackage ../development/tools/misc/kdbg { };