blob: 99889c15c6a8101c90131d79e957fe113f93632f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShellNoCC {
packages = with pkgs; [
gnumake
python3
typescript-language-server
vscode-langservers-extracted
];
TMPDIR = "/tmp"; # lsp needs it
}
|