14 lines
373 B
Nix
14 lines
373 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 = ./.;
|
|
copySourceTreeToStore = false;
|
|
useBuiltinsFetchTree = true;
|
|
};
|
|
in
|
|
flake.inputs
|