mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #18375 from scolobb/adb-sync-fix
adb-sync: Make `platforms` correspond to those of `androidsdk`
This commit is contained in:
commit
515bc7cda2
1 changed files with 2 additions and 3 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue