stream-sprout/devshell.nix
2024-07-23 12:32:49 +01:00

17 lines
171 B
Nix

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