This commit is contained in:
Mitchell Hashimoto
2022-03-29 09:04:32 -07:00
commit f8b0000444
9 changed files with 196 additions and 0 deletions

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