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

@ -16,7 +16,6 @@ stdenv.mkDerivation (finalAttrs: {
dontUnpack = true;
buildInputs = [ ];
nativeBuildInputs = [ copyDesktopItems makeWrapper ];
installPhase = ''
@ -39,22 +38,22 @@ stdenv.mkDerivation (finalAttrs: {
desktopItems = [
(makeDesktopItem {
name = "atlauncher";
categories = [ "Game" ];
desktopName = "ATLauncher";
exec = "atlauncher";
icon = "atlauncher";
desktopName = "ATLauncher";
categories = [ "Game" ];
name = "atlauncher";
})
];
meta = with lib; {
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";
homepage = "https://atlauncher.com/";
homepage = "https://atlauncher.com";
license = licenses.gpl3;
mainProgram = "atlauncher";
maintainers = [ maintainers.getpsyched ];
platforms = platforms.all;
mainProgram = "atlauncher";
sourceProvenance = [ sourceTypes.binaryBytecode ];
};
})