https://github.com/prismlauncher/meta
Prism Launcher Metadata generation scripts
https://github.com/prismlauncher/meta
Last synced: 11 months ago
JSON representation
Prism Launcher Metadata generation scripts
- Host: GitHub
- URL: https://github.com/prismlauncher/meta
- Owner: PrismLauncher
- License: ms-pl
- Created: 2022-10-17T20:37:27.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-25T10:29:16.000Z (over 1 year ago)
- Last Synced: 2025-03-21T03:51:16.746Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 1.49 MB
- Stars: 17
- Watchers: 8
- Forks: 21
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# Prism Launcher Meta
Scripts to generate jsons and jars that Prism Launcher will access.
## Recommended Deployment
Assuming you have a Flake-based NixOS configuration
- Add Flake input:
```nix
{
inputs.prism-meta.url = "github:PrismLauncher/meta";
}
```
- Import NixOS module and configure
```nix
{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`