From 0e14a8621dbcd5ae8fa4217c32568ee0a4a22920 Mon Sep 17 00:00:00 2001 From: AndersonTorres Date: Sun, 25 Jun 2017 21:08:17 -0300 Subject: [PATCH] mpv: eliminate `config.mpv` options Removing all `config.mpv.*` options will improve readability. MPV has many configurable options, and using the config approach is prone to confusion and unnecessary code duplication. If needed, the user can `override` the relevant variables in the function itself, so no functionality is lost. Closes issue #26786 --- pkgs/top-level/all-packages.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2f64f901dfb..40a1727be9b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15062,10 +15062,6 @@ with pkgs; lua = lua5_1; lua5_sockets = lua5_1_sockets; youtube-dl = pythonPackages.youtube-dl; - bs2bSupport = config.mpv.bs2bSupport or true; - youtubeSupport = config.mpv.youtubeSupport or true; - cacaSupport = config.mpv.cacaSupport or true; - vaapiSupport = config.mpv.vaapiSupport or false; libva = libva-full; };