forked from mirrors/nixpkgs
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
|
@ -10,8 +10,6 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1y016bjky5sn58v91jyqfz7vw8qfqnfhb9s9jd32k8y29hy5vy4d";
|
sha256 = "1y016bjky5sn58v91jyqfz7vw8qfqnfhb9s9jd32k8y29hy5vy4d";
|
||||||
};
|
};
|
||||||
|
|
||||||
preferLocalBuild = true;
|
|
||||||
|
|
||||||
buildInputs = [ python androidsdk makeWrapper ];
|
buildInputs = [ python androidsdk makeWrapper ];
|
||||||
|
|
||||||
phases = "installPhase";
|
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)";
|
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";
|
homepage = "https://github.com/google/adb-sync";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
platforms = platforms.all;
|
platforms = platforms.unix;
|
||||||
|
hydraPlatforms = [];
|
||||||
maintainers = with maintainers; [ scolobb ];
|
maintainers = with maintainers; [ scolobb ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue