* Added gperf, texinfo, ncurses.

* Started moving the gcc wrapper stuff out of stdenv.
* Added octavefront and rna.

svn path=/nixpkgs/trunk/; revision=814
This commit is contained in:
Eelco Dolstra
2004-03-05 10:13:23 +00:00
parent f82050134e
commit 287edecf42
15 changed files with 324 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#! /bin/sh -e
buildinputs="$ncurses"
. $stdenv/setup
tar xvfz $src
cd texinfo-*
./configure --prefix=$out
make
make install
@@ -0,0 +1,14 @@
{stdenv, fetchurl, ncurses}:
assert ncurses != null;
derivation {
name = "texinfo-4.6";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.gnu.org/gnu/texinfo/texinfo-4.6.tar.gz;
md5 = "5730c8c0c7484494cca7a7e2d7459c64";
};
inherit stdenv ncurses;
}