nix-fabric/lib.nix

7 lines
201 B
Nix
Raw Normal View History

2024-10-15 23:14:48 +00:00
{
fetchModrinth = { projectId, versionId, fileName, sha256 }: builtins.fetchurl {
url = "https://cdn.modrinth.com/data/${projectId}/versions/${versionId}/${fileName}";
inherit sha256;
};
}