20 lines
222 B
Nix
20 lines
222 B
Nix
|
{
|
||
|
mkShell,
|
||
|
bumpNpmDeps,
|
||
|
ffmpeg-full,
|
||
|
nodejs_latest,
|
||
|
nodePackages,
|
||
|
typescript,
|
||
|
...
|
||
|
}:
|
||
|
mkShell {
|
||
|
packages = [
|
||
|
nodejs_latest
|
||
|
typescript
|
||
|
ffmpeg-full
|
||
|
nodePackages.ts-node
|
||
|
|
||
|
bumpNpmDeps
|
||
|
];
|
||
|
}
|