subsyt/shell.nix

12 lines
111 B
Nix

with (import <nixpkgs> {});
mkShell {
buildInputs = [
yt-dlp
];
shellHook = ''
# empty
'';
}