about summary refs log tree commit diff
path: root/pkgs/tools/misc/autojump
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2013-09-26 20:23:19 +0200
committerDomen Kožar <domen@dev.si>2013-09-26 20:23:43 +0200
commit16f722500ebc686699271f13e47769c7ad881cbd (patch)
tree197b219a4c530815e3df11f65df0c90be671b9e3 /pkgs/tools/misc/autojump
parent8a182718ca8d7696cd975a2ea5a552a9bc4c1b04 (diff)
autojump: correctly set prefix
Diffstat (limited to 'pkgs/tools/misc/autojump')
-rw-r--r--pkgs/tools/misc/autojump/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/tools/misc/autojump/default.nix b/pkgs/tools/misc/autojump/default.nix
index 9955e814a7550..5371ac55adba8 100644
--- a/pkgs/tools/misc/autojump/default.nix
+++ b/pkgs/tools/misc/autojump/default.nix
@@ -19,13 +19,11 @@ in
       # don't check shell support (we're running with bash anyway)
       sed -i -e 150,153d install.sh
 
-      bash ./install.sh -d $out
+      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"
-      mkdir -p $out/bin
-      ln -s $out/usr/local/bin/autojump $out/bin/j
 
       # FIXME: What's the right place for `autojump.zsh'?
     '';