dropbox-cli: replace python by python3 (#59115)

fix #59110
gstqt5
bricewge 2019-04-07 22:52:53 +02:00 committed by xeji
parent 2aecd159b1
commit 544128587d
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, pkgconfig, fetchurl, python, dropbox }:
{ stdenv, pkgconfig, fetchurl, python3, dropbox }:
let
version = "2019.02.14";
dropboxd = "${dropbox}/bin/dropbox";
@ -12,7 +12,7 @@ stdenv.mkDerivation {
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ python ];
buildInputs = [ python3 ];
phases = "unpackPhase installPhase";