Skip to content

Commit

Permalink
Add shell.nix to root so that we can execute nix-shell.
Browse files Browse the repository at this point in the history
  • Loading branch information
cgrindel committed Dec 8, 2023
1 parent 7c7ffbf commit 4a198ff
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
(import
(
let lock = builtins.fromJSON (builtins.readFile ./flake.lock); in
fetchTarball {
url = lock.nodes.flake-compat.locked.url or "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
sha256 = lock.nodes.flake-compat.locked.narHash;
}
)
{ src = ./.; }
).shellNix

0 comments on commit 4a198ff

Please sign in to comment.