about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/audio/yabridgectl/remove-dependency-verification.patch
blob: b39aaeaa811701a87a9477d1b096b5285b914003 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
diff --git a/tools/yabridgectl/src/actions.rs b/tools/yabridgectl/src/actions.rs
index 25857753..59590e38 100644
--- a/tools/yabridgectl/src/actions.rs
+++ b/tools/yabridgectl/src/actions.rs
@@ -835,14 +835,6 @@ pub fn do_sync(config: &mut Config, options: &SyncOptions) -> Result<()> {
     // be the case if we get to this point though.
     verify_path_setup(config)?;
 
-    // This check is only performed once per combination of Wine and yabridge versions
-    verify_wine_setup(config)?;
-
-    // Yabridge uses D-Bus notifications to relay important information when something's very wrong,
-    // so we'll check whether `libdbus-1.so` is available (even though it would be very odd if it
-    // isn't)
-    verify_external_dependencies()?;
-
     Ok(())
 }