0add50ed1b
svn path=/nixpkgs/trunk/; revision=27321
55 lines
1.7 KiB
Nix
55 lines
1.7 KiB
Nix
{ fetchurl, stdenv, libtool, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "global-5.9.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/global/${name}.tar.gz";
|
|
sha256 = "0hi7s9nnd0fwdqis2bs66k4bfmwvkwjclv7sx1p9rfpl21ngj8zw";
|
|
};
|
|
|
|
buildInputs = [ libtool ncurses ];
|
|
|
|
patchPhase =
|
|
# Remove $(CURSES_LIBS) from the dependencies because it contains stuff
|
|
# like "-ldl -lncurses".
|
|
'' sed -i gtags-cscope/Makefile.in \
|
|
-e 's|gtags_cscope_DEPENDENCIES = $(LDADD) $(LTDLDEPS) $(CURSES_LIBS)|gtags_cscope_DEPENDENCIES = $(LDADD)|g'
|
|
'';
|
|
|
|
configurePhase =
|
|
'' ./configure --prefix="$out" --disable-static ''
|
|
+ ''--with-posix-sort=$(type -p sort) ''
|
|
+ ''--with-ltdl-include=${libtool}/include --with-ltdl-lib=${libtool}/lib ''
|
|
+ ''--with-ncurses=${ncurses}'';
|
|
|
|
doCheck = true;
|
|
|
|
postInstall = ''
|
|
ensureDir "$out/share/emacs/site-lisp"
|
|
cp -v *.el "$out/share/emacs/site-lisp"
|
|
'';
|
|
|
|
meta = {
|
|
description = "GNU GLOBAL source code tag system";
|
|
|
|
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.
|
|
'';
|
|
|
|
license = "GPLv3+";
|
|
|
|
homepage = http://www.gnu.org/software/global/;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
|
};
|
|
}
|