2025-07-25 14:11:41 -04:00
2024-07-02 20:33:20 -04:00
2022-02-18 23:13:21 +01:00
2023-02-25 00:19:47 +01:00
2024-07-02 20:33:20 -04:00
2024-04-24 16:56:23 +02:00
2024-07-02 20:33:20 -04:00
2023-01-20 13:48:48 +01:00
2025-07-02 22:05:59 +02:00
2025-07-02 22:05:59 +02:00
2024-04-24 17:18:01 +02:00
2024-11-26 23:14:24 +01:00
2024-04-24 16:56:23 +02:00
2023-01-27 16:48:21 +00:00
2024-07-02 20:33:20 -04:00

Prism Launcher Meta

Scripts to generate jsons and jars that Prism Launcher will access.

Assuming you have a Flake-based NixOS configuration

  • Add Flake input:

    {
      inputs.prism-meta.url = "github:PrismLauncher/meta";
    }
    
  • Import NixOS module and configure

    {inputs, ...}: {
      imports = [inputs.prism-meta.nixosModules.default];
      services.blockgame-meta = {
        enable = true;
        settings = {
          DEPLOY_TO_GIT = "true";
          GIT_AUTHOR_NAME = "Herpington Derpson";
          GIT_AUTHOR_EMAIL = "herpderp@derpmail.com";
          GIT_COMMITTER_NAME = "Herpington Derpson";
          GIT_COMMITTER_EMAIL = "herpderp@derpmail.com";
        };
      };
    }
    
  • Rebuild and activate!

  • Trigger it systemctl start blockgame-meta.service

  • Monitor it journalctl -fu blockgame-meta.service

Description
Prism Launcher Metadata generation scripts
Readme 1.7 MiB
Languages
Python 94.9%
Shell 2.6%
Nix 2.5%