adb-sync: use python3 (#44409)

According to https://github.com/google/adb-sync/pull/2#commitcomment-11399661,
it should work with python2 and python3. Using python3 is prefered in nixpkgs.
This commit is contained in:
Robert Schütz 2018-08-03 19:48:42 +02:00 committed by GitHub
parent f061271938
commit 0cd86e1e9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ stdenv, fetchgit, python, androidsdk, makeWrapper }:
{ stdenv, fetchgit, python3, androidsdk, makeWrapper }:
stdenv.mkDerivation rec {
name = "adb-sync-${version}";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
sha256 = "1y016bjky5sn58v91jyqfz7vw8qfqnfhb9s9jd32k8y29hy5vy4d";
};
buildInputs = [ python androidsdk makeWrapper ];
buildInputs = [ python3 androidsdk makeWrapper ];
phases = "installPhase";