28ac782583
There are many more packages to fix, this is just a start. Rules: * Don't repeat the package name (not always that easy...) * Start with capital letter * Don't end with full stop * Don't start with "The ..." or "A ..." I've also added descriptions to some packages and rewritten others.
59 lines
2.1 KiB
Nix
59 lines
2.1 KiB
Nix
{ fetchurl, stdenv, python, bash }:
|
||
|
||
let
|
||
version = "21.6.9";
|
||
in
|
||
stdenv.mkDerivation rec {
|
||
name = "autojump-${version}";
|
||
|
||
src = fetchurl {
|
||
url = "http://github.com/joelthelion/autojump/archive/release-v${version}.tar.gz";
|
||
name = "autojump-${version}.tar.gz";
|
||
sha256 = "0js6jp9l83zxhd9bn8hjn4yf8gydnldrlmafgvlg3rd4i1v82649";
|
||
};
|
||
|
||
buildInputs = [ python bash ];
|
||
dontBuild = true;
|
||
|
||
installPhase = ''
|
||
# don't check shell support (we're running with bash anyway)
|
||
sed -i -e 150,153d install.sh
|
||
|
||
bash ./install.sh -d $out -p ""
|
||
chmod +x $out/etc/profile.d/*
|
||
|
||
mkdir -p "$out/etc/bash_completion.d"
|
||
cp -v $out/etc/profile.d/autojump.bash "$out/etc/bash_completion.d"
|
||
|
||
# FIXME: What's the right place for `autojump.zsh'?
|
||
'';
|
||
|
||
meta = {
|
||
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 useable. 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.
|
||
'';
|
||
homepage = http://wiki.github.com/joelthelion/autojump;
|
||
license = stdenv.lib.licenses.gpl3;
|
||
platforms = stdenv.lib.platforms.all;
|
||
maintainers = [ stdenv.lib.maintainers.iElectric ];
|
||
};
|
||
}
|