jump: init at 0.23.0 (#60631)

This commit is contained in:
Sondre Nilsen 2019-05-06 16:40:53 +02:00 committed by Wael Nasreddine
parent 0d00b0b646
commit ffe0bb8435
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,40 @@
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "jump";
version = "0.23.0";
src = fetchFromGitHub {
owner = "gsamokovarov";
repo = pname;
rev = "v${version}";
sha256 = "1acpvg3adcjnxnz9vx7q99cvnkkvkxfdjkbh2rb6iwakx7ksaakv";
};
modSha256 = "1fzsm85c31vkdw80kijxmjhk8jyhjz8b21npgks2qrnizhm6iaf8";
outputs = [ "out" "man"];
postInstall = ''
install -D --mode=444 man/j.1 man/jump.1 -t $man/man/man1/
# generate completion scripts for jump
export HOME="$NIX_BUILD_TOP"
mkdir -p $out/share/{bash-completion/completions,fish/vendor_completions.d,zsh/site-functions}
$out/bin/jump shell bash > "$out/share/bash-completion/completions/jump"
$out/bin/jump shell fish > $out/share/fish/vendor_completions.d/jump.fish
$out/bin/jump shell zsh > $out/share/zsh/site-functions/_jump
'';
meta = with lib; {
description = "Jump helps you navigate faster by learning your habits.";
longDescription = ''
Jump integrates with the shell and learns about your
navigational habits by keeping track of the directories you visit. It
strives to give you the best directory for the shortest search term.
'';
homepage = https://github.com/gsamokovarov/jump;
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ sondr3 ];
};
}

View file

@ -4133,6 +4133,8 @@ in
jumanpp = callPackage ../tools/text/jumanpp {};
jump = callPackage ../tools/system/jump {};
kindlegen = callPackage ../tools/typesetting/kindlegen { };
latex2html = callPackage ../tools/misc/latex2html { };