atlauncher: cleanup

This commit is contained in:
GetPsyched 2024-02-02 19:19:16 +05:30
parent 6b3ba452ed
commit d432b38d31
No known key found for this signature in database

View File

@ -16,7 +16,6 @@ stdenv.mkDerivation (finalAttrs: {
dontUnpack = true; dontUnpack = true;
buildInputs = [ ];
nativeBuildInputs = [ copyDesktopItems makeWrapper ]; nativeBuildInputs = [ copyDesktopItems makeWrapper ];
installPhase = '' installPhase = ''
@ -39,22 +38,22 @@ stdenv.mkDerivation (finalAttrs: {
desktopItems = [ desktopItems = [
(makeDesktopItem { (makeDesktopItem {
name = "atlauncher"; categories = [ "Game" ];
desktopName = "ATLauncher";
exec = "atlauncher"; exec = "atlauncher";
icon = "atlauncher"; icon = "atlauncher";
desktopName = "ATLauncher"; name = "atlauncher";
categories = [ "Game" ];
}) })
]; ];
meta = with lib; { meta = with lib; {
description = "A simple and easy to use Minecraft launcher which contains many different modpacks for you to choose from and play"; description = "A simple and easy to use Minecraft launcher which contains many different modpacks for you to choose from and play";
downloadPage = "https://atlauncher.com/downloads"; downloadPage = "https://atlauncher.com/downloads";
homepage = "https://atlauncher.com/"; homepage = "https://atlauncher.com";
license = licenses.gpl3; license = licenses.gpl3;
mainProgram = "atlauncher";
maintainers = [ maintainers.getpsyched ]; maintainers = [ maintainers.getpsyched ];
platforms = platforms.all; platforms = platforms.all;
mainProgram = "atlauncher";
sourceProvenance = [ sourceTypes.binaryBytecode ]; sourceProvenance = [ sourceTypes.binaryBytecode ];
}; };
}) })