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:
parent
f061271938
commit
0cd86e1e9d
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchgit, python, androidsdk, makeWrapper }:
|
{ stdenv, fetchgit, python3, androidsdk, makeWrapper }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "adb-sync-${version}";
|
name = "adb-sync-${version}";
|
||||||
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1y016bjky5sn58v91jyqfz7vw8qfqnfhb9s9jd32k8y29hy5vy4d";
|
sha256 = "1y016bjky5sn58v91jyqfz7vw8qfqnfhb9s9jd32k8y29hy5vy4d";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ python androidsdk makeWrapper ];
|
buildInputs = [ python3 androidsdk makeWrapper ];
|
||||||
|
|
||||||
phases = "installPhase";
|
phases = "installPhase";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user