nixos-configs/devShells/subtitle-dev/default.nix

24 lines
330 B
Nix
Raw Permalink Normal View History

{
mkShell,
bumpNpmDeps,
ffmpeg-full,
nodejs_latest,
nodePackages,
typescript,
...
}:
mkShell {
packages = [
nodejs_latest
typescript
ffmpeg-full
nodePackages.ts-node
bumpNpmDeps
];
2025-01-20 11:40:34 -05:00
meta.description = ''
Shell that provides the dependencies for my subtitle management scripts.
'';
}