about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/linphone/no-store-path-in-autostart.patch
blob: dc1b0be916cdf22c44efbadaf61c476fcaa6a2e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
From 6a26922e5e4363de36057d635a1bf889160b2533 Mon Sep 17 00:00:00 2001
From: Lorenz Brun <lorenz@brun.one>
Date: Fri, 28 Jan 2022 18:44:43 +0100
Subject: [PATCH] Do not use store path for autostart on Nix

---
 linphone-app/src/app/App.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/linphone-app/src/app/App.cpp b/linphone-app/src/app/App.cpp
index 868f8f44..2c61c648 100644
--- a/linphone-app/src/app/App.cpp
+++ b/linphone-app/src/app/App.cpp
@@ -858,6 +858,10 @@ void App::setAutoStart (bool enabled) {
 		exec = QProcessEnvironment::systemEnvironment().value(QStringLiteral("APPIMAGE"));
 		qDebug() << "exec path autostart set appimage=" << exec;
 	}
+	else if (binPath.startsWith("/nix/store")) { // Nix/NixOS
+		exec = QStringLiteral("linphone");
+		qDebug() << "exec path autostart set nix=" << exec;
+	}
 	else { //classic package
 		exec = binPath;
 		qDebug() << "exec path autostart set classic package=" << exec;
-- 
2.25.1