mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
lunar-client: init at 4.2.0
This commit is contained in:
parent
4e9c5d1902
commit
660864eb6f
41
pkgs/games/lunar-client/default.nix
Normal file
41
pkgs/games/lunar-client/default.nix
Normal 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" ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue