Unverified Commit fdcba6e9 authored by Victor Rodriguez's avatar Victor Rodriguez Committed by GitHub
Browse files

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

parent d142f5ee
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;