notmuch: remove bash-completion and just specify path
This commit is contained in:
parent
d0dd8e6cca
commit
028fcf9643
|
@ -3,7 +3,6 @@
|
||||||
, xapian, gmime, talloc, zlib
|
, xapian, gmime, talloc, zlib
|
||||||
, doxygen, perl, texinfo
|
, doxygen, perl, texinfo
|
||||||
, pythonPackages
|
, pythonPackages
|
||||||
, bash-completion
|
|
||||||
, emacs
|
, emacs
|
||||||
, ruby
|
, ruby
|
||||||
, which, dtach, openssl, bash, gdb, man
|
, which, dtach, openssl, bash, gdb, man
|
||||||
|
@ -31,7 +30,6 @@ stdenv.mkDerivation rec {
|
||||||
doxygen # (optional) api docs
|
doxygen # (optional) api docs
|
||||||
pythonPackages.sphinx # (optional) documentation -> doc/INSTALL
|
pythonPackages.sphinx # (optional) documentation -> doc/INSTALL
|
||||||
texinfo # (optional) documentation -> doc/INSTALL
|
texinfo # (optional) documentation -> doc/INSTALL
|
||||||
bash-completion # (optional) dependency to install bash completion
|
|
||||||
] ++ optional withEmacs [ emacs ];
|
] ++ optional withEmacs [ emacs ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -56,6 +54,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--zshcompletiondir=${placeholder "out"}/share/zsh/site-functions"
|
"--zshcompletiondir=${placeholder "out"}/share/zsh/site-functions"
|
||||||
|
"--bashcompletiondir=${placeholder "out"}/share/bash-completion/completions"
|
||||||
"--infodir=${placeholder "info"}"
|
"--infodir=${placeholder "info"}"
|
||||||
] ++ optional (!withEmacs) "--without-emacs"
|
] ++ optional (!withEmacs) "--without-emacs"
|
||||||
++ optional (withEmacs) "--emacslispdir=${placeholder "emacs"}/share/emacs/site-lisp"
|
++ optional (withEmacs) "--emacslispdir=${placeholder "emacs"}/share/emacs/site-lisp"
|
||||||
|
|
Loading…
Reference in New Issue