mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
2083cdd4b3
Changelog: Fixes - Issue with NeoForge searching on Modrinth not working correctly
99 lines
2.5 KiB
Nix
99 lines
2.5 KiB
Nix
{
|
|
copyDesktopItems,
|
|
fetchurl,
|
|
jre,
|
|
lib,
|
|
makeDesktopItem,
|
|
makeWrapper,
|
|
stdenvNoCC,
|
|
|
|
gamemodeSupport ? stdenvNoCC.isLinux,
|
|
textToSpeechSupport ? stdenvNoCC.isLinux,
|
|
additionalLibs ? [ ],
|
|
|
|
# dependencies
|
|
flite,
|
|
gamemode,
|
|
libglvnd,
|
|
libpulseaudio,
|
|
udev,
|
|
xorg,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "atlauncher";
|
|
version = "3.4.36.10";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ATLauncher/ATLauncher/releases/download/v${finalAttrs.version}/ATLauncher-${finalAttrs.version}.jar";
|
|
hash = "sha256-JZTiYcea5ik8a4RmNLxZcuea7spGWftUGRiRW2Ive7c=";
|
|
};
|
|
|
|
env.ICON = fetchurl {
|
|
url = "https://atlauncher.com/assets/images/logo.svg";
|
|
hash = "sha256-XoqpsgLmkpa2SdjZvPkgg6BUJulIBIeu6mBsJJCixfo=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
|
|
nativeBuildInputs = [
|
|
copyDesktopItems
|
|
makeWrapper
|
|
];
|
|
|
|
installPhase =
|
|
let
|
|
runtimeLibraries =
|
|
[
|
|
libglvnd
|
|
libpulseaudio
|
|
udev
|
|
xorg.libX11
|
|
xorg.libXcursor
|
|
xorg.libXxf86vm
|
|
]
|
|
++ lib.optional gamemodeSupport gamemode.lib
|
|
++ lib.optional textToSpeechSupport flite
|
|
++ additionalLibs;
|
|
in
|
|
''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin $out/share/java
|
|
cp $src $out/share/java/ATLauncher.jar
|
|
|
|
makeWrapper ${jre}/bin/java $out/bin/atlauncher \
|
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath runtimeLibraries}" \
|
|
--add-flags "-jar $out/share/java/ATLauncher.jar" \
|
|
--add-flags "--working-dir \"\''${XDG_DATA_HOME:-\$HOME/.local/share}/ATLauncher\"" \
|
|
--add-flags "--no-launcher-update"
|
|
|
|
mkdir -p $out/share/icons/hicolor/scalable/apps
|
|
cp $ICON $out/share/icons/hicolor/scalable/apps/atlauncher.svg
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
categories = [ "Game" ];
|
|
desktopName = "ATLauncher";
|
|
exec = "atlauncher";
|
|
icon = "atlauncher";
|
|
name = "atlauncher";
|
|
})
|
|
];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/ATLauncher/ATLauncher/blob/v${finalAttrs.version}/CHANGELOG.md";
|
|
description = "Simple and easy to use Minecraft launcher which contains many different modpacks for you to choose from and play";
|
|
downloadPage = "https://atlauncher.com/downloads";
|
|
homepage = "https://atlauncher.com";
|
|
license = lib.licenses.gpl3;
|
|
mainProgram = "atlauncher";
|
|
maintainers = with lib.maintainers; [ getpsyched ];
|
|
platforms = lib.platforms.all;
|
|
sourceProvenance = [ lib.sourceTypes.binaryBytecode ];
|
|
};
|
|
})
|