summary refs log tree commit diff
path: root/pkgs/applications/video/mplayer/default.nix
diff options
context:
space:
mode:
authorBence Fabian <begnoc@gmail.com>2015-03-17 20:55:19 +0100
committerBence Fabian <begnoc@gmail.com>2015-03-23 10:42:37 +0100
commit2aa9da5a063ff25dd4f0e82d4761d24234b16628 (patch)
tree24aaa2c6e6d53b48434b44dbfd7fd2a11cdac929 /pkgs/applications/video/mplayer/default.nix
parentf7f0fd0dfe439fc8dbfebc106788ba6ce35e46c9 (diff)
downloadnixlib-2aa9da5a063ff25dd4f0e82d4761d24234b16628.tar
nixlib-2aa9da5a063ff25dd4f0e82d4761d24234b16628.tar.gz
nixlib-2aa9da5a063ff25dd4f0e82d4761d24234b16628.tar.bz2
nixlib-2aa9da5a063ff25dd4f0e82d4761d24234b16628.tar.lz
nixlib-2aa9da5a063ff25dd4f0e82d4761d24234b16628.tar.xz
nixlib-2aa9da5a063ff25dd4f0e82d4761d24234b16628.tar.zst
nixlib-2aa9da5a063ff25dd4f0e82d4761d24234b16628.zip
mplayer: Remove --enable-jack
If provided then configure won't use the pkgconfig of jack.
Diffstat (limited to 'pkgs/applications/video/mplayer/default.nix')
-rw-r--r--pkgs/applications/video/mplayer/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/video/mplayer/default.nix b/pkgs/applications/video/mplayer/default.nix
index 86e5d9cb9eb0..ac106431240d 100644
--- a/pkgs/applications/video/mplayer/default.nix
+++ b/pkgs/applications/video/mplayer/default.nix
@@ -154,7 +154,7 @@ stdenv.mkDerivation rec {
       ${if speexSupport then "--enable-speex" else "--disable-speex"}
       ${if theoraSupport then "--enable-theora" else "--disable-theora"}
       ${if x264Support then "--enable-x264 --disable-x264-lavc" else "--disable-x264 --enable-x264-lavc"}
-      ${if jackaudioSupport then "--enable-jack" else "--disable-jack"}
+      ${if jackaudioSupport then "" else "--disable-jack"}
       ${if pulseSupport then "--enable-pulse" else "--disable-pulse"}
       ${optionalString (useUnfreeCodecs && codecs != null) "--codecsdir=${codecs}"}
       ${optionalString (stdenv.isi686 || stdenv.isx86_64) "--enable-runtime-cpudetection"}