about summary refs log tree commit diff
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2021-10-26 12:53:38 +0200
committerProfpatsch <mail@profpatsch.de>2021-10-26 20:45:57 +0200
commitcb5860ff98fd4b4712d88a3ef5328ca93df6c013 (patch)
treecac54b8abad4daaadc475294f53d3d4365bba5ef /pkgs/tools/graphics
parent69e6c29f0a61b3c06a3ab638484cfa53db78146c (diff)
zbar: disable dbus by default because the implementation is buggy
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/zbar/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/tools/graphics/zbar/default.nix b/pkgs/tools/graphics/zbar/default.nix
index df0983b2d645c..e17580d9c000e 100644
--- a/pkgs/tools/graphics/zbar/default.nix
+++ b/pkgs/tools/graphics/zbar/default.nix
@@ -15,7 +15,11 @@
 , autoreconfHook
 , dbus
 , enableVideo ? stdenv.isLinux
-, enableDbus ? stdenv.isLinux
+  # The implementation is buggy and produces an error like
+  # Name Error (Connection ":1.4380" is not allowed to own the service "org.linuxtv.Zbar" due to security policies in the configuration file)
+  # for every scanned code.
+  # see https://github.com/mchehab/zbar/issues/104
+, enableDbus ? false
 , libintl
 }: