* 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

View File

@@ -0,0 +1,11 @@
#! /bin/sh -e
buildinputs=""
. $stdenv/setup
tar xvfz $src
cd ncurses-*
./configure --prefix=$out --with-shared
make
make install
strip -S $out/lib/*.a

View File

@@ -0,0 +1,12 @@
{stdenv, fetchurl}:
derivation {
name = "ncurses-5.4";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.4.tar.gz;
md5 = "069c8880072060373290a4fefff43520";
};
inherit stdenv;
}