From 629754cc945f9ee7d37546b582fa51bb235a2f16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 22 Apr 2008 08:50:10 +0000 Subject: [PATCH] Update Exuberant Ctags. svn path=/nixpkgs/trunk/; revision=11678 --- pkgs/development/tools/misc/ctags/default.nix | 25 ++++++++++++++++--- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/misc/ctags/default.nix b/pkgs/development/tools/misc/ctags/default.nix index 2d23436a2ada..bddb55b035d2 100644 --- a/pkgs/development/tools/misc/ctags/default.nix +++ b/pkgs/development/tools/misc/ctags/default.nix @@ -1,9 +1,26 @@ {stdenv, fetchurl}: -stdenv.mkDerivation { - name = "ctags-5.5.4"; +stdenv.mkDerivation rec { + name = "ctags-5.7"; src = fetchurl { - url = mirror://sourceforge/ctags/ctags-5.5.4.tar.gz; - md5 = "a84124caadd4103270e0b84596ecfe83"; + url = "mirror://sourceforge/ctags/${name}.tar.gz"; + 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+"; }; }