1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

youtube-dl: use python3

This commit is contained in:
rnhmjoj 2018-06-02 15:18:56 +02:00
parent 62eb7c102f
commit 873663b650
No known key found for this signature in database
GPG key ID: 91BE884FBA4B591A

View file

@ -19384,9 +19384,9 @@ with pkgs;
yoshimi = callPackage ../applications/audio/yoshimi { };
youtube-dl = with pythonPackages; toPythonApplication youtube-dl;
youtube-dl = with python3Packages; toPythonApplication youtube-dl;
youtube-dl-light = with pythonPackages; toPythonApplication youtube-dl-light;
youtube-dl-light = with python3Packages; toPythonApplication youtube-dl-light;
youtube-viewer = perlPackages.WWWYoutubeViewer;