Add GNU Texinfo 4.9, use it to produce GCC 4.x documentation.

svn path=/nixpkgs/trunk/; revision=10805
This commit is contained in:
Ludovic Courtès
2008-02-21 15:34:56 +00:00
parent 051cd950fe
commit cee8b8ebac
5 changed files with 32 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation {
name = "texinfo-4.9";
src = fetchurl {
url = mirror://gnu/texinfo/texinfo-4.9.tar.bz2;
sha256 = "0h7q9h405m88fjj067brzniiv8306ryl087pgjpmbpd2jci9h6g7";
};
buildInputs = [ncurses];
}