initial commit

This commit is contained in:
Jonas Rabenstein 2025-09-30 12:07:41 +02:00
commit e3b0136650
9 changed files with 245 additions and 0 deletions

12
package/source.nix Normal file
View file

@ -0,0 +1,12 @@
{
fetchFromGitHub,
repo,
version,
hash ? "",
owner ? "jetperch",
}: fetchFromGitHub {
owner = owner;
repo = repo;
tag = "v${version}";
inherit hash;
}