Merge pull request #7805 from codyopel/ctags

ctags: 804 -> 816
This commit is contained in:
Peter Simons 2015-05-11 19:18:56 +02:00
commit 6a95cd085f

View File

@ -1,27 +1,22 @@
{ stdenv, fetchsvn, automake, autoconf}: { stdenv, fetchsvn, autoreconfHook }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "ctags-${revision}"; name = "ctags-${revision}";
revision = "804"; revision = "816";
src = fetchsvn { src = fetchsvn {
url = "http://ctags.svn.sourceforge.net/svnroot/ctags/trunk"; url = "https://ctags.svn.sourceforge.net/svnroot/ctags/trunk";
rev = revision; rev = revision;
sha256 = "16gln1mah2jqp32ki1z0187dwkbjx1xcnmyiardcq6c9w3p4qwcr"; sha256 = "0jmbkrmscbl64j71qffcc39x005jrmphx8kirs1g2ws44wil39hf";
}; };
buildInputs = [ automake autoconf ]; nativeBuildInputs = [ autoreconfHook ];
preConfigure = "autoreconf -i";
# don't use $T(E)MP which is set to the build directory # don't use $T(E)MP which is set to the build directory
configureFlags="--enable-tmpdir=/tmp"; configureFlags= [ "--enable-tmpdir=/tmp" ];
meta = { meta = with stdenv.lib; {
homepage = "http://ctags.sourceforge.net/";
description = "A tool for fast source code browsing (exuberant ctags)"; description = "A tool for fast source code browsing (exuberant ctags)";
license = stdenv.lib.licenses.gpl2Plus;
longDescription = '' longDescription = ''
Ctags generates an index (or tag) file of language objects found Ctags generates an index (or tag) file of language objects found
in source files that allows these items to be quickly and easily in source files that allows these items to be quickly and easily
@ -30,9 +25,10 @@ stdenv.mkDerivation rec {
alternatively, the index entry created for that object). Many alternatively, the index entry created for that object). Many
programming languages are supported. programming languages are supported.
''; '';
homepage = http://ctags.sourceforge.net/;
platforms = stdenv.lib.platforms.unix; license = licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.simons ]; maintainers = with maintainers; [ simons ];
platforms = platforms.unix;
}; };
} }