2022-01-31 00:30:31 +03:00
|
|
|
let
|
|
|
|
inherit (import
|
|
|
|
(
|
|
|
|
let lock = builtins.fromJSON (builtins.readFile ./flake.lock); in
|
|
|
|
fetchTarball {
|
|
|
|
url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
|
|
|
|
sha256 = lock.nodes.flake-compat.locked.narHash;
|
|
|
|
}
|
|
|
|
)
|
|
|
|
{ src = ./.; }
|
|
|
|
) defaultNix;
|
|
|
|
in
|
|
|
|
# Pass this flake as inputs.digga
|
2022-04-03 20:12:00 +03:00
|
|
|
defaultNix // {
|
|
|
|
inputs = defaultNix.inputs // { digga = defaultNix; };
|
2022-04-05 21:46:02 +03:00
|
|
|
shell = import ./devShell.nix { };
|
2022-04-03 20:12:00 +03:00
|
|
|
}
|
2022-01-31 00:30:31 +03:00
|
|
|
|