Revert "Remove shell.nix, use 'nix develop' instead"

This reverts commit 9870b61e89.
This commit is contained in:
Utku Demir 2022-12-04 22:56:45 +08:00
parent 8123d46bae
commit a5e30af2fe

10
shell.nix Normal file
View File

@ -0,0 +1,10 @@
(import
(
let lock = builtins.fromJSON (builtins.readFile ./flake.lock); in
fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
sha256 = lock.nodes.flake-compat.locked.narHash;
}
)
{ src = ./.; }
).shellNix