12 lines
169 B
Nix
12 lines
169 B
Nix
{
|
|
fetchFromGitHub,
|
|
repo,
|
|
version,
|
|
hash ? "",
|
|
owner ? "jetperch",
|
|
}: fetchFromGitHub {
|
|
owner = owner;
|
|
repo = repo;
|
|
tag = "v${version}";
|
|
inherit hash;
|
|
}
|