Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
1.3 KiB
Nix
44 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
fetchurl,
|
|
appimageTools,
|
|
makeWrapper,
|
|
}:
|
|
|
|
appimageTools.wrapAppImage rec {
|
|
pname = "badlion-client";
|
|
version = "4.5.4";
|
|
|
|
src = appimageTools.extractType2 {
|
|
inherit pname version;
|
|
src = fetchurl {
|
|
name = "badlion-client-linux";
|
|
# https://www.badlion.net/download/client/latest/linux
|
|
url = "https://web.archive.org/web/20250416011033/https://client-updates.badlion.net/BadlionClient";
|
|
hash = "sha256-M2aG3vb1EBpvx8ODs67Ua1R7lBXSe2oIcSwFzSz91n4=";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
extraInstallCommands = ''
|
|
install -Dm444 ${src}/BadlionClient.desktop $out/share/applications/BadlionClient.desktop
|
|
install -Dm444 ${src}/BadlionClient.png $out/share/pixmaps/BadlionClient.png
|
|
substituteInPlace $out/share/applications/BadlionClient.desktop \
|
|
--replace-fail "Exec=AppRun --no-sandbox %U" "Exec=badlion-client"
|
|
wrapProgram $out/bin/badlion-client \
|
|
--set APPIMAGE 1
|
|
'';
|
|
|
|
extraPkgs = pkgs: [ pkgs.xorg.libxshmfence ];
|
|
|
|
meta = {
|
|
description = "Most Complete All-In-One Mod Library for Minecraft with 100+ Mods, FPS Improvements, and more";
|
|
homepage = "https://client.badlion.net";
|
|
license = lib.licenses.unfree;
|
|
maintainers = [ ];
|
|
mainProgram = "badlion-client";
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|