2018-05-18 15:11:12 +01:00
|
|
|
|
{ stdenv, fetchFromGitHub, python, bash }:
|
2009-05-26 23:05:05 +01:00
|
|
|
|
|
2018-05-18 15:11:12 +01:00
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
name = "autojump-${version}";
|
2018-02-25 04:26:52 +00:00
|
|
|
|
version = "22.5.1";
|
2009-05-26 23:05:05 +01:00
|
|
|
|
|
2018-05-18 15:11:12 +01:00
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "wting";
|
|
|
|
|
repo = "autojump";
|
|
|
|
|
rev = "release-v${version}";
|
|
|
|
|
sha256 = "1l1278g3k1qfrz41pkpjdhsabassb9si2d1bfbcmvbv5h3wmlqk9";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
buildInputs = [ python bash ];
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
|
python ./install.py -d "$out" -p "" -z "$out/share/zsh/site-functions/"
|
|
|
|
|
|
|
|
|
|
chmod +x "$out/etc/profile.d/autojump.sh"
|
|
|
|
|
install -Dt "$out/share/bash-completion/completions/" -m444 "$out/share/autojump/autojump.bash"
|
|
|
|
|
install -Dt "$out/share/fish/vendor_conf.d/" -m444 "$out/share/autojump/autojump.fish"
|
|
|
|
|
install -Dt "$out/share/zsh/site-functions/" -m444 "$out/share/autojump/autojump.zsh"
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
description = "A `cd' command that learns";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
One of the most used shell commands is “cd”. A quick survey
|
|
|
|
|
among my friends revealed that between 10 and 20% of all
|
|
|
|
|
commands they type are actually cd commands! Unfortunately,
|
|
|
|
|
jumping from one part of your system to another with cd
|
|
|
|
|
requires to enter almost the full path, which isn’t very
|
|
|
|
|
practical and requires a lot of keystrokes.
|
|
|
|
|
|
|
|
|
|
Autojump is a faster way to navigate your filesystem. It
|
|
|
|
|
works by maintaining a database of the directories you use the
|
|
|
|
|
most from the command line. The jstat command shows you the
|
|
|
|
|
current contents of the database. You need to work a little
|
|
|
|
|
bit before the database becomes usable. Once your database
|
|
|
|
|
is reasonably complete, you can “jump” to a directory by
|
|
|
|
|
typing "j dirspec", where dirspec is a few characters of the
|
|
|
|
|
directory you want to jump to. It will jump to the most used
|
|
|
|
|
directory whose name matches the pattern given in dirspec.
|
|
|
|
|
|
|
|
|
|
Autojump supports tab-completion.
|
2009-05-26 23:05:05 +01:00
|
|
|
|
'';
|
2018-05-18 15:11:12 +01:00
|
|
|
|
homepage = http://wiki.github.com/wting/autojump;
|
|
|
|
|
license = licenses.gpl3;
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
maintainers = with maintainers; [ domenkozar yurrriq ];
|
|
|
|
|
};
|
|
|
|
|
}
|