c9baba9212
(My OCD kicked in today...) Remove repeated package names, capitalize first word, remove trailing periods and move overlong descriptions to longDescription. I also simplified some descriptions as well, when they were particularly long or technical, often based on Arch Linux' package descriptions. I've tried to stay away from generated expressions (and I think I succeeded). Some specifics worth mentioning: * cron, has "Vixie Cron" in its description. The "Vixie" part is not mentioned anywhere else. I kept it in a parenthesis at the end of the description. * ctags description started with "Exuberant Ctags ...", and the "exuberant" part is not mentioned elsewhere. Kept it in a parenthesis at the end of description. * nix has the description "The Nix Deployment System". Since that doesn't really say much what it is/does (especially after removing the package name!), I changed that to "Powerful package manager that makes package management reliable and reproducible" (borrowed from nixos.org). * Tons of "GNU Foo, Foo is a [the important bits]" descriptions is changed to just [the important bits]. If the package name doesn't contain GNU I don't think it's needed to say it in the description either.
48 lines
1.4 KiB
Nix
48 lines
1.4 KiB
Nix
{ fetchurl, stdenv, libtool, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "global-6.2.12";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/global/${name}.tar.gz";
|
|
sha256 = "05jkhya1cs6yqhkf8nw5x56adkxxrqyga7sq7hx44dbf7alczwfa";
|
|
};
|
|
|
|
buildInputs = [ libtool ncurses ];
|
|
|
|
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 = ''
|
|
mkdir -p "$out/share/emacs/site-lisp"
|
|
cp -v *.el "$out/share/emacs/site-lisp"
|
|
'';
|
|
|
|
meta = {
|
|
description = "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 = stdenv.lib.licenses.gpl3Plus;
|
|
|
|
homepage = http://www.gnu.org/software/global/;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|