aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFinn Behrens <me@kloenk.dev>2022-02-14 16:37:56 +0100
committerFinn Behrens <me@kloenk.dev>2022-02-14 21:08:10 +0100
commit51183bef33a8a66c0bcc85f624c28afc27cacdef (patch)
tree32949cc4e073c7cc97eaa02fd77cf10eae39fb5e
parentc75ae71190db93a3ebe5357ef2161dc992c63827 (diff)
downloadPrismLauncher-51183bef33a8a66c0bcc85f624c28afc27cacdef.tar.gz
PrismLauncher-51183bef33a8a66c0bcc85f624c28afc27cacdef.tar.bz2
PrismLauncher-51183bef33a8a66c0bcc85f624c28afc27cacdef.zip
nix: add meta attribute
-rw-r--r--packages/nix/polymc/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/nix/polymc/default.nix b/packages/nix/polymc/default.nix
index e65a7e34..a9610017 100644
--- a/packages/nix/polymc/default.nix
+++ b/packages/nix/polymc/default.nix
@@ -79,4 +79,17 @@ mkDerivation rec {
--set GAME_LIBRARY_PATH ${gameLibraryPath} \
--prefix PATH : ${lib.makeBinPath [ xorg.xrandr ]}
'';
+
+ meta = with lib; {
+ homepage = "https://polymc.org/";
+ description = "A free, open source launcher for Minecraft";
+ longDescription = ''
+ Allows you to have multiple, separate instances of Minecraft (each with
+ their own mods, texture packs, saves, etc) and helps you manage them and
+ their associated options with a simple interface.
+ '';
+ platforms = platforms.unix;
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ starcraft66 kloenk ];
+ };
}