silver-searcher: patch bash completions location

This commit is contained in:
Orivej Desh 2017-11-20 09:14:36 +00:00
parent 0ed7d4d0e8
commit 36e67d2beb
2 changed files with 7 additions and 6 deletions

View file

@ -0,0 +1,5 @@
--- a/Makefile.am
+++ b/Makefile.am
@@ -9 +9 @@
-bashcompdir = $(pkgdatadir)/completions
+bashcompdir = $(datadir)/bash-completion/completions

View file

@ -11,17 +11,13 @@ stdenv.mkDerivation rec {
sha256 = "0wcw4kyivb10m9b173183jrj46a0gisd35yqxi1mr9hw5l5dhkpa";
};
patches = [ ./bash-completion.patch ];
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ pcre zlib lzma ];
postInstall = ''
mkdir -p $out/etc/bash_completion.d
mv $out/share/the_silver_searcher/completions/ag.bashcomp.sh $out/etc/bash_completion.d
rm -r $out/share/the_silver_searcher
'';
meta = with stdenv.lib; {
homepage = https://github.com/ggreer/the_silver_searcher/;
description = "A code-searching tool similar to ack, but faster";