2022-01-09 11:38:39 +05:30
|
|
|
let
|
2022-05-28 13:41:31 +05:30
|
|
|
lock = builtins.fromJSON (builtins.readFile ../flake.lock);
|
2022-01-09 11:38:39 +05:30
|
|
|
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
|
2022-05-28 13:41:31 +05:30
|
|
|
import flake-compat { src = ../.; }
|