feat: initial fetcher implementation

This commit is contained in:
2026-01-11 13:31:40 +08:00
parent c5240385ea
commit 3f7fd02263
24 changed files with 2898 additions and 45 deletions

15
default.nix Normal file
View File

@@ -0,0 +1,15 @@
let
lockFile = builtins.fromJSON (builtins.readFile ./flake.lock);
flake-compat-node = lockFile.nodes.${lockFile.nodes.root.inputs.flake-compat};
flake-compat = builtins.fetchTarball {
inherit (flake-compat-node.locked) url;
sha256 = flake-compat-node.locked.narHash;
};
flake = (
import flake-compat {
src = ./.;
}
);
in
flake.defaultNix