nix: add back shell.nix

This commit is contained in:
Mitchell Hashimoto
2023-12-08 07:59:19 -08:00
parent 24c64d4b44
commit ee26d48140

9
shell.nix Normal file
View File

@ -0,0 +1,9 @@
(import
(
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;
}
)
{ src = ./.; }).shellNix