18 lines
326 B
Nix
18 lines
326 B
Nix
{
|
|
buildApp,
|
|
nodejs_latest,
|
|
...
|
|
}:
|
|
buildApp {
|
|
src = ./.;
|
|
npmDepsHash = "sha256-9qmgL6tLGhis+mTMwjri7TQTa0ATdi+EskgBy53tNuA=";
|
|
|
|
runtimeInputs = [
|
|
nodejs_latest
|
|
];
|
|
|
|
meta.description = ''
|
|
Checks if a list of mods have a version available for a specific Minecraft
|
|
version and a specific loader.
|
|
'';
|
|
}
|