emacs: fix priority for ctags

This fixes the previous attempt (in commit 46d1dd5) to make ctags' ctags
override emacs' ctags. The higher the value of the priority attribute,
the higher the priority (see the definition of `buildEnv`).
This commit is contained in:
Charles Strahan 2016-02-26 12:27:04 -05:00
parent 32e954db64
commit 53ea7dee75
2 changed files with 3 additions and 3 deletions

View File

@ -86,9 +86,6 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ chaoflow lovek323 simons the-kenny jwiegley ];
platforms = platforms.all;
# So that Exuberant ctags is preferred
priority = 1;
longDescription = ''
GNU Emacs is an extensible, customizable text editorand more. At its
core is an interpreter for Emacs Lisp, a dialect of the Lisp

View File

@ -29,6 +29,9 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus;
maintainers = with maintainers; [ simons ];
platforms = platforms.unix;
# So that Exuberant ctags is preferred over emacs's ctags
priority = 1;
};
}