mirror of
https://github.com/wimpysworld/stream-sprout
synced 2026-03-14 14:45:50 +01:00
17 lines
179 B
Nix
17 lines
179 B
Nix
{ lib,
|
|
mkShell,
|
|
pkgs,
|
|
stdenv,
|
|
}:
|
|
mkShell {
|
|
packages = with pkgs; ([
|
|
coreutils-full
|
|
ffmpeg-headless
|
|
gawk
|
|
gnugrep
|
|
gnused
|
|
]);
|
|
|
|
shellHook = ''
|
|
'';
|
|
}
|