7 lines
201 B
Nix
7 lines
201 B
Nix
|
{
|
||
|
fetchModrinth = { projectId, versionId, fileName, sha256 }: builtins.fetchurl {
|
||
|
url = "https://cdn.modrinth.com/data/${projectId}/versions/${versionId}/${fileName}";
|
||
|
inherit sha256;
|
||
|
};
|
||
|
}
|