Skip to content

Commit cdb3da3

Browse files
authored
Add shell.nix file (#55)
1 parent 631d7c3 commit cdb3da3

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

shell.nix

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{ pkgs ? import <nixpkgs> {} }:
2+
pkgs.mkShell {
3+
nativeBuildInputs = with pkgs.buildPackages; [
4+
cargo
5+
cmake
6+
go
7+
jdk17
8+
nodejs_22
9+
python312Packages.pylint
10+
python312Packages.pytest
11+
rustc
12+
];
13+
}

0 commit comments

Comments
 (0)