pub-solar-os/compat/default.nix
2021-02-14 22:08:24 -07:00

17 lines
329 B
Nix

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