stream-sprout/devshell.nix
2024-07-22 14:12:10 +01:00

15 lines
146 B
Nix

{ lib,
mkShell,
pkgs,
stdenv,
}:
mkShell {
packages = with pkgs; ([
ffmpeg-headless
procps
yq
]);
shellHook = ''
'';
}