0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

ytui-music: replace youtube-dl with yt-dlp

This commit is contained in:
Victor Rodriguez 2025-04-04 10:57:33 -06:00 committed by GitHub
parent d142f5ee8a
commit fdcba6e9d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,7 +8,7 @@
stdenv,
darwin,
mpv,
youtube-dl,
yt-dlp,
makeBinaryWrapper,
}:
@ -49,7 +49,7 @@ rustPlatform.buildRustPackage rec {
postInstall = ''
wrapProgram $out/bin/ytui_music \
--prefix PATH : ${lib.makeBinPath [ youtube-dl ]}
--prefix PATH : ${lib.makeBinPath [ yt-dlp ]}
'';
doInstallCheck = true;