1
0
Fork 0
mirror of https://github.com/mitchellh/zig-overlay.git synced 2025-03-14 06:56:25 +02:00
zig-overlay/templates/compiler-dev/shell.nix

13 lines
326 B
Nix
Raw Normal View History

2022-08-23 09:36:18 -07:00
(import
(
2022-08-23 09:46:03 -07:00
let
flake-compat = (builtins.fromJSON (builtins.readFile ./flake.lock)).nodes.flake-compat;
in
fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/${flake-compat.locked.rev}.tar.gz";
sha256 = flake-compat.locked.narHash;
}
2022-08-23 09:36:18 -07:00
)
2022-08-23 09:46:03 -07:00
{src = ./.;})
.shellNix