use svn sources for ctgas.

The last release has a bug. I got "no end of file expected" while tagging

svn path=/nixpkgs/trunk/; revision=15501
This commit is contained in:
Marc Weber 2009-05-07 18:28:19 +00:00
parent aa037e3af6
commit 90344f9e1e
4 changed files with 15 additions and 8 deletions

View File

@ -68,7 +68,7 @@ args:
kdebase = { type="svn"; url="svn://anonsvn.kde.org/home/kde/trunk/KDE/kdebase"; groups = "kde"; };
cinelerra = { type="git"; url="git://git.cinelerra.org/j6t/cinelerra.git"; };
ctags = { type = "svn"; url = "https://ctags.svn.sourceforge.net/svnroot/ctags/trunk"; };
autofs = { type="git"; url="http://ftp.riken.go.jp/Linux/kernel.org/scm/linux/storage/autofs/autofs.git"; };
# git repositories

View File

@ -1,12 +1,15 @@
{stdenv, fetchurl}:
{stdenv, fetchurl, bleedingEdgeRepos, automake, autoconf}:
stdenv.mkDerivation rec {
name = "ctags-5.7";
src = fetchurl {
url = "mirror://sourceforge/ctags/${name}.tar.gz";
sha256 = "10623bbcc9b0cb60124271ce83111733a1043ab022d51cfcd2c0e0c953bd8b58";
};
name = "ctags-svn";
src = bleedingEdgeRepos.sourceByName "ctags";
preConfigure = ''
autoheader
autoconf
'';
buildInputs = [ automake autoconf ];
meta = {
description = "Exuberant Ctags, a tool for fast source code browsing";

View File

@ -243,4 +243,8 @@
url = "http://mawercer.de/~nix/repos/autofs-9a77464b8a661d33a6205756955e0047727d5c1f.tar.gz";
sha256 = "0260817c5deb87210a4cea340d0ef0f35577ef14f37bd7da05a2f08be385ac2f";
};
ctags = args: with args; fetchurl { # Thu May 7 20:12:55 CEST 2009
url = "http://mawercer.de/~nix/repos/ctags-703.tar.gz";
sha256 = "3f897b303f446aa8b52832d2aef280d359979bb2cd8768a2e70b6475adc64d61";
};
}

View File

@ -2368,7 +2368,7 @@ let
};
ctags = import ../development/tools/misc/ctags {
inherit fetchurl stdenv;
inherit fetchurl stdenv bleedingEdgeRepos automake autoconf;
};
ctagsWrapped = import ../development/tools/misc/ctags/wrapped.nix {