settei/inputs.nix
Nikodem Rabuliński 03c19b674c
All checks were successful
/ check (push) Successful in 50s
nilla: init
2025-03-23 11:43:37 +01:00

10 lines
299 B
Nix

let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
inherit (lock.nodes.__flake-compat.locked) narHash rev url;
flake-compat = builtins.fetchTarball {
url = "${url}/archive/${rev}.tar.gz";
sha256 = narHash;
};
flake = import flake-compat { src = ./.; };
in
flake.inputs