nixos-configs/apps/mc-mods/default.nix

19 lines
326 B
Nix
Raw Normal View History

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