about summary refs log tree commit diff
path: root/pkgs/misc/emulators
diff options
context:
space:
mode:
authorAverell Dalton <averell+nixpkgs@rxd4.com>2019-07-23 16:30:56 +0200
committerAverell Dalton <averell+nixpkgs@rxd4.com>2019-07-23 16:30:56 +0200
commit9332773e5108b096d1e67fb01158cd1a9530e0b0 (patch)
tree2c4ff1b4f1cb66549fc36174b4485ed64e698ed9 /pkgs/misc/emulators
parent2797ddee7ddebbb1292ea7673c42d77bc82b8515 (diff)
downloadnixlib-9332773e5108b096d1e67fb01158cd1a9530e0b0.tar
nixlib-9332773e5108b096d1e67fb01158cd1a9530e0b0.tar.gz
nixlib-9332773e5108b096d1e67fb01158cd1a9530e0b0.tar.bz2
nixlib-9332773e5108b096d1e67fb01158cd1a9530e0b0.tar.lz
nixlib-9332773e5108b096d1e67fb01158cd1a9530e0b0.tar.xz
nixlib-9332773e5108b096d1e67fb01158cd1a9530e0b0.tar.zst
nixlib-9332773e5108b096d1e67fb01158cd1a9530e0b0.zip
wine: disable zbar in gst-plugins-bad
Diffstat (limited to 'pkgs/misc/emulators')
-rw-r--r--pkgs/misc/emulators/wine/base.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/misc/emulators/wine/base.nix b/pkgs/misc/emulators/wine/base.nix
index 8edf7ad39597..01d096599155 100644
--- a/pkgs/misc/emulators/wine/base.nix
+++ b/pkgs/misc/emulators/wine/base.nix
@@ -46,7 +46,9 @@ stdenv.mkDerivation ((lib.optionalAttrs (buildScript != null) {
   ++ lib.optional udevSupport            pkgs.udev
   ++ lib.optional vulkanSupport          pkgs.vulkan-loader
   ++ lib.optional sdlSupport             pkgs.SDL2
-  ++ lib.optionals gstreamerSupport      (with pkgs.gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav ])
+  ++ lib.optionals gstreamerSupport      (with pkgs.gst_all_1;
+    [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-ugly gst-libav 
+    (gst-plugins-bad.override { enableZbar = false; }) ])
   ++ lib.optionals gtkSupport    [ pkgs.gtk3 pkgs.glib ]
   ++ lib.optionals openclSupport [ pkgs.opencl-headers pkgs.ocl-icd ]
   ++ lib.optionals xmlSupport    [ pkgs.libxml2 pkgs.libxslt ]