subsyt/shell.nix
Viktor Varland 3c2ec61635
All checks were successful
build / build (push) Successful in 1m55s
feat: support opml from youtube
2025-04-08 12:32:12 +02:00

13 lines
123 B
Nix

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