about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2022-11-04 00:32:11 +0100
committerGitHub <noreply@github.com>2022-11-04 00:32:11 +0100
commit0d2e3ab6dfea445eb52b0ea4aff118bf39426897 (patch)
tree3218036b3b38b340695ada903b745fa52579d630
parentda3ec5a60b89487494d7d817e3d9933b441cc7e7 (diff)
parentdccf26609c9fd35ac27bda973f9c124c5d19be1b (diff)
Merge pull request #197678 from xddxdd/fix-resilio-sync
-rw-r--r--pkgs/applications/networking/resilio-sync/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/resilio-sync/default.nix b/pkgs/applications/networking/resilio-sync/default.nix
index 35b4fa3aef43a..3d12b11b51410 100644
--- a/pkgs/applications/networking/resilio-sync/default.nix
+++ b/pkgs/applications/networking/resilio-sync/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, ... }:
+{ lib, stdenv, fetchurl, libxcrypt, ... }:
 
 stdenv.mkDerivation rec {
   pname = "resilio-sync";
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
     install -D rslsync "$out/bin/rslsync"
     patchelf \
       --interpreter "$(< $NIX_CC/nix-support/dynamic-linker)" \
-      --set-rpath ${lib.makeLibraryPath [ stdenv.cc.libc ]} "$out/bin/rslsync"
+      --set-rpath ${lib.makeLibraryPath [ stdenv.cc.libc libxcrypt ]} "$out/bin/rslsync"
   '';
 
   meta = with lib; {