blob: bb7ee13e0d9ea552fcee710d8b87bc5d67f1c8d6 (
plain)
1
2
3
4
5
6
7
8
9
|
let
lock = builtins.fromJSON (builtins.readFile ../../flake.lock);
inherit (lock.nodes.flake-compat.locked) rev narHash;
flake-compat = fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/${rev}.tar.gz";
sha256 = narHash;
};
in
import flake-compat { src = ../..; }
|