infra/default.nix

27 lines
532 B
Nix
Raw Permalink Normal View History

2023-04-12 13:20:42 +10:00
# This file provides backward compatibility to nix < 2.4 clients
2024-07-24 19:05:26 +10:00
{
system ? builtins.currentSystem,
}:
2023-04-12 13:20:42 +10:00
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
root = lock.nodes.${lock.root};
2024-07-24 19:05:26 +10:00
inherit (lock.nodes.${root.inputs.flake-compat}.locked)
owner
repo
rev
narHash
;
2023-04-12 13:20:42 +10:00
flake-compat = fetchTarball {
url = "https://github.com/${owner}/${repo}/archive/${rev}.tar.gz";
sha256 = narHash;
};
2024-07-24 19:05:26 +10:00
flake = import flake-compat {
inherit system;
src = ./.;
};
2023-04-12 13:20:42 +10:00
in
flake.defaultNix