mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
39 lines
1.4 KiB
Nix
39 lines
1.4 KiB
Nix
{ appimageTools
|
|
, fetchurl
|
|
, lib
|
|
, makeWrapper
|
|
}:
|
|
|
|
appimageTools.wrapType2 rec {
|
|
pname = "lunar-client";
|
|
version = "3.2.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://launcherupdates.lunarclientcdn.com/Lunar%20Client-${version}.AppImage";
|
|
hash = "sha512-qRucW9x4LMmTb8pw0zY1EKXkPfjdahCi2PN/bfdB8CYA4wZp0bfZNaGtPpI/BKPlnR/nfpypEdnHsoqlL9KiCg==";
|
|
};
|
|
|
|
extraInstallCommands =
|
|
let contents = appimageTools.extract { inherit pname version src; };
|
|
in ''
|
|
source "${makeWrapper}/nix-support/setup-hook"
|
|
wrapProgram $out/bin/lunar-client \
|
|
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}"
|
|
install -Dm444 ${contents}/launcher.desktop $out/share/applications/lunar-client.desktop
|
|
install -Dm444 ${contents}/launcher.png $out/share/pixmaps/lunar-client.png
|
|
substituteInPlace $out/share/applications/lunar-client.desktop \
|
|
--replace 'Exec=AppRun --no-sandbox %U' 'Exec=lunar-client' \
|
|
--replace 'Icon=launcher' 'Icon=lunar-client'
|
|
'';
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = with lib; {
|
|
description = "Free Minecraft client with mods, cosmetics, and performance boost";
|
|
homepage = "https://www.lunarclient.com/";
|
|
license = with licenses; [ unfree ];
|
|
mainProgram = "lunar-client";
|
|
maintainers = with maintainers; [ Technical27 surfaceflinger ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|