nixpkgs/pkgs/games/lunar-client/default.nix

45 lines
1.2 KiB
Nix
Raw Permalink Normal View History

{ appimageTools, lib, fetchurl, makeDesktopItem }:
2020-11-13 17:27:46 +00:00
let
name = "lunar-client";
2021-06-05 18:09:53 +00:00
version = "2.7.3";
2020-11-13 17:27:46 +00:00
desktopItem = makeDesktopItem {
name = "Lunar Client";
exec = "lunar-client";
icon = "lunarclient";
comment = "Minecraft 1.7, 1.8, 1.12, 1.15, and 1.16 Client";
2020-11-13 17:27:46 +00:00
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";
2021-06-05 18:09:53 +00:00
sha256 = "0ihi937rrj677y9b377b4hhp9wsarbqwrdrd6k3lhzx3jyh2fynf";
2020-11-13 17:27:46 +00:00
};
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/
'';
extraPkgs = pkgs: [ pkgs.libpulseaudio ];
2020-11-13 17:27:46 +00:00
meta = with lib; {
description = "Minecraft 1.7, 1.8, 1.12, 1.15, and 1.16 Client";
2020-11-13 17:27:46 +00:00
homepage = "https://www.lunarclient.com/";
license = with licenses; [ unfree ];
maintainers = with maintainers; [ zyansheep Technical27 ];
2020-11-13 17:27:46 +00:00
platforms = [ "x86_64-linux" ];
};
}