Update Exuberant Ctags.
svn path=/nixpkgs/trunk/; revision=11678
This commit is contained in:
parent
ab14de7316
commit
629754cc94
@ -1,9 +1,26 @@
|
|||||||
{stdenv, fetchurl}:
|
{stdenv, fetchurl}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "ctags-5.5.4";
|
name = "ctags-5.7";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/ctags/ctags-5.5.4.tar.gz;
|
url = "mirror://sourceforge/ctags/${name}.tar.gz";
|
||||||
md5 = "a84124caadd4103270e0b84596ecfe83";
|
sha256 = "10623bbcc9b0cb60124271ce83111733a1043ab022d51cfcd2c0e0c953bd8b58";
|
||||||
|
};
|
||||||
|
|
||||||
|
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+";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user