nixos-configs/apps/mc-mods/default.nix
matt1432 cdf28bd4f5
All checks were successful
Discord / discord commits (push) Has been skipped
feat(apps): type check scripts in checkPhase
2025-03-07 16:51:01 -05:00

18 lines
326 B
Nix

{
buildApp,
nodejs_latest,
...
}:
buildApp {
src = ./.;
npmDepsHash = "sha256-vZEZqvUZapl9eNu7j/s3i3G58iqO9E5zTeEo7z2Kb7Q=";
runtimeInputs = [
nodejs_latest
];
meta.description = ''
Checks if a list of mods have a version available for a specific Minecraft
version and a specific loader.
'';
}