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