2022-12-25 10:54:10 +00:00
|
|
|
# This uses the exported devShells from flake.nix
|
|
|
|
# the default or base version of nix-shell can be found in dev-shell.nix instead
|
|
|
|
# This architecture is because we use top-level flake.nix
|
2022-12-25 23:15:15 +00:00
|
|
|
(import
|
|
|
|
(
|
2023-01-15 09:54:40 +00:00
|
|
|
let
|
|
|
|
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
|
2023-02-14 08:56:48 +00:00
|
|
|
in (import ./c_.nix).fetchTree lock.nodes.flake-compat.locked
|
2022-12-25 23:15:15 +00:00
|
|
|
)
|
|
|
|
{ src = ./.; }
|
|
|
|
).shellNix
|