global: support universal-ctags

This commit is contained in:
Leon Isenberg 2016-07-18 21:16:00 +02:00
parent 8e3d0b8323
commit 3211ff1b50

View File

@ -1,5 +1,5 @@
{ fetchurl, stdenv, libtool, makeWrapper
, coreutils, ctags, ncurses, pythonPackages, sqlite, pkgconfig
, coreutils, ctags, ncurses, pythonPackages, sqlite, universal-ctags, pkgconfig
}:
stdenv.mkDerivation rec {
@ -23,6 +23,7 @@ stdenv.mkDerivation rec {
"--with-ncurses=${ncurses.dev}"
"--with-sqlite3=${sqlite.dev}"
"--with-exuberant-ctags=${ctags}/bin/ctags"
"--with-universal-ctags=${universal-ctags}/bin/ctags"
"--with-posix-sort=${coreutils}/bin/sort"
];