Add GNU GLOBAL, a source code tag system.
svn path=/nixpkgs/trunk/; revision=16333
This commit is contained in:
parent
3a4ba343a4
commit
474c54071b
31
pkgs/development/tools/misc/global/default.nix
Normal file
31
pkgs/development/tools/misc/global/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ fetchurl, stdenv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "global-5.7.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/global/${name}.tar.gz";
|
||||
sha256 = "0fdkkg5qs76cjdnig54bhw97dgwg2rm2dg8k8r7hz836pk838540";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -2447,6 +2447,10 @@ let
|
||||
|
||||
m4 = gnum4;
|
||||
|
||||
global = import ../development/tools/misc/global {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
gnum4 = import ../development/tools/misc/gnum4 {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user