about summary refs log tree commit diff
path: root/pkgs/applications/networking/sync
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-09-21 07:04:22 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-09-21 07:04:22 +0000
commitc289ea7c4f936198a6334f59336b7451dddb2ab7 (patch)
tree8a7e7ecdb62ded03d77926a3803225901b1e42ae /pkgs/applications/networking/sync
parent53cecc13b45b84cc6500f46b63d938ba59a74050 (diff)
Making rsync cross build.
svn path=/nixpkgs/trunk/; revision=29408
Diffstat (limited to 'pkgs/applications/networking/sync')
-rw-r--r--pkgs/applications/networking/sync/rsync/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/networking/sync/rsync/default.nix b/pkgs/applications/networking/sync/rsync/default.nix
index 3c84ee56a683d..cf770213ef9b1 100644
--- a/pkgs/applications/networking/sync/rsync/default.nix
+++ b/pkgs/applications/networking/sync/rsync/default.nix
@@ -12,7 +12,8 @@ stdenv.mkDerivation {
     sha256 = "1j77vwz6q3dvgr8w6wvigd5v4m5952czaqdvihr8di13q0b0vq4y";
   };
 
-  buildInputs = [perl] ++ stdenv.lib.optional enableACLs acl;
+  buildInputs = stdenv.lib.optional enableACLs acl;
+  buildNativeInputs = [perl];
 
   meta = {
     homepage = http://samba.anu.edu.au/rsync/;