From cb5860ff98fd4b4712d88a3ef5328ca93df6c013 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Tue, 26 Oct 2021 12:53:38 +0200 Subject: [PATCH] zbar: disable dbus by default because the implementation is buggy --- pkgs/tools/graphics/zbar/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/graphics/zbar/default.nix b/pkgs/tools/graphics/zbar/default.nix index df0983b2d645..e17580d9c000 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 }: