From fbbadc3885e86400574ed4083be138780b5cc3f5 Mon Sep 17 00:00:00 2001 From: David Wronek Date: Wed, 25 Mar 2026 20:07:49 +0100 Subject: [PATCH] linphone: disable automatic update check Gets rid of the "failed to check for update" message upon application launch. Nixpkgs is usually quite quick with updates and auto updates are probably not even working on a nix system. Signed-off-by: David Wronek --- .../instant-messengers/linphone/linphone-desktop/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/networking/instant-messengers/linphone/linphone-desktop/default.nix b/pkgs/applications/networking/instant-messengers/linphone/linphone-desktop/default.nix index adb2dacb2d5f..387c76c06f04 100644 --- a/pkgs/applications/networking/instant-messengers/linphone/linphone-desktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/linphone/linphone-desktop/default.nix @@ -123,6 +123,9 @@ stdenv.mkDerivation (finalAttrs: { # used in Linphone's CMakeLists.txt "-DLINPHONEAPP_VERSION=${finalAttrs.version}" + + # Disable update check + "-DENABLE_UPDATE_CHECK=OFF" ]; # error: invalid conversion from 'int' to 'const char*'