about summary refs log tree commit diff
path: root/pkgs/applications/video/mplayer2/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/video/mplayer2/default.nix')
-rw-r--r--pkgs/applications/video/mplayer2/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/video/mplayer2/default.nix b/pkgs/applications/video/mplayer2/default.nix
index 9e89d5384147..24f53884e39c 100644
--- a/pkgs/applications/video/mplayer2/default.nix
+++ b/pkgs/applications/video/mplayer2/default.nix
@@ -12,6 +12,7 @@
 , theoraSupport ? true, libtheora ? null
 , jackaudioSupport ? false, jackaudio ? null
 , pulseSupport ? true, pulseaudio ? null
+, bs2bSupport ? false, libbs2b ? null
 # For screenshots
 , libpngSupport ? true, libpng ? null
 , useUnfreeCodecs ? false
@@ -29,6 +30,7 @@ assert speexSupport -> speex != null;
 assert theoraSupport -> libtheora != null;
 assert jackaudioSupport -> jackaudio != null;
 assert pulseSupport -> pulseaudio != null;
+assert bs2bSupport -> libbs2b != null;
 assert libpngSupport -> libpng != null;
 
 let
@@ -92,6 +94,7 @@ stdenv.mkDerivation rec {
     ++ optional screenSaverSupport libXScrnSaver
     ++ optional vdpauSupport libvdpau
     ++ optional speexSupport speex
+    ++ optional bs2bSupport libbs2b
     ++ optional libpngSupport libpng
     ;