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