forked from mirrors/nixpkgs
Merge pull request #23136 from ljli/global-enhance
global: support universal-ctags
This commit is contained in:
commit
3af06724fa
|
@ -1,5 +1,5 @@
|
||||||
{ fetchurl, stdenv, libtool, makeWrapper
|
{ fetchurl, stdenv, libtool, makeWrapper
|
||||||
, coreutils, ctags, ncurses, pythonPackages, sqlite, pkgconfig
|
, coreutils, ctags, ncurses, pythonPackages, sqlite, universal-ctags, pkgconfig
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -23,6 +23,7 @@ stdenv.mkDerivation rec {
|
||||||
"--with-ncurses=${ncurses.dev}"
|
"--with-ncurses=${ncurses.dev}"
|
||||||
"--with-sqlite3=${sqlite.dev}"
|
"--with-sqlite3=${sqlite.dev}"
|
||||||
"--with-exuberant-ctags=${ctags}/bin/ctags"
|
"--with-exuberant-ctags=${ctags}/bin/ctags"
|
||||||
|
"--with-universal-ctags=${universal-ctags}/bin/ctags"
|
||||||
"--with-posix-sort=${coreutils}/bin/sort"
|
"--with-posix-sort=${coreutils}/bin/sort"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue