about summary refs log tree commit diff
path: root/pkgs/development/mobile
diff options
context:
space:
mode:
authorSergiu Ivanov <sivanov@colimite.fr>2016-09-06 23:43:10 +0200
committerSergiu Ivanov <sivanov@colimite.fr>2016-09-06 23:55:36 +0200
commit9d3172f140b42d1d27aaa840690a2095830fdfa6 (patch)
tree6205132cdb36860e8be347bfee927c0f965c8ee4 /pkgs/development/mobile
parentc43c0b2efac1cfbcb7e22cc6362e45dc7917c3d8 (diff)
adb-sync: Make platforms correspond to those of androidsdk (main dependency).
Diffstat (limited to 'pkgs/development/mobile')
-rw-r--r--pkgs/development/mobile/adb-sync/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/mobile/adb-sync/default.nix b/pkgs/development/mobile/adb-sync/default.nix
index f4adad3ba2b52..834460748ca27 100644
--- a/pkgs/development/mobile/adb-sync/default.nix
+++ b/pkgs/development/mobile/adb-sync/default.nix
@@ -10,8 +10,6 @@ stdenv.mkDerivation rec {
     sha256 = "1y016bjky5sn58v91jyqfz7vw8qfqnfhb9s9jd32k8y29hy5vy4d";
   };
 
-  preferLocalBuild = true;
-
   buildInputs = [ python androidsdk makeWrapper ];
 
   phases = "installPhase";
@@ -27,7 +25,8 @@ stdenv.mkDerivation rec {
     description = "A tool to synchronise files between a PC and an Android devices using ADB (Android Debug Bridge)";
     homepage = "https://github.com/google/adb-sync";
     license = licenses.asl20;
-    platforms = platforms.all;
+    platforms = platforms.unix;
+    hydraPlatforms = [];
     maintainers = with maintainers; [ scolobb ];
   };
 }