about summary refs log tree commit diff
path: root/pkgs/applications/networking/insync
diff options
context:
space:
mode:
authormarius851000 <marius851000@gmail.com>2020-07-07 16:30:59 +0200
committerGitHub <noreply@github.com>2020-07-07 10:30:59 -0400
commitbe048e3b8950ceecffd71b45f1c658b6447b3fae (patch)
tree8d5cf5316466e38a33a3e6111c7eb842ccf25985 /pkgs/applications/networking/insync
parentdaec48f47c050789e182dce61ea349d11a80968a (diff)
insync: use autoPatchelfHook to fix warning (#92463)
Diffstat (limited to 'pkgs/applications/networking/insync')
-rw-r--r--pkgs/applications/networking/insync/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/networking/insync/default.nix b/pkgs/applications/networking/insync/default.nix
index 773a07dd6c242..c864754403cad 100644
--- a/pkgs/applications/networking/insync/default.nix
+++ b/pkgs/applications/networking/insync/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, makeWrapper }:
+{ stdenv, fetchurl, makeWrapper, autoPatchelfHook }:
 
 stdenv.mkDerivation rec {
   pname = "insync";
@@ -14,6 +14,8 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ makeWrapper ];
 
+  nativeBuildInputs = [ autoPatchelfHook ];
+
   postPatch = ''
     patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" client/insync-portable
   '';