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`).

+3 -3
-3
pkgs/applications/editors/emacs-24/default.nix
··· 86 maintainers = with maintainers; [ chaoflow lovek323 simons the-kenny jwiegley ]; 87 platforms = platforms.all; 88 89 - # So that Exuberant ctags is preferred 90 - priority = 1; 91 - 92 longDescription = '' 93 GNU Emacs is an extensible, customizable text editor—and more. At its 94 core is an interpreter for Emacs Lisp, a dialect of the Lisp
··· 86 maintainers = with maintainers; [ chaoflow lovek323 simons the-kenny jwiegley ]; 87 platforms = platforms.all; 88 89 longDescription = '' 90 GNU Emacs is an extensible, customizable text editor—and more. At its 91 core is an interpreter for Emacs Lisp, a dialect of the Lisp
+3
pkgs/development/tools/misc/ctags/default.nix
··· 29 license = licenses.gpl2Plus; 30 maintainers = with maintainers; [ simons ]; 31 platforms = platforms.unix; 32 }; 33 34 }
··· 29 license = licenses.gpl2Plus; 30 maintainers = with maintainers; [ simons ]; 31 platforms = platforms.unix; 32 + 33 + # So that Exuberant ctags is preferred over emacs's ctags 34 + priority = 1; 35 }; 36 37 }