2015-04-01 02:52:53 +01:00
|
|
|
{ fetchurl, stdenv, libtool, ncurses, ctags, sqlite
|
|
|
|
, pythonPackages, makeWrapper }:
|
2009-07-13 10:05:56 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-03-09 16:48:54 +00:00
|
|
|
name = "global-6.3.4";
|
2009-07-13 10:05:56 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/global/${name}.tar.gz";
|
2015-03-09 16:48:54 +00:00
|
|
|
sha256 = "0hcplcayyjf42d8ygzla6142b5dq4ybq4wg3n3cgx3b5yfhvic85";
|
2009-07-13 10:05:56 +01:00
|
|
|
};
|
|
|
|
|
2015-04-01 02:52:53 +01:00
|
|
|
buildInputs = [ libtool ncurses makeWrapper ];
|
2015-03-31 16:34:22 +01:00
|
|
|
propagatedBuildInputs = [ pythonPackages.pygments ];
|
2011-05-30 22:48:55 +01:00
|
|
|
|
2011-01-18 09:34:52 +00:00
|
|
|
configurePhase =
|
2011-05-30 22:48:55 +01:00
|
|
|
'' ./configure --prefix="$out" --disable-static ''
|
|
|
|
+ ''--with-posix-sort=$(type -p sort) ''
|
|
|
|
+ ''--with-ltdl-include=${libtool}/include --with-ltdl-lib=${libtool}/lib ''
|
2015-03-31 22:09:40 +01:00
|
|
|
+ ''--with-ncurses=${ncurses} ''
|
|
|
|
+ ''--with-sqlite3=${sqlite} ''
|
2015-03-31 14:36:19 +01:00
|
|
|
+ ''--with-exuberant-ctags=${ctags}/bin/ctags'';
|
2011-01-18 09:34:52 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2009-07-13 10:21:04 +01:00
|
|
|
postInstall = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p "$out/share/emacs/site-lisp"
|
2009-07-13 10:21:04 +01:00
|
|
|
cp -v *.el "$out/share/emacs/site-lisp"
|
2015-04-01 02:52:53 +01:00
|
|
|
|
|
|
|
wrapProgram $out/bin/gtags \
|
|
|
|
--prefix PYTHONPATH : "$(toPythonPath ${pythonPackages.pygments})"
|
2009-07-13 10:21:04 +01:00
|
|
|
'';
|
|
|
|
|
2015-03-09 16:48:54 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Source code tag system";
|
2009-07-13 10:05:56 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
GNU GLOBAL is a source code tagging system that works the same way
|
|
|
|
across diverse environments (Emacs, vi, less, Bash, web browser, etc).
|
|
|
|
You can locate specified objects in source files and move there easily.
|
|
|
|
It is useful for hacking a large project containing many
|
|
|
|
subdirectories, many #ifdef and many main() functions. It is similar
|
|
|
|
to ctags or etags but is different from them at the point of
|
|
|
|
independence of any editor. It runs on a UNIX (POSIX) compatible
|
|
|
|
operating system like GNU and BSD.
|
|
|
|
'';
|
|
|
|
|
2015-03-09 16:48:54 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2009-07-13 10:05:56 +01:00
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/global/;
|
|
|
|
|
2015-03-09 16:48:54 +00:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
platforms = platforms.unix;
|
2009-07-13 10:05:56 +01:00
|
|
|
};
|
|
|
|
}
|