From ee26d481403e46e675750180b691ed8162bfc3b6 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 8 Dec 2023 07:59:19 -0800 Subject: [PATCH] nix: add back shell.nix --- shell.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 000000000..6b7e7a250 --- /dev/null +++ b/shell.nix @@ -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