about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/gnome/extensions/extensionOverridesPatches/shell-volume-mixer_at_derhofbauer.at.patch
blob: f1064feb54b8da3d63479d6e5c0652a13a88e13c (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
28
29
30
31
32
diff --git a/lib/utils/paHelper.js b/lib/utils/paHelper.js
index be28d21..a410a63 100755
--- a/lib/utils/paHelper.js
+++ b/lib/utils/paHelper.js
@@ -57,13 +57,7 @@ async function execHelper(type, index = undefined) {
         return null;
     }

-    const python = await findPython();
-
-    if (!python) {
-        return null;
-    }
-
-    const args = ['/usr/bin/env', python, paUtilPath, type];
+    const args = ['@python3@/bin/python', paUtilPath, type];

     if (!isNaN(index)) {
         args.push(index);
diff --git a/pautils/lib/libpulse.py b/pautils/lib/libpulse.py
index a32c272..8225f2f 100755
--- a/pautils/lib/libpulse.py
+++ b/pautils/lib/libpulse.py
@@ -16,7 +16,7 @@
 from ctypes import *

 try:
-    lib = CDLL('libpulse.so.0')
+    lib = CDLL('@pulseaudio@/lib/libpulse.so.0')
 except:
     lib = CDLL('libpulse.so')