autojump: Update to 22.2.4

This commit is contained in:
William Roe 2015-03-04 16:14:49 +00:00
parent 13764f0b0f
commit df73d821fa

View file

@ -1,7 +1,7 @@
{ fetchurl, stdenv, python, bash }:
let
version = "21.6.9";
version = "22.2.4";
in
stdenv.mkDerivation rec {
name = "autojump-${version}";
@ -9,21 +9,18 @@ in
src = fetchurl {
url = "http://github.com/joelthelion/autojump/archive/release-v${version}.tar.gz";
name = "autojump-${version}.tar.gz";
sha256 = "0js6jp9l83zxhd9bn8hjn4yf8gydnldrlmafgvlg3rd4i1v82649";
sha256 = "816badb0721f735e2b86bdfa8b333112f3867343c7c2263c569f75b4ec91f475";
};
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 ""
python ./install.py -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"
cp -v $out/share/autojump/autojump.bash "$out/etc/bash_completion.d"
# FIXME: What's the right place for `autojump.zsh'?
'';