1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/packages/yt-dlp-master.nix

10 lines
304 B
Nix
Raw Normal View History

2026-02-11 16:46:36 +01:00
{ nix, writeShellScriptBin }:
writeShellScriptBin "yt-dlp-master" ''
args=$@
${nix}/bin/nix-shell -p '(yt-dlp.overrideAttrs (_: {
src = builtins.fetchTree "github:yt-dlp/yt-dlp";
patches = [];
postPatch = "python devscripts/update-version.py 0.99";
}))' -p deno --run "yt-dlp $args"
''