react-native-video/shell.nix

14 lines
236 B
Nix
Raw Permalink Normal View History

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