Files
strom-roku-2023.krk-litvino…/shell.nix
2023-05-18 15:33:26 +02:00

15 lines
416 B
Nix

# SPDX-FileCopyrightText: 2022 Jan Tojnar
# SPDX-License-Identifier: MIT
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
flake-compat = builtins.fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
sha256 = lock.nodes.flake-compat.locked.narHash;
};
flake = import flake-compat {
src = ./.;
};
in
flake.shellNix