commit
6a95cd085f
@ -1,27 +1,22 @@
|
||||
{ stdenv, fetchsvn, automake, autoconf}:
|
||||
{ stdenv, fetchsvn, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ctags-${revision}";
|
||||
revision = "804";
|
||||
revision = "816";
|
||||
|
||||
src = fetchsvn {
|
||||
url = "http://ctags.svn.sourceforge.net/svnroot/ctags/trunk";
|
||||
url = "https://ctags.svn.sourceforge.net/svnroot/ctags/trunk";
|
||||
rev = revision;
|
||||
sha256 = "16gln1mah2jqp32ki1z0187dwkbjx1xcnmyiardcq6c9w3p4qwcr";
|
||||
sha256 = "0jmbkrmscbl64j71qffcc39x005jrmphx8kirs1g2ws44wil39hf";
|
||||
};
|
||||
|
||||
buildInputs = [ automake autoconf ];
|
||||
|
||||
preConfigure = "autoreconf -i";
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
# don't use $T(E)MP which is set to the build directory
|
||||
configureFlags="--enable-tmpdir=/tmp";
|
||||
configureFlags= [ "--enable-tmpdir=/tmp" ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://ctags.sourceforge.net/";
|
||||
meta = with stdenv.lib; {
|
||||
description = "A tool for fast source code browsing (exuberant ctags)";
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
|
||||
longDescription = ''
|
||||
Ctags generates an index (or tag) file of language objects found
|
||||
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
|
||||
programming languages are supported.
|
||||
'';
|
||||
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||
homepage = http://ctags.sourceforge.net/;
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ simons ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user