summary refs log tree commit diff
path: root/pkgs/development/tools/misc/global
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-07-13 09:05:56 +0000
committerLudovic Courtès <ludo@gnu.org>2009-07-13 09:05:56 +0000
commit474c54071b194b2b02f6a4f0e72154feb2a1dfa7 (patch)
treee448417846cb40e903aab27da283a2cf5b571ec9 /pkgs/development/tools/misc/global
parent3a4ba343a4b0234920d562b2475cbfe5283f544f (diff)
downloadnixlib-474c54071b194b2b02f6a4f0e72154feb2a1dfa7.tar
nixlib-474c54071b194b2b02f6a4f0e72154feb2a1dfa7.tar.gz
nixlib-474c54071b194b2b02f6a4f0e72154feb2a1dfa7.tar.bz2
nixlib-474c54071b194b2b02f6a4f0e72154feb2a1dfa7.tar.lz
nixlib-474c54071b194b2b02f6a4f0e72154feb2a1dfa7.tar.xz
nixlib-474c54071b194b2b02f6a4f0e72154feb2a1dfa7.tar.zst
nixlib-474c54071b194b2b02f6a4f0e72154feb2a1dfa7.zip
Add GNU GLOBAL, a source code tag system.
svn path=/nixpkgs/trunk/; revision=16333
Diffstat (limited to 'pkgs/development/tools/misc/global')
-rw-r--r--pkgs/development/tools/misc/global/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/global/default.nix b/pkgs/development/tools/misc/global/default.nix
new file mode 100644
index 000000000000..789236e8a2ff
--- /dev/null
+++ b/pkgs/development/tools/misc/global/default.nix
@@ -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 ];
+  };
+}