Skip to content

Commit 2191d2a

Browse files
committed
Added nix shell
1 parent cb42cd2 commit 2191d2a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

analysis/markov/shell.nix

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{ pkgs ? import <nixpkgs> {} }:
2+
3+
pkgs.mkShell {
4+
buildInputs = with pkgs; [
5+
lean4
6+
elan
7+
vscode
8+
];
9+
shellHook = ''
10+
echo "Entering Nix shell with Lean 4, Elan, and VS Code..."
11+
'';
12+
}

0 commit comments

Comments
 (0)