ctags: update to SVN revision 804
This commit is contained in:
parent
70836d5e64
commit
1fdd780e2c
@ -1,24 +1,26 @@
|
|||||||
{stdenv, fetchurl, sourceFromHead, automake, autoconf}:
|
{ stdenv, fetchsvn, automake, autoconf}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "ctags-svn";
|
name = "ctags-${revision}";
|
||||||
# REGION AUTO UPDATE: { name="ctags"; type = "svn"; url = "https://ctags.svn.sourceforge.net/svnroot/ctags/trunk"; }
|
revision = "804";
|
||||||
src= sourceFromHead "ctags-749.tar.gz"
|
|
||||||
(fetchurl { url = "http://mawercer.de/~nix/repos/ctags-749.tar.gz"; sha256 = "01dd4bf2e55dbedc38def81febef60eece912cb7624df1c0a2cf1ed6e4bc4ecf"; });
|
|
||||||
# END
|
|
||||||
|
|
||||||
preConfigure = ''
|
src = fetchsvn {
|
||||||
autoheader
|
url = "http://ctags.svn.sourceforge.net/svnroot/ctags/trunk";
|
||||||
autoconf
|
rev = revision;
|
||||||
'';
|
sha256 = "16gln1mah2jqp32ki1z0187dwkbjx1xcnmyiardcq6c9w3p4qwcr";
|
||||||
|
};
|
||||||
|
|
||||||
buildInputs = [ automake autoconf ];
|
buildInputs = [ automake autoconf ];
|
||||||
|
|
||||||
|
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 = {
|
||||||
|
homepage = "http://ctags.sourceforge.net/";
|
||||||
description = "Exuberant Ctags, a tool for fast source code browsing";
|
description = "Exuberant Ctags, a tool for fast source code browsing";
|
||||||
|
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
|
||||||
@ -29,9 +31,8 @@ stdenv.mkDerivation rec {
|
|||||||
programming languages are supported.
|
programming languages are supported.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
homepage = http://ctags.sourceforge.net/;
|
platforms = stdenv.lib.platforms.unix;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||||
license = "GPLv2+";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user