jetperch/package/source.nix
Jonas Rabenstein e3b0136650 initial commit
2025-09-30 12:07:41 +02:00

12 lines
169 B
Nix

{
fetchFromGitHub,
repo,
version,
hash ? "",
owner ? "jetperch",
}: fetchFromGitHub {
owner = owner;
repo = repo;
tag = "v${version}";
inherit hash;
}