forked from mirrors/nixpkgs
Enable two modern features of GNU global
This commit is contained in:
parent
0d9ebe7535
commit
b6932f56f8
|
@ -1,4 +1,4 @@
|
|||
{ fetchurl, stdenv, libtool, ncurses }:
|
||||
{ fetchurl, stdenv, libtool, ncurses, ctags, sqlite, pythonPackages }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "global-6.3.4";
|
||||
|
@ -14,7 +14,9 @@ stdenv.mkDerivation rec {
|
|||
'' ./configure --prefix="$out" --disable-static ''
|
||||
+ ''--with-posix-sort=$(type -p sort) ''
|
||||
+ ''--with-ltdl-include=${libtool}/include --with-ltdl-lib=${libtool}/lib ''
|
||||
+ ''--with-ncurses=${ncurses}'';
|
||||
+ ''--with-ncurses=${ncurses}''
|
||||
+ ''--with-sqlite3=${sqlite}''
|
||||
+ ''--with-exuberant-ctags=${ctags}/bin/ctags'';
|
||||
|
||||
doCheck = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue