autojump: py2 -> py3

This commit is contained in:
Peter Hoeg 2020-11-26 12:22:37 +08:00 committed by Matthieu Coudron
parent f21a35dfcd
commit baf92e2e6f

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, python, bash }:
{ stdenv, fetchFromGitHub, python3, bash }:
stdenv.mkDerivation rec {
pname = "autojump";
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "1rgpsh70manr2dydna9da4x7p8ahii7dgdgwir5fka340n1wrcws";
};
buildInputs = [ python bash ];
buildInputs = [ python3 bash ];
dontBuild = true;
installPhase = ''