about summary refs log tree commit diff
path: root/pkgs/tools/misc/autojump
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2020-11-26 12:22:37 +0800
committerMatthieu Coudron <teto@users.noreply.github.com>2020-11-26 19:46:51 +0100
commitbaf92e2e6fe12ed3e4465ba6d6be857373b81ff4 (patch)
treecde8fb35cb2578574faea4f43b3c5bbbe0baf03a /pkgs/tools/misc/autojump
parentf21a35dfcd428e4206d701ac0ba101e8fd1083c3 (diff)
autojump: py2 -> py3
Diffstat (limited to 'pkgs/tools/misc/autojump')
-rw-r--r--pkgs/tools/misc/autojump/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/autojump/default.nix b/pkgs/tools/misc/autojump/default.nix
index 85e500388341f..c1a55256b35a0 100644
--- a/pkgs/tools/misc/autojump/default.nix
+++ b/pkgs/tools/misc/autojump/default.nix
@@ -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 = ''