3
0
Fork 0
forked from mirrors/nixpkgs

Enable two modern features of GNU global

This commit is contained in:
John Wiegley 2015-03-31 08:36:19 -05:00
parent 0d9ebe7535
commit b6932f56f8

View file

@ -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;