Files
zahradka/default.nix
Jan Tojnar 6246856fda
All checks were successful
deploy-pages Deployed in 22 seconds
Initial commit
2023-02-23 05:30:17 +01:00

15 lines
417 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.defaultNix