about summary refs log tree commit diff
path: root/pkgs/applications/networking/remote/teamviewer
diff options
context:
space:
mode:
authorRaymond Gauthier <jraygauthier@gmail.com>2021-10-12 10:51:50 -0400
committerRaymond Gauthier <jraygauthier@gmail.com>2021-10-12 10:51:50 -0400
commit4fb188e1d190f2e08053dba3e2e95fff1e29183a (patch)
tree0c86b05a79dd79f3cf6ac9b2ca4c5b01e646d7d1 /pkgs/applications/networking/remote/teamviewer
parentc55bc5bfd3377d54f5b6153d09c033cceadfcc05 (diff)
teamviewer: fix 97148 (busybox installed issue)
Simply add `coreutils` as a runtime dependency which will
prevent teamviewer from using incomplete busybox implementation
of expected gnu binaries.

As suggested by @Artturin in PR comment:
<https://github.com/NixOS/nixpkgs/pull/140076#issuecomment-934770391>.
Diffstat (limited to 'pkgs/applications/networking/remote/teamviewer')
-rw-r--r--pkgs/applications/networking/remote/teamviewer/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/remote/teamviewer/default.nix b/pkgs/applications/networking/remote/teamviewer/default.nix
index 266a80e19e59e..2ba1d4fe10020 100644
--- a/pkgs/applications/networking/remote/teamviewer/default.nix
+++ b/pkgs/applications/networking/remote/teamviewer/default.nix
@@ -1,6 +1,6 @@
 { mkDerivation, lib, fetchurl, autoPatchelfHook, makeWrapper, xdg-utils, dbus
 , qtbase, qtwebkit, qtwebengine, qtx11extras, qtquickcontrols, getconf, glibc
-, libXrandr, libX11, libXext, libXdamage, libXtst, libSM, libXfixes
+, libXrandr, libX11, libXext, libXdamage, libXtst, libSM, libXfixes, coreutils
 , wrapQtAppsHook
 }:
 
@@ -75,7 +75,7 @@ mkDerivation rec {
   '';
 
   makeWrapperArgs = [
-    "--prefix PATH : ${lib.makeBinPath [ getconf ]}"
+    "--prefix PATH : ${lib.makeBinPath [ getconf coreutils ]}"
     "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libXrandr libX11 libXext libXdamage libXtst libSM libXfixes dbus ]}"
   ];