summary refs log tree commit diff
path: root/pkgs/development/tools/misc/ctags/default.nix
blob: ffe4504407609f4cb0f5926009228754b4e666cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{stdenv, fetchurl, bleedingEdgeRepos, automake, autoconf}:

stdenv.mkDerivation rec {
  name = "ctags-svn";
  src = bleedingEdgeRepos.sourceByName "ctags";

  preConfigure = ''
    autoheader
    autoconf
  '';

  buildInputs = [ automake autoconf ];
  meta = {
    description = "Exuberant Ctags, a tool for fast source code browsing";

    longDescription = ''
      Ctags generates an index (or tag) file of language objects found
      in source files that allows these items to be quickly and easily
      located by a text editor or other utility.  A tag signifies a
      language object for which an index entry is available (or,
      alternatively, the index entry created for that object).  Many
      programming languages are supported.
    '';

    homepage = http://ctags.sourceforge.net/;

    license = "GPLv2+";
  };
}