react-native-video/shell.nix

14 lines
236 B
Nix
Raw Normal View History

2024-06-30 09:35:05 +00:00
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
nodejs-18_x
nodePackages.yarn
2024-07-09 14:04:57 +07:00
bun
2024-06-30 09:35:05 +00:00
eslint_d
prettierd
jdk11
(jdt-language-server.override { jdk = jdk11; })
];
}