No description
Find a file
Sefa Eyeoglu 5f10dee2e1
feat: add Linux arm32/arm64 natives for 3.3.6
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2025-10-22 18:48:43 +02:00
caches chore: drop seemingly unused enumerateForge.py 2022-04-05 14:35:11 +02:00
meta feat: add Linux arm32/arm64 natives for 3.3.6 2025-10-22 18:48:43 +02:00
nix fix(nix): add ssh to PATH 2024-04-24 22:06:50 +02:00
public fix: add public directory 2022-02-18 23:13:21 +01:00
.dockerignore feat: Agnostify launcher references 2022-10-20 13:21:55 +05:30
.envrc feat(nix): init flake 2023-02-25 00:19:47 +01:00
.gitignore chore: ignore cache/ 2024-05-29 17:33:26 +02:00
config.example.sh refactor!: package using Nix 2024-04-24 16:56:23 +02:00
COPYING Add MS-PL license 2023-01-20 13:48:48 +01:00
flake.lock flake.lock: Update 2025-07-02 22:05:59 +02:00
flake.nix flake.lock: Update 2025-07-02 22:05:59 +02:00
garnix.yaml chore: add garnix 2024-04-24 17:18:01 +02:00
init.sh fix: fix error message 2024-11-26 23:14:24 +01:00
poetry.lock fix: bump to packaging 25 2025-07-02 22:07:32 +02:00
pyproject.toml fix: bump to packaging 25 2025-07-02 22:07:32 +02:00
README.md refactor!: package using Nix 2024-04-24 16:56:23 +02:00
renovate.json Add renovate.json 2023-01-27 16:48:21 +00:00
update.sh add java folders to launcher git 2024-05-21 16:06:37 +03: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