aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/networking/insync/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/networking/insync/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/networking/insync/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/nixpkgs/pkgs/applications/networking/insync/default.nix b/nixpkgs/pkgs/applications/networking/insync/default.nix
index 773a07dd6c2..c864754403c 100644
--- a/nixpkgs/pkgs/applications/networking/insync/default.nix
+++ b/nixpkgs/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
'';