nixpkgs/pkgs/development/tools/misc/ctags/default.nix
Marc Weber 90344f9e1e use svn sources for ctgas.
The last release has a bug. I got "no end of file expected" while tagging

svn path=/nixpkgs/trunk/; revision=15501
2009-05-07 18:28:19 +00:00

30 lines
837 B
Nix

{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+";
};
}