stream-sprout/devshell.nix
2024-07-23 16:35:45 +01:00

17 lines
179 B
Nix

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