mirror of
https://github.com/zoriya/react-native-video.git
synced 2025-12-06 07:16:12 +00:00
12 lines
225 B
Nix
12 lines
225 B
Nix
{pkgs ? import <nixpkgs> {}}:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
nodejs-18_x
|
|
nodePackages.yarn
|
|
eslint_d
|
|
prettierd
|
|
jdk11
|
|
(jdt-language-server.override { jdk = jdk11; })
|
|
];
|
|
}
|